diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-10-30 09:24:23 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-10-30 09:24:23 +0000 |
commit | 57526f9f2f8cb28e63606cad166b49695a4f6c71 (patch) | |
tree | a57670c4d260c906cb6c6326a5beb1decd9d9009 /net-analyzer/upnpscan | |
parent | Lastrite dev-tinyos -category and dev-scheme/sisc. (diff) | |
download | gentoo-2-57526f9f2f8cb28e63606cad166b49695a4f6c71.tar.gz gentoo-2-57526f9f2f8cb28e63606cad166b49695a4f6c71.tar.bz2 gentoo-2-57526f9f2f8cb28e63606cad166b49695a4f6c71.zip |
QA: fix phases for EAPI=2.
(Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/upnpscan')
-rw-r--r-- | net-analyzer/upnpscan/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/net-analyzer/upnpscan/ChangeLog b/net-analyzer/upnpscan/ChangeLog index 7ece9af14b1e..b2def22562b8 100644 --- a/net-analyzer/upnpscan/ChangeLog +++ b/net-analyzer/upnpscan/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/upnpscan # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/ChangeLog,v 1.7 2010/10/22 01:34:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/ChangeLog,v 1.8 2010/10/30 09:24:23 flameeyes Exp $ + + 30 Oct 2010; Diego E. Pettenò <flameeyes@gentoo.org> + upnpscan-0.4-r1.ebuild: + QA: fix phases for EAPI=2. *upnpscan-0.4-r1 (22 Oct 2010) diff --git a/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild b/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild index 563171feec20..cda64a1c31b6 100644 --- a/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild +++ b/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild,v 1.1 2010/10/22 01:34:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild,v 1.2 2010/10/30 09:24:23 flameeyes Exp $ EAPI="2" @@ -22,12 +22,15 @@ src_prepare() { eautoreconf } -src_compile() { +src_configure() { if use static ; then econf || die else econf --enable-static=no || die fi +} + +src_compile() { emake CFLAGS="${CFLAGS}" || die } |