diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-31 20:10:50 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-31 22:17:38 +0200 |
commit | 6295fe3663204f5e535722d9c4496856e7aa199d (patch) | |
tree | b19ec864eb76b87c0b555b2e8a20a0609de0624a /games-util | |
parent | games-util/lgogdownloader: Drop IUSE qt5 and REQUIRED_USE (diff) | |
download | gentoo-6295fe3663204f5e535722d9c4496856e7aa199d.tar.gz gentoo-6295fe3663204f5e535722d9c4496856e7aa199d.tar.bz2 gentoo-6295fe3663204f5e535722d9c4496856e7aa199d.zip |
games-util/lgogdownloader: Drop IUSE qt5,qt6 and REQUIRED_USE
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/lgogdownloader/lgogdownloader-9999.ebuild | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/games-util/lgogdownloader/lgogdownloader-9999.ebuild b/games-util/lgogdownloader/lgogdownloader-9999.ebuild index 5aad60a3ca63..6be67e274231 100644 --- a/games-util/lgogdownloader/lgogdownloader-9999.ebuild +++ b/games-util/lgogdownloader/lgogdownloader-9999.ebuild @@ -10,8 +10,7 @@ HOMEPAGE="https://sites.google.com/site/gogdownloader/" EGIT_REPO_URI="https://github.com/Sude-/lgogdownloader.git" LICENSE="WTFPL-2" SLOT="0" -IUSE="gui qt5 qt6" -REQUIRED_USE="gui? ( ^^ ( qt5 qt6 ) )" +IUSE="gui" RDEPEND=" >=app-crypt/rhash-1.3.3-r2:0= @@ -20,10 +19,7 @@ RDEPEND=" >=dev-libs/jsoncpp-1.7:0= dev-libs/tinyxml2:0= >=net-misc/curl-7.55:0=[ssl] - gui? ( - qt5? ( dev-qt/qtwebengine:5[widgets] ) - qt6? ( dev-qt/qtwebengine:6[widgets] ) - ) + gui? ( dev-qt/qtwebengine:6[widgets] ) " DEPEND=" @@ -38,9 +34,6 @@ src_configure() { local mycmakeargs=( -DUSE_QT_GUI=$(usex gui) ) - use gui && mycmakeargs+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Qt6=$(usex qt5) - ) cmake_src_configure } |