Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/qtcurve/
Date: Mon, 30 May 2016 18:36:53
Message-Id: 1464633399.a6be98a78439d1db72a376780fb6861713672a8c.pesa@gentoo
1 commit: a6be98a78439d1db72a376780fb6861713672a8c
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 18:35:57 2016 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 18:36:39 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6be98a7
7
8 x11-themes/qtcurve: remove old
9
10 Package-Manager: portage-2.3.0_rc1
11
12 x11-themes/qtcurve/qtcurve-1.8.18.ebuild | 81 --------------------------------
13 1 file changed, 81 deletions(-)
14
15 diff --git a/x11-themes/qtcurve/qtcurve-1.8.18.ebuild b/x11-themes/qtcurve/qtcurve-1.8.18.ebuild
16 deleted file mode 100644
17 index c21928d..0000000
18 --- a/x11-themes/qtcurve/qtcurve-1.8.18.ebuild
19 +++ /dev/null
20 @@ -1,81 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -KDE_REQUIRED="optional"
27 -inherit kde4-base
28 -
29 -DESCRIPTION="A set of widget styles for Qt and GTK2"
30 -HOMEPAGE="https://github.com/QtCurve/qtcurve"
31 -
32 -if [[ ${PV} == *9999* ]]; then
33 - inherit git-r3
34 - EGIT_REPO_URI="https://github.com/QtCurve/qtcurve.git"
35 - KEYWORDS=""
36 -else
37 - SRC_URI="https://github.com/QtCurve/${PN}/archive/${PV/_/}.tar.gz -> ${P}.tar.gz
38 - https://github.com/QtCurve/qtcurve/commit/020b70404f6202490d5ca131f0ec084355cb98e3.patch -> ${PN}-1.8.18-dont_use_c++11.patch"
39 - KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
40 -fi
41 -
42 -LICENSE="LGPL-2+"
43 -SLOT="0"
44 -IUSE="+X gtk kde nls +qt4 qt5 windeco"
45 -REQUIRED_USE="gtk? ( X )
46 - windeco? ( kde X )
47 - || ( gtk qt4 qt5 )"
48 -
49 -RDEPEND="X? ( x11-libs/libxcb
50 - x11-libs/libX11 )
51 - gtk? ( x11-libs/gtk+:2 )
52 - qt4? ( dev-qt/qtdbus:4
53 - dev-qt/qtgui:4
54 - dev-qt/qtsvg:4
55 - )
56 - qt5? ( dev-qt/qtdeclarative:5
57 - dev-qt/qtgui:5
58 - dev-qt/qtsvg:5
59 - dev-qt/qtwidgets:5
60 - X? ( dev-qt/qtdbus:5
61 - dev-qt/qtx11extras:5 )
62 - )
63 - kde? ( $(add_kdebase_dep systemsettings)
64 - windeco? ( $(add_kdebase_dep kwin) )
65 - )
66 - !x11-themes/gtk-engines-qtcurve"
67 -DEPEND="${RDEPEND}
68 - virtual/pkgconfig
69 - nls? ( sys-devel/gettext )"
70 -
71 -S="${WORKDIR}/${P/_/}"
72 -
73 -DOCS=( AUTHORS ChangeLog.md README.md TODO.md )
74 -
75 -PATCHES=(
76 - "${DISTDIR}/${P}-dont_use_c++11.patch"
77 - "${FILESDIR}/${P}-remove_qt_filedialog_api.patch"
78 - )
79 -
80 -pkg_setup() {
81 - # bug #498776
82 - if ! version_is_at_least 4.7 $(gcc-version) ; then
83 - append-cxxflags -Doverride=
84 - fi
85 -
86 - use kde && kde4-base_pkg_setup
87 -}
88 -
89 -src_configure() {
90 - local mycmakeargs
91 - mycmakeargs=(
92 - $(cmake-utils_use_enable gtk GTK2)
93 - $(cmake-utils_use_enable qt4 QT4)
94 - $(cmake-utils_use_enable qt5 QT5)
95 - $(cmake-utils_use X QTC_ENABLE_X11 )
96 - $(cmake-utils_use kde QTC_QT4_ENABLE_KDE )
97 - $(cmake-utils_use windeco QTC_QT4_ENABLE_KWIN )
98 - $(cmake-utils_use nls QTC_INSTALL_PO )
99 - )
100 - cmake-utils_src_configure
101 -}