Gentoo Archives: gentoo-commits

From: Ian Whyman <thev00d00@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libupnp/
Date: Fri, 30 Dec 2016 21:39:24
Message-Id: 1483133954.cd44d3f892c0d7e6726583f24e8812872df5bc90.thev00d00@gentoo
1 commit: cd44d3f892c0d7e6726583f24e8812872df5bc90
2 Author: Ian Whyman <thev00d00 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 30 21:39:14 2016 +0000
4 Commit: Ian Whyman <thev00d00 <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 30 21:39:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd44d3f8
7
8 net-libs/libupnp: Version bump
9
10 Package-Manager: portage-2.3.3
11
12 net-libs/libupnp/Manifest | 1 +
13 net-libs/libupnp/libupnp-1.6.21.ebuild | 47 ++++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/net-libs/libupnp/Manifest b/net-libs/libupnp/Manifest
17 index e5a9f40..63ea80a 100644
18 --- a/net-libs/libupnp/Manifest
19 +++ b/net-libs/libupnp/Manifest
20 @@ -1,3 +1,4 @@
21 DIST libupnp-1.6.18.tar.bz2 1201056 SHA256 b21bc676365622d3ace1b25292dab8d4d23f6e6a80ddc8f029b765d39797e934 SHA512 2ce9b637a7edf544ae272aea137f735b03761a7925da0578e0073cf6429389f7f2af6cb05f666a02faa839caba3e1798ad31657afd287626b88905a5c45f3cb4 WHIRLPOOL b575b517fb668c5e3af78dc1bc95c1a202404beb42966400b3b1313a1fe0e6cb8437ce392af6ad6de4ccc90715c8df7cc34bf3d0b3b828af4e14f1cc8a5e0eda
22 DIST libupnp-1.6.19.tar.bz2 1213439 SHA256 b3142b39601243b50532eec90f4a27dba85eb86f58d4b849ac94edeb29d9b22a SHA512 97af62a7483cc19cfe80157cbc3383c1b4b7c9c39b848f4ed063784b74df0b9b0527f7b467e01451e0a44dbf9e8a9eab510619146a6ee1e3dce46f3e4af6e661 WHIRLPOOL fe3ed0115c76872b45eb3f16909e23c61b004f028b745be17346b94dffd7c90108420cf71f50f73aa4ef241403b65b9d1c72926af3044ffacdae11f9649dad68
23 DIST libupnp-1.6.20.tar.bz2 1243637 SHA256 ee3537081e3ea56f66ada10387486823989210bc98002f098305551c966e3a63 SHA512 754a3f587963078fc60e8a58f6b04536dac03d053c8cd14d4fd7e505a3417484fa03b72dd09ef92150f00263f270aa19646b7aab1b8707111aff53c43f8a120a WHIRLPOOL df2702b30a9e895371ba0647bfdd017fd17b4478feb691efaf754618fa032cb8ba72317030960676584da44dfc144f8b9bd07218799b40c2afa7fdee28e8b164
24 +DIST libupnp-1.6.21.tar.bz2 1245353 SHA256 af3f3c0846a1d75baeadae4aa5a2bda427567e2a1fb4559bf73ccff0a4f9a39b SHA512 65a2989497b941dfa1f7ac09fe44267de4a5231af25a304f0f6e754c7cbb578bdcb3c500188b5ebfbff9f579099db7501817d45e1724ef8e384d6d918bcdcdeb WHIRLPOOL b4869189054ac00d57394e0919ad2f672af64f2c2b0ecc676c2b3fc4a3c22caa25ac38b57bbb5cf1ef12a5857b4cdfd450c6bd5955a5eacaf8bdf95a058c9dab
25
26 diff --git a/net-libs/libupnp/libupnp-1.6.21.ebuild b/net-libs/libupnp/libupnp-1.6.21.ebuild
27 new file mode 100644
28 index 00000000..c48aedc
29 --- /dev/null
30 +++ b/net-libs/libupnp/libupnp-1.6.21.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +inherit eutils flag-o-matic autotools
39 +
40 +DESCRIPTION="An Portable Open Source UPnP Development Kit"
41 +HOMEPAGE="http://pupnp.sourceforge.net/"
42 +SRC_URI="mirror://sourceforge/pupnp/${P}.tar.bz2"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux"
47 +IUSE="debug doc ipv6 static-libs"
48 +
49 +DOCS="NEWS README ChangeLog"
50 +
51 +PATCHES=(
52 + "${FILESDIR}"/${PN}-1.6.19-docs-install.patch
53 +)
54 +
55 +src_prepare() {
56 + default
57 +
58 + # fix tests
59 + chmod +x ixml/test/test_document.sh || die
60 +
61 + eautoreconf
62 +}
63 +
64 +src_configure() {
65 + use x86-fbsd && append-flags -O1
66 + # w/o docdir to avoid sandbox violations
67 + econf \
68 + $(use_enable debug) \
69 + $(use_enable ipv6) \
70 + $(use_enable static-libs static) \
71 + $(use_with doc documentation "${EPREFIX}/usr/share/doc/${PF}")
72 +}
73 +
74 +src_install () {
75 + default
76 + dobin upnp/sample/.libs/tv_{combo,ctrlpt,device}
77 + use static-libs || prune_libtool_files
78 +}