diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2006-01-08 23:47:19 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2006-01-08 23:47:19 +0000 |
commit | af2166c0e497d89c15c52063e1cc45eaf143e8d9 (patch) | |
tree | 1f075df0a3857eee56db3752c621cc5ef81cfd9e /net-analyzer/argus/argus-2.0.6.ebuild | |
parent | Added "remove" action to remove simlinks (diff) | |
download | gentoo-2-af2166c0e497d89c15c52063e1cc45eaf143e8d9.tar.gz gentoo-2-af2166c0e497d89c15c52063e1cc45eaf143e8d9.tar.bz2 gentoo-2-af2166c0e497d89c15c52063e1cc45eaf143e8d9.zip |
2.0.6 version bump.
(Portage version: 2.0.53)
Diffstat (limited to 'net-analyzer/argus/argus-2.0.6.ebuild')
-rw-r--r-- | net-analyzer/argus/argus-2.0.6.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/net-analyzer/argus/argus-2.0.6.ebuild b/net-analyzer/argus/argus-2.0.6.ebuild new file mode 100644 index 000000000000..e1ff3230d1d5 --- /dev/null +++ b/net-analyzer/argus/argus-2.0.6.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/argus/argus-2.0.6.ebuild,v 1.1 2006/01/08 23:47:19 vanquirius Exp $ + +inherit eutils + +DESCRIPTION="network Audit Record Generation and Utilization System" +HOMEPAGE="http://www.qosient.com/argus/" +SRC_URI="ftp://ftp.qosient.com/pub/argus/src/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc-macos ~x86" +IUSE="" +RDEPEND="virtual/libc + virtual/libpcap" + +DEPEND="${RDEPEND} + >=sys-devel/bison-1.28 + >=sys-devel/flex-2.4.6" + +src_unpack() { + unpack ${A} ; cd "${S}" + + epatch "${FILESDIR}"/${PN}-2.0.6-libpcap-include.patch + + # Fix hardcoded config file + epatch "${FILESDIR}"/${PN}-2.0.5-gentoo.diff +} + +src_install () { + dodoc ChangeLog CREDITS README doc/{FAQ,HOW-TO,CHANGES} + + #do not install man/man1/tcpdump.1, file collision + doman man/man5/* man/man8/* + + dolib lib/argus_common.a lib/argus_parse.a + + use ppc-macos && newsbin bin/argus_bpf argus || newsbin bin/argus_linux argus + + insinto /etc/argus + doins support/Config/argus.conf + + newinitd "${FILESDIR}"/argus.initd argus +} + +pkg_postinst() { + einfo "Please note that argus-clients has been split up from this" + einfo "package by upstream as of 2.0.6. If you want it, please emerge" + einfo "net-analyzer/argus-clients." + + einfo "Also, you might want to edit /etc/argus/argus.conf before" + einfo "running argus." +} |