diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2006-04-18 22:37:21 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2006-04-18 22:37:21 +0000 |
commit | 61d6bafd76ea11c645b641f80f26a501052acdb9 (patch) | |
tree | 3be473d227d1a77e6be8e1c0bbce2f58eea15e7e /net-analyzer/pmacct | |
parent | Change var name to respect standards. (diff) | |
download | historical-61d6bafd76ea11c645b641f80f26a501052acdb9.tar.gz historical-61d6bafd76ea11c645b641f80f26a501052acdb9.tar.bz2 historical-61d6bafd76ea11c645b641f80f26a501052acdb9.zip |
0.10.1 version bump. New HOMEPAGE at pmacct.net.
Package-Manager: portage-2.0.54
Diffstat (limited to 'net-analyzer/pmacct')
-rw-r--r-- | net-analyzer/pmacct/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/pmacct/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/pmacct/files/digest-pmacct-0.10.1 | 1 | ||||
-rw-r--r-- | net-analyzer/pmacct/pmacct-0.10.1.ebuild | 54 |
4 files changed, 64 insertions, 2 deletions
diff --git a/net-analyzer/pmacct/ChangeLog b/net-analyzer/pmacct/ChangeLog index 3750a3272abb..762955f2d6bd 100644 --- a/net-analyzer/pmacct/ChangeLog +++ b/net-analyzer/pmacct/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/pmacct # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pmacct/ChangeLog,v 1.39 2006/03/22 21:15:23 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pmacct/ChangeLog,v 1.40 2006/04/18 22:37:21 vanquirius Exp $ + +*pmacct-0.10.1 (18 Apr 2006) + + 18 Apr 2006; Marcelo Goes <vanquirius@gentoo.org> +pmacct-0.10.1.ebuild: + 0.10.1 version bump. New HOMEPAGE at pmacct.net. *pmacct-0.10.0 (22 Mar 2006) diff --git a/net-analyzer/pmacct/Manifest b/net-analyzer/pmacct/Manifest index 344ce3f868aa..0c07576cf897 100644 --- a/net-analyzer/pmacct/Manifest +++ b/net-analyzer/pmacct/Manifest @@ -1,8 +1,10 @@ -MD5 b5550dc8ecb3616b6070fb8158d6542c ChangeLog 6262 +MD5 107f25a68b676a254436c1838ac18b4b ChangeLog 6419 MD5 78229027b52dbd752752b7ea8ceb2726 files/digest-pmacct-0.10.0 65 +MD5 bc18932fa11b6f71c83c45d0062991d6 files/digest-pmacct-0.10.1 65 MD5 51edce191b704cca9a48ef7745397aa1 files/digest-pmacct-0.9.5 64 MD5 50333f1c79a80df31266ce7235cbf36c files/pmacctd-conf.d 313 MD5 2afa8e97312b03f3e119c0befed9e7d3 files/pmacctd-init.d 869 MD5 808a9a788ae7955af0a3c442cafee866 metadata.xml 243 MD5 7a2e727fb473f1f1e0eb54e8df159c47 pmacct-0.10.0.ebuild 1536 +MD5 74cc860fb322769d9170db0482dd606c pmacct-0.10.1.ebuild 1510 MD5 89257334829a6648afec1a8b3fd3d30e pmacct-0.9.5.ebuild 1560 diff --git a/net-analyzer/pmacct/files/digest-pmacct-0.10.1 b/net-analyzer/pmacct/files/digest-pmacct-0.10.1 new file mode 100644 index 000000000000..2d81d93c09cd --- /dev/null +++ b/net-analyzer/pmacct/files/digest-pmacct-0.10.1 @@ -0,0 +1 @@ +MD5 6a175115a086554a29e218c7db8039c8 pmacct-0.10.1.tar.gz 343794 diff --git a/net-analyzer/pmacct/pmacct-0.10.1.ebuild b/net-analyzer/pmacct/pmacct-0.10.1.ebuild new file mode 100644 index 000000000000..70fd2d199f43 --- /dev/null +++ b/net-analyzer/pmacct/pmacct-0.10.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pmacct/pmacct-0.10.1.ebuild,v 1.1 2006/04/18 22:37:21 vanquirius Exp $ + +DESCRIPTION="A network tool to gather ip traffic informations" +HOMEPAGE="http://www.pmacct.net/" +SRC_URI="http://www.pmacct.net/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="64bit debug ipv6 mmap mysql postgres" + +RDEPEND="net-libs/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) \ + $(use_enable debug) \ + $(use_enable 64bit) \ + || 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" +} |