summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2018-05-13 21:14:40 +0200
committerJohannes Huber <johu@gentoo.org>2018-05-13 21:15:23 +0200
commitde28d560cc0d70fedd429e4b30c423bec63cc7c0 (patch)
tree53d45ca0a865d94013fb93654786974c9d57684f /x11-misc/qt5ct
parentmedia-video/mpv: security cleanup wrt CVE-2018-6360 (diff)
downloadgentoo-de28d560cc0d70fedd429e4b30c423bec63cc7c0.tar.gz
gentoo-de28d560cc0d70fedd429e4b30c423bec63cc7c0.tar.bz2
gentoo-de28d560cc0d70fedd429e4b30c423bec63cc7c0.zip
x11-misc/qt5ct: Remove 0.31
Overshadowed by 0.35. Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'x11-misc/qt5ct')
-rw-r--r--x11-misc/qt5ct/Manifest1
-rw-r--r--x11-misc/qt5ct/metadata.xml1
-rw-r--r--x11-misc/qt5ct/qt5ct-0.31.ebuild49
3 files changed, 0 insertions, 51 deletions
diff --git a/x11-misc/qt5ct/Manifest b/x11-misc/qt5ct/Manifest
index d3120c352baa..cea98635911e 100644
--- a/x11-misc/qt5ct/Manifest
+++ b/x11-misc/qt5ct/Manifest
@@ -1,2 +1 @@
-DIST qt5ct-0.31.tar.bz2 55724 BLAKE2B 54602ee9ed46f790f3a8bc15fa66467382b5830b9a218739bb24483f1f18fe8be8c6a375d83e0b6c02b14bec002aa1e7bf757d6608eb908da0dcf7ced2f6b59d SHA512 9162106febf93b94b8ba847157d20386568bc898d15c6123636ef9d9c50bce3ca4706fbfbfd82053dccf545f91ca40d387d1e9a5bbb6773810a1d931417eaa4e
DIST qt5ct-0.35.tar.bz2 62547 BLAKE2B dd61f151e1c6c58095889b90cb30bb2baaf21fd8f181af37ee43c1d00404655d57c941cee905e737aff29122ae3f588d5c7ba46dc80ca76d749cc2dd66f35d57 SHA512 2bd24221d391c420e73488738ff10762d27eb21fb28dc69da27dcbfface0cd0f16049768b55867a059c93da07eddb76da1bc63aefd516e07e5049c847da3970a
diff --git a/x11-misc/qt5ct/metadata.xml b/x11-misc/qt5ct/metadata.xml
index a5fe4940379c..86b995aa8038 100644
--- a/x11-misc/qt5ct/metadata.xml
+++ b/x11-misc/qt5ct/metadata.xml
@@ -15,7 +15,6 @@
</longdescription>
<use>
<flag name="dbus">Enable system tray and global menu support</flag>
- <flag name="systray">Enable system tray support</flag>
</use>
<upstream>
<remote-id type="sourceforge">qt5ct</remote-id>
diff --git a/x11-misc/qt5ct/qt5ct-0.31.ebuild b/x11-misc/qt5ct/qt5ct-0.31.ebuild
deleted file mode 100644
index a774818defb1..000000000000
--- a/x11-misc/qt5ct/qt5ct-0.31.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-DESCRIPTION="Qt5 configuration tool, similar to qtconfig for Qt4"
-HOMEPAGE="https://sourceforge.net/projects/qt5ct/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="+systray"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5=
- dev-qt/qtwidgets:5
- systray? ( dev-qt/qtgui:5[dbus] )
-"
-DEPEND="${RDEPEND}
- dev-qt/linguist-tools:5
-"
-
-src_configure() {
- eqmake5 DEFINES="$(usex systray '' QT_NO_SYSTEMTRAYICON)" ${PN}.pro
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
- einstalldocs
-
- echo 'QT_QPA_PLATFORMTHEME=qt5ct' > "${T}"/98${PN} || die
- doenvd "${T}"/98${PN}
-}
-
-pkg_postinst() {
- if [[ -z ${REPLACING_VERSIONS} ]]; then
- ewarn "qt5ct configuration won't be applied to the currently running sessions."
- ewarn "Please relogin."
- fi
- if ! has_version 'dev-qt/qtsvg:5'; then
- elog
- elog "For SVG icon themes, please install 'dev-qt/qtsvg:5'."
- elog
- fi
-}