blob: f338887ce840ff342b8faebe0216ff17d17e21df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sarg/sarg-1.2.2.ebuild,v 1.4 2003/02/13 13:50:14 vapier Exp $
DESCRIPTION="Sarg (Squid Analysis Report Generator) is a tool that allows you to view where your users are going to on the Internet."
HOMEPAGE="http://web.onda.com.br/orso/sarg.html"
SRC_URI="http://web.onda.com.br/orso/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND=""
RDEPEND=">=net-www/squid-2.4.7"
src_compile() {
rm -rf config.cache
./configure \
--enable-bindir=/usr/bin \
--enable-sysconfdir=/etc/sarg || die "./configure failed"
emake || die
}
src_install() {
dodir /etc/sarg /usr/bin
make \
BINDIR=${D}/usr/bin \
SYSCONFDIR=${D}/etc/sarg \
install || die
}
|