You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/squidsites/squidsites-1.01-r1.ebuild

37 lines
892 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/squidsites/squidsites-1.01-r1.ebuild,v 1.4 2012/02/06 18:33:10 ranger Exp $
EAPI="2"
inherit toolchain-funcs
IUSE=""
DESCRIPTION="a tool that parses Squid access log file and generates a report of the most visited sites."
HOMEPAGE="http://www.stefanopassiglia.com/misc.htm"
SRC_URI="http://www.stefanopassiglia.com/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="amd64 ppc x86"
DEPEND=""
RDEPEND=""
S="${WORKDIR}/src"
src_prepare() {
# Respect CFLAGS
sed -i Makefile \
-e '/^CCFLAGS=/s|-g|$(CFLAGS) $(LDFLAGS)|' \
|| die "sed failed"
}
src_compile() {
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install () {
cd "${WORKDIR}"
dobin src/squidsites
dodoc Authors Bugs ChangeLog GNU-Manifesto.html README
}