Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/upnpscan: ChangeLog upnpscan-0.4-r2.ebuild upnpscan-0.4-r1.ebuild
Date: Mon, 01 Nov 2010 04:17:24
Message-Id: 20101101041710.0A89F20051@flycatcher.gentoo.org
1 jer 10/11/01 04:17:10
2
3 Modified: ChangeLog
4 Added: upnpscan-0.4-r2.ebuild
5 Removed: upnpscan-0.4-r1.ebuild
6 Log:
7 Clean up patch (remove LIBTOOL dep and unset CFLAGS in configure.in, extend it (Makefile.am) so we can simply use emake install without trying to install empty/non-existent files, and do not set CFLAGS again (src/Makefile.am). Bug #343333.
8
9 (Portage version: 2.1.9.23/cvs/Linux i686)
10
11 Revision Changes Path
12 1.9 net-analyzer/upnpscan/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/ChangeLog?rev=1.9&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/ChangeLog?rev=1.9&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/ChangeLog?r1=1.8&r2=1.9
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/ChangeLog,v
21 retrieving revision 1.8
22 retrieving revision 1.9
23 diff -u -r1.8 -r1.9
24 --- ChangeLog 30 Oct 2010 09:24:23 -0000 1.8
25 +++ ChangeLog 1 Nov 2010 04:17:09 -0000 1.9
26 @@ -1,6 +1,15 @@
27 # ChangeLog for net-analyzer/upnpscan
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/ChangeLog,v 1.8 2010/10/30 09:24:23 flameeyes Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/ChangeLog,v 1.9 2010/11/01 04:17:09 jer Exp $
31 +
32 +*upnpscan-0.4-r2 (01 Nov 2010)
33 +
34 + 01 Nov 2010; Jeroen Roovers <jer@g.o> -upnpscan-0.4-r1.ebuild,
35 + +upnpscan-0.4-r2.ebuild, files/upnpscan-0.4-cflags.patch:
36 + Clean up patch (remove LIBTOOL dep and unset CFLAGS in configure.in,
37 + extend it (Makefile.am) so we can simply use emake install without trying
38 + to install empty/non-existent files, and do not set CFLAGS again
39 + (src/Makefile.am). Bug #343333.
40
41 30 Oct 2010; Diego E. Pettenò <flameeyes@g.o>
42 upnpscan-0.4-r1.ebuild:
43
44
45
46 1.1 net-analyzer/upnpscan/upnpscan-0.4-r2.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r2.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r2.ebuild?rev=1.1&content-type=text/plain
50
51 Index: upnpscan-0.4-r2.ebuild
52 ===================================================================
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/upnpscan/upnpscan-0.4-r2.ebuild,v 1.1 2010/11/01 04:17:09 jer Exp $
56
57 EAPI="2"
58
59 inherit autotools eutils
60
61 DESCRIPTION="Scans the network for UPNP capable devices"
62 HOMEPAGE="http://www.cqure.net/wp/upnpscan/"
63 SRC_URI="http://www.cqure.net/tools/${PN}-v${PV}-src.tgz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 S="${WORKDIR}/${PN}"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${P}-cflags.patch
74 eautoreconf
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die
79 }