commit: 31c20d5dbbecd6055798d9c5695d37d362f681ef
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 24 20:25:36 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep 24 20:25:36 2022 +0000
URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=31c20d5d
dev-qt/qttools: drop 6.3.9999
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-qt/qttools/qttools-6.3.9999.ebuild | 52 ----------------------------------
1 file changed, 52 deletions(-)
diff --git a/dev-qt/qttools/qttools-6.3.9999.ebuild
b/dev-qt/qttools/qttools-6.3.9999.ebuild
deleted file mode 100644
index 23e1c087..00000000
--- a/dev-qt/qttools/qttools-6.3.9999.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Qt Tools Collection"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
- KEYWORDS="~amd64"
-fi
-
-IUSE="
- assistant designer distancefieldgenerator linguist pixeltool
- qdbus qdoc qtattributionsscanner qtdiag qtplugininfo
-"
-REQUIRED_USE="linguist? ( designer )"
-
-DEPEND="
- =dev-qt/qtbase-${PV}*[network]
- assistant? ( =dev-qt/qtbase-${PV}*[sql,widgets] )
- designer? ( =dev-qt/qtbase-${PV}*[widgets] )
- distancefieldgenerator? (
- =dev-qt/qtbase-${PV}*[widgets]
- =dev-qt/qtdeclarative-${PV}*
- )
- pixeltool? ( =dev-qt/qtbase-${PV}*[widgets] )
- qdbus? ( =dev-qt/qtbase-${PV}*[widgets] )
- qdoc? ( sys-devel/clang:= )
- qtdiag? ( =dev-qt/qtbase-${PV}*[opengl,widgets] )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local mycmakeargs=(
- $(qt_feature assistant)
- -DQT_FEATURE_commandlineparser=ON
- $(qt_feature designer)
- $(qt_feature distancefieldgenerator)
- $(qt_feature linguist)
- $(qt_feature pixeltool)
- $(qt_feature qdbus)
- $(qt_feature qdoc clang)
- $(qt_feature qtattributionsscanner)
- $(qt_feature qtdiag)
- $(qt_feature qtplugininfo)
- -DQT_FEATURE_thread=ON
- )
-
- qt6-build_src_configure
-}