Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/herqq: herqq-1.0.0-r2.ebuild ChangeLog
Date: Mon, 23 Jun 2014 06:08:25
Message-Id: 20140623060820.B0BDB2004E@flycatcher.gentoo.org
1 kensington 14/06/23 06:08:20
2
3 Modified: ChangeLog
4 Added: herqq-1.0.0-r2.ebuild
5 Log:
6 Bump EAPI. Correct dependencies. Disable building of test application. Fix unconditional API documentation installation.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
9
10 Revision Changes Path
11 1.14 media-libs/herqq/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/herqq/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/herqq/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/herqq/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/herqq/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 2 Jan 2014 18:46:17 -0000 1.13
24 +++ ChangeLog 23 Jun 2014 06:08:20 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/herqq
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/herqq/ChangeLog,v 1.13 2014/01/02 18:46:17 pinkbyte Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/herqq/ChangeLog,v 1.14 2014/06/23 06:08:20 kensington Exp $
30 +
31 +*herqq-1.0.0-r2 (23 Jun 2014)
32 +
33 + 23 Jun 2014; Michael Palimaka <kensington@g.o> +herqq-1.0.0-r2.ebuild:
34 + Bump EAPI. Correct dependencies. Disable building of test application. Fix
35 + unconditional API documentation installation.
36
37 02 Jan 2014; Sergey Popov <pinkbyte@g.o> herqq-1.0.0-r1.ebuild:
38 Add blocker for media-libs/hupnp-ng, which is fork of this library
39
40
41
42 1.1 media-libs/herqq/herqq-1.0.0-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/herqq/herqq-1.0.0-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/herqq/herqq-1.0.0-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: herqq-1.0.0-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/herqq/herqq-1.0.0-r2.ebuild,v 1.1 2014/06/23 06:08:20 kensington Exp $
52
53 EAPI=5
54
55 inherit multilib qt4-r2
56
57 DESCRIPTION="A software library for building UPnP devices"
58 HOMEPAGE="http://www.herqq.org"
59 SRC_URI="mirror://sourceforge/hupnp/${P}.zip"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
64 IUSE="doc"
65
66 # no release of QtSolutions using bundled libQtSolutions_SOAP
67 RDEPEND="
68 dev-qt/qtcore:4
69 !media-libs/hupnp-ng
70 "
71 DEPEND="${RDEPEND}
72 app-arch/unzip
73 "
74
75 DOCS=( hupnp/ChangeLog )
76
77 src_prepare() {
78 # fix the .pro file for multilib issues
79 sed \
80 -e "s:PREFIX/lib:PREFIX/$(get_libdir):" \
81 -i "${S}/hupnp/src.pro" \
82 -i "${S}/hupnp/lib/qtsoap-2.7-opensource/buildlib/buildlib.pro" || die
83 qt4-r2_src_prepare
84 }
85
86 src_configure() {
87 eqmake4 PREFIX="${EPREFIX}/usr/" CONFIG+=DISABLE_TESTAPP
88 }
89
90 src_install() {
91 qt4-r2_src_install
92 use doc && dohtml -r hupnp/docs/html/
93 }