diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-11-23 22:07:44 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-11-23 22:07:44 +0000 |
commit | 6c584f93b7704492b6a436be8a0996f61310d262 (patch) | |
tree | a98fd4fe38f5e3ff56ddc47e66ce6af5da20d0c7 /net-analyzer | |
parent | Version bumped to latest version. (Manifest recommit) (diff) | |
download | gentoo-2-6c584f93b7704492b6a436be8a0996f61310d262.tar.gz gentoo-2-6c584f93b7704492b6a436be8a0996f61310d262.tar.bz2 gentoo-2-6c584f93b7704492b6a436be8a0996f61310d262.zip |
Initial commit. Ebuild by Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/ipaudit/ChangeLog | 10 | ||||
-rw-r--r-- | net-analyzer/ipaudit/Manifest | 2 | ||||
-rw-r--r-- | net-analyzer/ipaudit/files/digest-ipaudit-1.0_beta1 | 1 | ||||
-rw-r--r-- | net-analyzer/ipaudit/ipaudit-1.0_beta1.ebuild | 27 |
4 files changed, 40 insertions, 0 deletions
diff --git a/net-analyzer/ipaudit/ChangeLog b/net-analyzer/ipaudit/ChangeLog new file mode 100644 index 000000000000..13881bc9b844 --- /dev/null +++ b/net-analyzer/ipaudit/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-analyzer/ipaudit +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipaudit/ChangeLog,v 1.1 2004/11/23 22:07:44 robbat2 Exp $ + +*ipaudit-1.0_beta1 (23 Nov 2004) + + 23 Nov 2004; Robin H. Johnson <robbat2@gentoo.org> + +ipaudit-1.0_beta1.ebuild: + Initial commit. Ebuild by Robin H. Johnson <robbat2@gentoo.org> + diff --git a/net-analyzer/ipaudit/Manifest b/net-analyzer/ipaudit/Manifest new file mode 100644 index 000000000000..b9453c9a05bc --- /dev/null +++ b/net-analyzer/ipaudit/Manifest @@ -0,0 +1,2 @@ +MD5 77c37bc910af703925f447f08d4ac36f ipaudit-1.0_beta1.ebuild 645 +MD5 276e07ebd117b9c60ef6fa7d5316b0b9 files/digest-ipaudit-1.0_beta1 68 diff --git a/net-analyzer/ipaudit/files/digest-ipaudit-1.0_beta1 b/net-analyzer/ipaudit/files/digest-ipaudit-1.0_beta1 new file mode 100644 index 000000000000..d70a2b629983 --- /dev/null +++ b/net-analyzer/ipaudit/files/digest-ipaudit-1.0_beta1 @@ -0,0 +1 @@ +MD5 3e84ade8c2adb52c644e7d76a80b4a1d ipaudit-1.0BETA1.tar.gz 132549 diff --git a/net-analyzer/ipaudit/ipaudit-1.0_beta1.ebuild b/net-analyzer/ipaudit/ipaudit-1.0_beta1.ebuild new file mode 100644 index 000000000000..5413e369e82d --- /dev/null +++ b/net-analyzer/ipaudit/ipaudit-1.0_beta1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipaudit/ipaudit-1.0_beta1.ebuild,v 1.1 2004/11/23 22:07:44 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="net-libs/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 +} |