summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Ullmann <jokey@gentoo.org>2007-04-08 13:13:28 +0000
committerMarkus Ullmann <jokey@gentoo.org>2007-04-08 13:13:28 +0000
commit0421c1ee8836a708de930096c77130b21d5c061b (patch)
tree245ae8c3aa42928a2dbd66339288493383c9bd9c /net-analyzer
parentStable on ppc64; bug #173728 (diff)
downloadgentoo-2-0421c1ee8836a708de930096c77130b21d5c061b.tar.gz
gentoo-2-0421c1ee8836a708de930096c77130b21d5c061b.tar.bz2
gentoo-2-0421c1ee8836a708de930096c77130b21d5c061b.zip
Minor QA, stable on x86
(Portage version: 2.1.2.3)
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/yersinia/ChangeLog7
-rw-r--r--net-analyzer/yersinia/yersinia-0.7.ebuild22
2 files changed, 14 insertions, 15 deletions
diff --git a/net-analyzer/yersinia/ChangeLog b/net-analyzer/yersinia/ChangeLog
index 7e2584f5a100..49c9f3603a50 100644
--- a/net-analyzer/yersinia/ChangeLog
+++ b/net-analyzer/yersinia/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/yersinia
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/yersinia/ChangeLog,v 1.2 2006/07/23 20:54:20 vanquirius Exp $
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/yersinia/ChangeLog,v 1.3 2007/04/08 13:13:28 jokey Exp $
+
+ 08 Apr 2007; Markus Ullmann <jokey@gentoo.org> yersinia-0.7.ebuild:
+ Minor QA, stable on x86
23 Jul 2006; Marcelo Goes <vanquirius@gentoo.org> yersinia-0.7.ebuild:
Do not inherit eutils, not needed.
diff --git a/net-analyzer/yersinia/yersinia-0.7.ebuild b/net-analyzer/yersinia/yersinia-0.7.ebuild
index 90a479208ed9..94a88fa7a504 100644
--- a/net-analyzer/yersinia/yersinia-0.7.ebuild
+++ b/net-analyzer/yersinia/yersinia-0.7.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/yersinia/yersinia-0.7.ebuild,v 1.2 2006/07/23 20:54:20 vanquirius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/yersinia/yersinia-0.7.ebuild,v 1.3 2007/04/08 13:13:28 jokey Exp $
DESCRIPTION="A layer 2 attack framework"
HOMEPAGE="http://www.yersinia.net/"
@@ -8,8 +8,8 @@ SRC_URI="http://www.yersinia.net/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86"
-IUSE="ncurses gtk"
+KEYWORDS="x86"
+IUSE="gtk ncurses"
DEPEND="ncurses? ( >=sys-libs/ncurses-5.5 )
gtk? ( =x11-libs/gtk+-2* )
@@ -17,19 +17,15 @@ DEPEND="ncurses? ( >=sys-libs/ncurses-5.5 )
>=net-libs/libpcap-0.9.4"
src_compile() {
- local myconf
-
- myconf="${myconf} $(use_with ncurses)"
- myconf="${myconf} $(use_enable gtk)"
- myconf="${myconf} --enable-admin"
-
- econf ${myconf} || die "econf failed"
+ econf \
+ --enable-admin \
+ $(use_with ncurses) \
+ $(use_enable gtk) || die "econf failed"
emake || die "emake failed"
}
src_install() {
- make DESTDIR="${D}" install || die
-
+ emake DESTDIR="${D}" install || die "emake install failed"
doman yersinia.8
dodoc AUTHORS ChangeLog FAQ NEWS README THANKS TODO
}