diff options
Diffstat (limited to 'net-analyzer/ipaudit')
-rw-r--r-- | net-analyzer/ipaudit/Manifest | 3 | ||||
-rw-r--r-- | net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild | 2 | ||||
-rw-r--r-- | net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild | 28 |
3 files changed, 31 insertions, 2 deletions
diff --git a/net-analyzer/ipaudit/Manifest b/net-analyzer/ipaudit/Manifest index 5a270090aa2e..f10a8bd10923 100644 --- a/net-analyzer/ipaudit/Manifest +++ b/net-analyzer/ipaudit/Manifest @@ -1,3 +1,4 @@ DIST ipaudit-1.0BETA2.tar.gz 135680 BLAKE2B 2a8e7754251c743758d6e0d7008d904a3a237c26a660f5c07661c632dd75ecda6cf3b04253eb76f64c72ed278da00030cf64231bdc4760a6b04df1497f628ec2 SHA512 3a8890821c515aea95762eeb2cc7a649533ff739984c944bcb26acb72434e1f2b453a98365719fce9e062d6262b9d76ac389f149ad2a19361422783bc0b55e09 -EBUILD ipaudit-1.0_beta2-r1.ebuild 571 BLAKE2B a63f91c105d539e8858e86a6c808fc9a08018d649567e1d23549740bf4b06e5527e4b34381c3f6c0d3bdd1b1a0c471ca76bfbe7fcb2bbec03927299325afc29f SHA512 d10451f20c62d82cefee6530879cbf588aad4c8c756d003e35a311bebda9fef3cb73fc108e019819e9d738fd864817279772bd37b91c6f4f86dc1feda7e985ae +EBUILD ipaudit-1.0_beta2-r1.ebuild 573 BLAKE2B e75ebc9f1e3fd00a9bf3f4d7f84507cad55d5a513505c0ac0287a14f8921eaa64834784165677eac79123ea3742409728d92288a13071cda567f2afb29aa734e SHA512 7a2dc0294158302386fe49c2d54c95051d5aee8fdcfb22a467cf737691352a1d1c07e9dbf2eac34980c7370cb18ee4e307f451ab61838f0361326bb7ec983742 +EBUILD ipaudit-1.0_beta2.ebuild 650 BLAKE2B decd9daad1c7fa41d1a1dbbfb40fb55a85b7568ab0aea1ee80303628f4014330bcb92ed5f62c0f4d7c3a4fcdfe5dd4eb1ec84051b9819de3ceb9c8f08d14d6d3 SHA512 49e97ca5e9c70de10032632ac136dfd6bff516a86ef5d8321c132a5d02cd8633bbd3b25c0c22c2eac830bc863da255fd5ce3772f2af66d7e82027f21325ed07b MISC metadata.xml 337 BLAKE2B f6f2a1c579130f2d97b5d9885623824110a7ab7faf876fe8cdd3cea7202628d7176dd74ee8263174bfdb89125b5f58424c23af50f472806f89b3c398598e0900 SHA512 58c8b84ff4dc9e733926d97333c6bee74a769c4e08e6505ff72c317bd55099536e8cba81361d173d501f9b53efdb8d9f3c8c5e60ab79f5b03a63c4cc2ab9ca34 diff --git a/net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild b/net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild index fba409faf3e3..0fc67f6ca6a3 100644 --- a/net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild +++ b/net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild @@ -9,7 +9,7 @@ MY_P="${PN}-${PV/_beta/BETA}" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ppc x86" +KEYWORDS="~amd64 ~ppc ~x86" IUSE="mysql" DEPEND="net-libs/libpcap mysql? ( dev-db/mysql-connector-c:0= )" 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..2a6a3016c57c --- /dev/null +++ b/net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=0 + +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="~amd64 ppc x86" +IUSE="mysql" +DEPEND="net-libs/libpcap + mysql? ( virtual/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 +} |