diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 23:19:57 +0200 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 23:40:23 +0200 |
commit | 627363937b2bca2e17b301e20d0d25278a03ed44 (patch) | |
tree | c43532086fef6c3b675568be4f92db28d4f48748 /net-wireless/wepdecrypt/wepdecrypt-0.8-r2.ebuild | |
parent | net-wireless/aircrack-ng: eapi cleanup (diff) | |
download | gentoo-627363937b2bca2e17b301e20d0d25278a03ed44.tar.gz gentoo-627363937b2bca2e17b301e20d0d25278a03ed44.tar.bz2 gentoo-627363937b2bca2e17b301e20d0d25278a03ed44.zip |
net-wireless/wepdecrypt: eapi bump
Package-Manager: portage-2.3.3
Diffstat (limited to 'net-wireless/wepdecrypt/wepdecrypt-0.8-r2.ebuild')
-rw-r--r-- | net-wireless/wepdecrypt/wepdecrypt-0.8-r2.ebuild | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/net-wireless/wepdecrypt/wepdecrypt-0.8-r2.ebuild b/net-wireless/wepdecrypt/wepdecrypt-0.8-r2.ebuild index 473c8f2a2f0b..e08f59101bbd 100644 --- a/net-wireless/wepdecrypt/wepdecrypt-0.8-r2.ebuild +++ b/net-wireless/wepdecrypt/wepdecrypt-0.8-r2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=6 inherit eutils @@ -15,30 +15,26 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="X" RDEPEND=" - dev-libs/openssl + dev-libs/openssl:= net-libs/libpcap sys-libs/zlib X? ( x11-libs/fltk:1 )" DEPEND="${RDEPEND}" -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-build.patch \ - "${FILESDIR}"/${P}-fltk.patch - - #Fix buffer size wrt bug 340148. - epatch "${FILESDIR}/${P}-buffer.patch" +PATCHES=( + "${FILESDIR}/${P}-build.patch" + "${FILESDIR}/${P}-fltk.patch" + "${FILESDIR}/${P}-buffer.patch" # bug#340148. + "${FILESDIR}/${P}-dyn.patch" +) - epatch "${FILESDIR}/${P}-dyn.patch" +src_prepare() { + default - #Fix respect for jobserver sed -i 's/make/$(MAKE)/g' Makefile || die "Sed failed" } src_configure() { - # build system is broken and --enabled-gui doesn't work - local myconf="" - ! use X && myconf="--disable-gui" - - econf ${myconf} + econf \ + $(use X || echo --disable-gui) } |