diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-06-16 18:15:18 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-06-16 18:15:18 +0000 |
commit | afacb3b88caee36f7f2bb23093e98c5b42f01b5f (patch) | |
tree | 30284e8d7eebeedd8204227f40098b32c90ad9e9 | |
parent | Minor change (diff) | |
download | gentoo-2-afacb3b88caee36f7f2bb23093e98c5b42f01b5f.tar.gz gentoo-2-afacb3b88caee36f7f2bb23093e98c5b42f01b5f.tar.bz2 gentoo-2-afacb3b88caee36f7f2bb23093e98c5b42f01b5f.zip |
version bump
(Portage version: 2.0.51.19)
-rw-r--r-- | net-analyzer/pmacct/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/pmacct/Manifest | 2 | ||||
-rw-r--r-- | net-analyzer/pmacct/files/digest-pmacct-0.8.7 | 1 | ||||
-rw-r--r-- | net-analyzer/pmacct/pmacct-0.8.7.ebuild | 54 |
4 files changed, 64 insertions, 1 deletions
diff --git a/net-analyzer/pmacct/ChangeLog b/net-analyzer/pmacct/ChangeLog index 7bd1e0ef95fa..45199174fa07 100644 --- a/net-analyzer/pmacct/ChangeLog +++ b/net-analyzer/pmacct/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/pmacct # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pmacct/ChangeLog,v 1.19 2005/06/14 18:41:21 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pmacct/ChangeLog,v 1.20 2005/06/16 18:15:18 vanquirius Exp $ + +*pmacct-0.8.7 (16 Jun 2005) + + 16 Jun 2005; Marcelo Goes <vanquirius@gentoo.org> +pmacct-0.8.7.ebuild: + According to Paolo Lucente, libpcap from CVS is not a *requirement*, so here + is the version bump. 14 Jun 2005; Marcelo Goes <vanquirius@gentoo.org> pmacct-0.8.5.ebuild: Marked 0.8.5 x86 stable. Note that version 0.8.7 is out, but I am not adding diff --git a/net-analyzer/pmacct/Manifest b/net-analyzer/pmacct/Manifest index 3f192bfaf13c..d85dff5f4317 100644 --- a/net-analyzer/pmacct/Manifest +++ b/net-analyzer/pmacct/Manifest @@ -1,3 +1,4 @@ +MD5 0c702306aaa3fe89cd4e431520e8b188 pmacct-0.8.7.ebuild 1506 MD5 497e26efadd51aa9e5b90e0bddc13866 pmacct-0.8.4.ebuild 1505 MD5 0c702306aaa3fe89cd4e431520e8b188 pmacct-0.8.6.ebuild 1506 MD5 1a8be45d950c81b34a3b76149de79975 pmacct-0.8.3.ebuild 1493 @@ -10,3 +11,4 @@ MD5 ab598b974f8a63136ead320763bf7a5f files/digest-pmacct-0.8.3 64 MD5 5aada4dc083afac65f161d24379db6fc files/digest-pmacct-0.8.4 64 MD5 f6c685e6ca8ed840ccd737080816aeec files/digest-pmacct-0.8.5 64 MD5 dc1c27641a784b8d4e4397e5415aa7c8 files/digest-pmacct-0.8.6 64 +MD5 c0caf197a66283cd3f7141151216ee48 files/digest-pmacct-0.8.7 64 diff --git a/net-analyzer/pmacct/files/digest-pmacct-0.8.7 b/net-analyzer/pmacct/files/digest-pmacct-0.8.7 new file mode 100644 index 000000000000..b32b507a1015 --- /dev/null +++ b/net-analyzer/pmacct/files/digest-pmacct-0.8.7 @@ -0,0 +1 @@ +MD5 3da0205de772fb6d915e03cadf2a8e9b pmacct-0.8.7.tar.gz 249229 diff --git a/net-analyzer/pmacct/pmacct-0.8.7.ebuild b/net-analyzer/pmacct/pmacct-0.8.7.ebuild new file mode 100644 index 000000000000..b7e9ada8c507 --- /dev/null +++ b/net-analyzer/pmacct/pmacct-0.8.7.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pmacct/pmacct-0.8.7.ebuild,v 1.1 2005/06/16 18:15:18 vanquirius Exp $ + +MY_P="${P%_*}" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="A network tool to gather ip traffic informations" +HOMEPAGE="http://www.ba.cnr.it/~paolo/pmacct/" +SRC_URI="http://www.ba.cnr.it/~paolo/pmacct/${P/_}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="ipv6 mmap mysql postgres" + +RDEPEND="virtual/libpcap + mysql? ( dev-db/mysql ) + postgres? ( dev-db/postgresql )" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i "s|\(CFLAGS=\).*$|\1\"${CFLAGS}\"|g" configure || die "sed failed" +} + +src_compile() { + econf \ + $(use_enable mysql) \ + $(use_enable postgres pgsql) \ + $(use_enable mmap) \ + $(use_enable ipv6) \ + || die "econf failed" + + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc README EXAMPLES KNOWN-BUGS CONFIG-KEYS FAQS ChangeLog docs/SIGNALS \ + docs/PLUGINS docs/INTERNALS TODO TOOLS || die "dodoc failed" + + for dirname in examples sql; do + docinto ${dirname} + dodoc ${dirname}/* || die "dodoc ${dirname} failed" + done + + newinitd ${FILESDIR}/pmacctd-init.d pmacctd || die "newinitd failed" + newconfd ${FILESDIR}/pmacctd-conf.d pmacctd || die "newconfd failed" + + insinto /etc + newins ${S}/examples/pmacctd-imt.conf.example pmacctd.conf.example || \ + die "newins failed" +} |