Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/qmf/
Date: Sun, 04 Jun 2017 07:17:01
Message-Id: 1496560607.923109a0c1d43754fa2e2e5c53f8b5f0ac4cb3a3.kensington@gentoo
1 commit: 923109a0c1d43754fa2e2e5c53f8b5f0ac4cb3a3
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 4 07:16:37 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 4 07:16:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=923109a0
7
8 net-libs/qmf: remove examples USE flag
9
10 The examples USE flag requires dev-qt/qtwebkit:4 which is ancient and will not
11 see further security updates.
12
13 Package-Manager: Portage-2.3.5, Repoman-2.3.2
14
15 net-libs/qmf/qmf-4.0.3.ebuild | 11 +++++------
16 1 file changed, 5 insertions(+), 6 deletions(-)
17
18 diff --git a/net-libs/qmf/qmf-4.0.3.ebuild b/net-libs/qmf/qmf-4.0.3.ebuild
19 index 8dd808d3194..f1d6022513e 100644
20 --- a/net-libs/qmf/qmf-4.0.3.ebuild
21 +++ b/net-libs/qmf/qmf-4.0.3.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2016 Gentoo Foundation
24 +# Copyright 1999-2017 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=5
28 @@ -22,13 +22,12 @@ HOMEPAGE="https://code.qt.io/cgit/qt-labs/messagingframework.git/"
29 LICENSE="LGPL-2.1"
30 SLOT="0"
31 KEYWORDS="amd64 ~ppc ~ppc64 x86"
32 -IUSE="debug doc examples icu test zlib"
33 +IUSE="debug doc icu test zlib"
34
35 RDEPEND="
36 dev-qt/qtcore:4[ssl]
37 dev-qt/qtgui:4
38 dev-qt/qtsql:4
39 - examples? ( dev-qt/qtwebkit:4 )
40 icu? ( dev-libs/icu:= )
41 zlib? ( sys-libs/zlib )
42 "
43 @@ -47,9 +46,9 @@ src_prepare() {
44
45 sed -i -e '/SUBDIRS.*=/s/benchmarks//' messagingframework.pro || die
46
47 - if ! use examples; then
48 - sed -i -e '/SUBDIRS.*=/s/examples//' messagingframework.pro || die
49 - fi
50 + # disable examples which require dev-qt/qtwebkit:4
51 + sed -i -e '/SUBDIRS.*=/s/examples//' messagingframework.pro || die
52 +
53 if ! use test; then
54 sed -i -e '/SUBDIRS.*=/s/tests//' messagingframework.pro || die
55 fi