Gentoo Archives: gentoo-commits

From: "Bjarke Istrup Pedersen (gurligebis)" <gurligebis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libupnp: libupnp-1.6.18.ebuild ChangeLog
Date: Wed, 30 Jan 2013 09:58:54
Message-Id: 20130130095850.BA37A2171D@flycatcher.gentoo.org
1 gurligebis 13/01/30 09:58:50
2
3 Modified: ChangeLog
4 Added: libupnp-1.6.18.ebuild
5 Log:
6 Bumping to 1.6.18
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux i686, signed Manifest commit with key 15AE484C)
9
10 Revision Changes Path
11 1.38 net-libs/libupnp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libupnp/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libupnp/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libupnp/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libupnp/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 1 Jan 2013 08:24:03 -0000 1.37
24 +++ ChangeLog 30 Jan 2013 09:58:50 -0000 1.38
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-libs/libupnp
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libupnp/ChangeLog,v 1.37 2013/01/01 08:24:03 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libupnp/ChangeLog,v 1.38 2013/01/30 09:58:50 gurligebis Exp $
30 +
31 +*libupnp-1.6.18 (30 Jan 2013)
32 +
33 + 30 Jan 2013; <gurligebis@g.o> +libupnp-1.6.18.ebuild:
34 + Bumping to 1.6.18
35
36 01 Jan 2013; Agostino Sarubbo <ago@g.o> libupnp-1.6.17.ebuild:
37 Stable for arm, wrt bug #433645
38
39
40
41 1.1 net-libs/libupnp/libupnp-1.6.18.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libupnp/libupnp-1.6.18.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libupnp/libupnp-1.6.18.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libupnp-1.6.18.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/libupnp/libupnp-1.6.18.ebuild,v 1.1 2013/01/30 09:58:50 gurligebis Exp $
51
52 EAPI="4"
53 WANT_AUTOMAKE=1.9
54
55 inherit eutils flag-o-matic autotools
56
57 DESCRIPTION="An Portable Open Source UPnP Development Kit"
58 HOMEPAGE="http://pupnp.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/pupnp/${P}.tar.bz2"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux"
64 IUSE="debug doc ipv6 static-libs"
65
66 RDEPEND=""
67 DEPEND="${RDEPEND}"
68
69 DOCS="NEWS README ChangeLog"
70
71 src_prepare() {
72 sed -e '/AX_CFLAGS_GCC_OPTION/s:-Os::g' \
73 -i "${S}/configure.ac" || die
74
75 # fix tests
76 chmod +x ixml/test/test_document.sh || die
77
78 eautoreconf
79 }
80
81 src_configure() {
82 use x86-fbsd && append-flags -O1
83 # w/o docdir to avoid sandbox violations
84 econf \
85 $(use_enable debug) \
86 $(use_enable ipv6) \
87 $(use_enable static-libs static) \
88 $(use_with doc documentation "${EPREFIX}/usr/share/doc/${PF}")
89 }
90
91 src_install () {
92 default
93 dobin upnp/sample/.libs/tv_{combo,ctrlpt,device}
94 use static-libs || find "${ED}" -type f -name '*.la' -delete
95 }
96
97 pkg_postinst() {
98 ewarn "Please remember to run revdep-rebuild when upgrading"
99 ewarn "from libupnp 1.4.x to libupnp 1.6.x , so packages"
100 ewarn "gets linked with the new library."
101 ewarn ""
102 ewarn "The revdep-rebuild script is part of the"
103 ewarn "app-portage/gentoolkit package."
104 }