diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-04-29 23:12:03 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-04-29 23:12:03 +0000 |
commit | fb2980387c69a00be631e4e84c524e330a74ce43 (patch) | |
tree | 8a2947c399ca17dc8af8be315d09455ee7391a9f /net-analyzer/ipaudit | |
parent | Removed old ebuilds. (diff) | |
download | gentoo-2-fb2980387c69a00be631e4e84c524e330a74ce43.tar.gz gentoo-2-fb2980387c69a00be631e4e84c524e330a74ce43.tar.bz2 gentoo-2-fb2980387c69a00be631e4e84c524e330a74ce43.zip |
Bug #86189, version bump.
(Portage version: 2.0.51.20-r5)
Diffstat (limited to 'net-analyzer/ipaudit')
-rw-r--r-- | net-analyzer/ipaudit/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/ipaudit/Manifest | 14 | ||||
-rw-r--r-- | net-analyzer/ipaudit/files/digest-ipaudit-1.0_beta2 | 1 | ||||
-rw-r--r-- | net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild | 27 |
4 files changed, 38 insertions, 12 deletions
diff --git a/net-analyzer/ipaudit/ChangeLog b/net-analyzer/ipaudit/ChangeLog index af3567569823..b6c400a98bdf 100644 --- a/net-analyzer/ipaudit/ChangeLog +++ b/net-analyzer/ipaudit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/ipaudit # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipaudit/ChangeLog,v 1.2 2005/01/29 05:12:51 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipaudit/ChangeLog,v 1.3 2005/04/29 23:12:03 robbat2 Exp $ + +*ipaudit-1.0_beta2 (29 Apr 2005) + + 29 Apr 2005; Robin H. Johnson <robbat2@gentoo.org> + +ipaudit-1.0_beta2.ebuild: + Bug #86189, version bump. 29 Jan 2005; Daniel Black <dragonheart@gentoo.org> ipaudit-1.0_beta1.ebuild: changed net-libs/libpcap depend to virtual/libcap diff --git a/net-analyzer/ipaudit/Manifest b/net-analyzer/ipaudit/Manifest index b9af81c4b795..cc672681d21f 100644 --- a/net-analyzer/ipaudit/Manifest +++ b/net-analyzer/ipaudit/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 32354adc0ea3c243ea997aa28e3c97e2 ChangeLog 533 MD5 3544139cbbd0671b76a9a7c53eb0f10f ipaudit-1.0_beta1.ebuild 756 +MD5 3544139cbbd0671b76a9a7c53eb0f10f ipaudit-1.0_beta2.ebuild 756 +MD5 32354adc0ea3c243ea997aa28e3c97e2 ChangeLog 533 MD5 b0d485ea1a51fb83c70daedef2599272 metadata.xml 279 MD5 276e07ebd117b9c60ef6fa7d5316b0b9 files/digest-ipaudit-1.0_beta1 68 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.0 (GNU/Linux) - -iD8DBQFB+xtbmdTrptrqvGERAg10AJ9D95Yf1hxG8R5GLIPvfUpTMMU7NQCeIRZe -nUvUdcQ+kUEij8DBdNufQ4o= -=mtyF ------END PGP SIGNATURE----- +MD5 6eed87f7d8b9d9c78d2bef5c8a830d67 files/digest-ipaudit-1.0_beta2 68 diff --git a/net-analyzer/ipaudit/files/digest-ipaudit-1.0_beta2 b/net-analyzer/ipaudit/files/digest-ipaudit-1.0_beta2 new file mode 100644 index 000000000000..d2a9959b9b4c --- /dev/null +++ b/net-analyzer/ipaudit/files/digest-ipaudit-1.0_beta2 @@ -0,0 +1 @@ +MD5 cd25f4de0a6428750ef18f32647d24e9 ipaudit-1.0BETA2.tar.gz 135680 diff --git a/net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild b/net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild new file mode 100644 index 000000000000..eb1d7a760317 --- /dev/null +++ b/net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild,v 1.1 2005/04/29 23:12:03 robbat2 Exp $ + +inherit eutils +DESCRIPTION="IPAudit monitors network activity on a network by host, protocol and port." +HOMEPAGE="http://ipaudit.sourceforge.net/" +MY_P="${PN}-${PV/_beta/BETA}" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="mysql" +DEPEND="virtual/libpcap + mysql? ( dev-db/mysql )" +#RDEPEND="" +S="${WORKDIR}/${MY_P}" + +src_compile() { + econf `use_with mysql` || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS README +} |