summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-03-07 17:13:52 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-03-08 00:08:38 +0100
commitc518e8ef7376ea9f3fdb7db72381a6330f16e6f0 (patch)
treeb1109e6a477f33084a060d7de25bd145e2b3b5a0
parentx11-themes/kvantum: drop 1.0.7 (diff)
downloadgentoo-c518e8ef.tar.gz
gentoo-c518e8ef.tar.bz2
gentoo-c518e8ef.zip
x11-themes/qtcurve: drop 9999, no material development since 2021
Still limited to Qt5, Qt4 and GTK2, last-rites is only a matter of time. Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--x11-themes/qtcurve/qtcurve-9999.ebuild82
1 files changed, 0 insertions, 82 deletions
diff --git a/x11-themes/qtcurve/qtcurve-9999.ebuild b/x11-themes/qtcurve/qtcurve-9999.ebuild
deleted file mode 100644
index 7bab15aa055b..000000000000
--- a/x11-themes/qtcurve/qtcurve-9999.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake kde.org
-
-DESCRIPTION="Widget styles for Qt and GTK2"
-HOMEPAGE="https://invent.kde.org/system/qtcurve"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-IUSE="gtk nls plasma +qt5 test +X"
-
-if [[ ${KDE_BUILD_TYPE} = release ]] ; then
- SRC_URI="https://github.com/KDE/qtcurve/archive/${PV/_/-}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
- S="${WORKDIR}/${P/_/-}"
-fi
-
-REQUIRED_USE="gtk? ( X )
- || ( gtk qt5 )
- plasma? ( qt5 )
-"
-RESTRICT="test"
-
-DEPEND="
- gtk? ( x11-libs/gtk+:2 )
- plasma? (
- dev-qt/qtprintsupport:5
- kde-frameworks/frameworkintegration:5
- kde-frameworks/karchive:5
- kde-frameworks/kcompletion:5
- kde-frameworks/kconfig:5
- kde-frameworks/kconfigwidgets:5
- kde-frameworks/kcoreaddons:5
- kde-frameworks/kguiaddons:5
- kde-frameworks/ki18n:5
- kde-frameworks/kiconthemes:5
- kde-frameworks/kio:5
- kde-frameworks/kwidgetsaddons:5
- kde-frameworks/kwindowsystem:5
- kde-frameworks/kxmlgui:5
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- X? ( dev-qt/qtx11extras:5 )
- )
- X? (
- x11-libs/libX11
- x11-libs/libxcb
- )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- virtual/pkgconfig
- nls? ( sys-devel/gettext )
- plasma? ( kde-frameworks/extra-cmake-modules:0 )
-"
-
-DOCS=( AUTHORS ChangeLog.md README.md TODO.md )
-
-src_configure() {
- local mycmakeargs=(
- -DLIB_INSTALL_DIR="$(get_libdir)"
- -DENABLE_QT4=OFF
- -DQTC_QT4_ENABLE_KDE=OFF
- -DQTC_KDE4_DEFAULT_HOME=ON
- -DENABLE_GTK2="$(usex gtk)"
- -DENABLE_QT5="$(usex qt5)"
- -DBUILD_TESTING="$(usex test)"
- -DQTC_ENABLE_X11="$(usex X)"
- -DQTC_INSTALL_PO="$(usex nls)"
- )
- use qt5 && mycmakeargs+=( -DQTC_QT5_ENABLE_KDE="$(usex plasma)" )
-
- cmake_src_configure
-}