diff options
author | Jared H.Hudson <jhhudso@gentoo.org> | 2002-11-14 10:11:27 +0000 |
---|---|---|
committer | Jared H.Hudson <jhhudso@gentoo.org> | 2002-11-14 10:11:27 +0000 |
commit | 19c07f48e160ea3ef6c93de7695784ff6e11d209 (patch) | |
tree | 71ca3ce64983411c69b6727b544eaed667ace2e8 /net-analyzer/sarg | |
parent | removed || die from einstall, and added alpha to the list, and made note abou... (diff) | |
download | historical-19c07f48e160ea3ef6c93de7695784ff6e11d209.tar.gz historical-19c07f48e160ea3ef6c93de7695784ff6e11d209.tar.bz2 historical-19c07f48e160ea3ef6c93de7695784ff6e11d209.zip |
Initial Import. Bug #6923
Diffstat (limited to 'net-analyzer/sarg')
-rw-r--r-- | net-analyzer/sarg/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/sarg/files/digest-sarg-1.2.2 | 1 | ||||
-rw-r--r-- | net-analyzer/sarg/sarg-1.2.2.ebuild | 34 |
3 files changed, 42 insertions, 0 deletions
diff --git a/net-analyzer/sarg/ChangeLog b/net-analyzer/sarg/ChangeLog new file mode 100644 index 000000000000..89b956538880 --- /dev/null +++ b/net-analyzer/sarg/ChangeLog @@ -0,0 +1,7 @@ +# ChangeLog for net-analyzer/sarg +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL + +*sarg-1.2.2 (14 Nov 2002) + + 14 Nov 2002; Jared Hudson <jhhudso@gentoo.org> : Initial Import. Ebuild + submitted by Henti Smith <bain@reaper.org>. Bug #6923 diff --git a/net-analyzer/sarg/files/digest-sarg-1.2.2 b/net-analyzer/sarg/files/digest-sarg-1.2.2 new file mode 100644 index 000000000000..cfb8925d72d5 --- /dev/null +++ b/net-analyzer/sarg/files/digest-sarg-1.2.2 @@ -0,0 +1 @@ +MD5 3cc050140ff64da716224eeee8680611 sarg-1.2.2.tar.gz 112523 diff --git a/net-analyzer/sarg/sarg-1.2.2.ebuild b/net-analyzer/sarg/sarg-1.2.2.ebuild new file mode 100644 index 000000000000..7fdc61636970 --- /dev/null +++ b/net-analyzer/sarg/sarg-1.2.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 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.1 2002/11/14 10:11:26 jhhudso 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" +IUSE="" +DEPEND="" +#RDEPEND=">=net-www/squid-2.4.7" +S="${WORKDIR}/${P}" + +src_compile() { + rm -rf config.cache + ./configure \ + --enable-bindir=/usr/bin \ + --enable-sysconfdir=/etc/sarg || die "./configure failed" + emake || die +} + +src_install () { + mkdir ${D}/etc + mkdir ${D}/etc/sarg + mkdir ${D}/usr + mkdir ${D}/usr/bin + make \ + BINDIR=${D}/usr/bin \ + SYSCONFDIR=${D}/etc/sarg \ + install || die +} + |