Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/upnpscan: ChangeLog upnpscan-0.4-r1.ebuild
Date: Sat, 30 Oct 2010 09:24:29
Message-Id: 20101030092423.3BFA120051@flycatcher.gentoo.org
1 flameeyes 10/10/30 09:24:23
2
3 Modified: ChangeLog upnpscan-0.4-r1.ebuild
4 Log:
5 QA: fix phases for EAPI=2.
6
7 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 net-analyzer/upnpscan/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 22 Oct 2010 01:34:13 -0000 1.7
23 +++ ChangeLog 30 Oct 2010 09:24:23 -0000 1.8
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-analyzer/upnpscan
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/ChangeLog,v 1.7 2010/10/22 01:34:13 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/ChangeLog,v 1.8 2010/10/30 09:24:23 flameeyes Exp $
29 +
30 + 30 Oct 2010; Diego E. Pettenò <flameeyes@g.o>
31 + upnpscan-0.4-r1.ebuild:
32 + QA: fix phases for EAPI=2.
33
34 *upnpscan-0.4-r1 (22 Oct 2010)
35
36
37
38
39 1.2 net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild?r1=1.1&r2=1.2
44
45 Index: upnpscan-0.4-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- upnpscan-0.4-r1.ebuild 22 Oct 2010 01:34:13 -0000 1.1
52 +++ upnpscan-0.4-r1.ebuild 30 Oct 2010 09:24:23 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild,v 1.1 2010/10/22 01:34:13 jer Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r1.ebuild,v 1.2 2010/10/30 09:24:23 flameeyes Exp $
58
59 EAPI="2"
60
61 @@ -22,12 +22,15 @@
62 eautoreconf
63 }
64
65 -src_compile() {
66 +src_configure() {
67 if use static ; then
68 econf || die
69 else
70 econf --enable-static=no || die
71 fi
72 +}
73 +
74 +src_compile() {
75 emake CFLAGS="${CFLAGS}" || die
76 }