Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/qconf/
Date: Fri, 03 Nov 2017 13:57:08
Message-Id: 1509717415.6befd17ff2f98003fd3041cf242c8aa46b792cac.kensington@gentoo
1 commit: 6befd17ff2f98003fd3041cf242c8aa46b792cac
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 3 13:56:40 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 3 13:56:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6befd17f
7
8 sys-devel/qconf: remove 2.0
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.4
11
12 sys-devel/qconf/Manifest | 1 -
13 sys-devel/qconf/qconf-2.0.ebuild | 50 ----------------------------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/sys-devel/qconf/Manifest b/sys-devel/qconf/Manifest
17 index 4ba9c203b1c..f272c3ff71a 100644
18 --- a/sys-devel/qconf/Manifest
19 +++ b/sys-devel/qconf/Manifest
20 @@ -1,2 +1 @@
21 -DIST qconf-2.0.tar.bz2 50507 SHA256 772022c9757530c192d3bb1d31c4d6076b3464a8395dc06d3019923c44f999f2 SHA512 8820dfe191149b8bf7aa2cd631a6c4900b821c30817c6bffcf79734271c47165daceef11507690d495881c8dc8d19f8dec441c7adeb2a3e36b355b66b4f5c43a WHIRLPOOL facc512a3df046e131825a45afc928b76d8c87446b8d4161695165e6551cebfb586497b2cad3c69a9a75afa0791b9c915e6f7019ead9925d867c01d7bd573f09
22 DIST qconf-2.3.tar.xz 51848 SHA256 d189dcf5589fe7d8ca53b963ba8bd33b91c4a75d1e7d863544174e6b7d69f581 SHA512 27a532cb52067707a3e04a40260bb0f42e40adff4a643d2f048832356de58271e4051c9cb810e6fffd4b4e45dba483ed65aec062506053caa262ac03b3ec6253 WHIRLPOOL 6fc386321d4a9bbb12254d427355feaadc90c4b66dfdd0d69a635c15ed72c481aede18c506b9b15260de448931bbbbec6c3a59d374c49491e997d6f52a33ea62
23
24 diff --git a/sys-devel/qconf/qconf-2.0.ebuild b/sys-devel/qconf/qconf-2.0.ebuild
25 deleted file mode 100644
26 index 2ffe7495fd2..00000000000
27 --- a/sys-devel/qconf/qconf-2.0.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit qmake-utils
36 -
37 -DESCRIPTION="./configure like generator for qmake-based projects"
38 -HOMEPAGE="http://delta.affinix.com/qconf/"
39 -SRC_URI="http://delta.affinix.com/download/${P}.tar.bz2"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86 ~x86-fbsd"
44 -IUSE="+qt4 qt5"
45 -
46 -RDEPEND="
47 - qt4? ( dev-qt/qtcore:4 )
48 - qt5? (
49 - dev-qt/qtcore:5
50 - dev-qt/qtxml:5
51 - )
52 -"
53 -DEPEND="${RDEPEND}"
54 -
55 -DOCS=( AUTHORS README.md TODO )
56 -
57 -REQUIRED_USE="^^ ( qt4 qt5 )"
58 -
59 -src_configure() {
60 - # Fake ./configure. Fails on unknown options
61 - ./configure \
62 - --prefix="${EPREFIX}/usr" \
63 - $(use qt4 && echo "--qtdir=$(qt4_get_libdir)") \
64 - $(use qt5 && echo "--qtdir=$(qt5_get_libdir)/qt5") \
65 - --extraconf=QMAKE_STRIP= \
66 - --verbose || die
67 -
68 - [ ! -f Makefile ] && die "Makefile generation failure"
69 -
70 - use qt4 && eqmake4
71 - use qt5 && eqmake5
72 -}
73 -
74 -src_install() {
75 - emake INSTALL_ROOT="${ED}" install
76 - einstalldocs
77 - insinto /usr/share/doc/${PF}
78 - doins -r examples
79 -}