summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-01-01 19:43:37 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-01-01 22:52:41 +0100
commit0c8f68e7e7655da0a26408534f6090329fd77009 (patch)
tree7a7fe7c2af47cf16e5b9f28f1780a67b3a47e70b /games-util
parentgames-util/lgogdownloader: Drop IUSE qt6 (make Qt6 unconditional) (diff)
downloadgentoo-0c8f68e7e7655da0a26408534f6090329fd77009.tar.gz
gentoo-0c8f68e7e7655da0a26408534f6090329fd77009.tar.bz2
gentoo-0c8f68e7e7655da0a26408534f6090329fd77009.zip
games-util/lgogdownloader: drop 3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-util')
-rw-r--r--games-util/lgogdownloader/lgogdownloader-3.16.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/games-util/lgogdownloader/lgogdownloader-3.16.ebuild b/games-util/lgogdownloader/lgogdownloader-3.16.ebuild
deleted file mode 100644
index 8e8825bc6865..000000000000
--- a/games-util/lgogdownloader/lgogdownloader-3.16.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Unofficial GOG.com downloader for Linux"
-HOMEPAGE="https://sites.google.com/site/gogdownloader/"
-SRC_URI="https://github.com/Sude-/${PN}/releases/download/v${PV}/${P}.tar.gz"
-LICENSE="WTFPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gui qt6"
-
-RDEPEND="
- >=app-crypt/rhash-1.3.3-r2:0=
- app-text/htmltidy:=
- dev-libs/boost:=[zlib]
- >=dev-libs/jsoncpp-1.7:0=
- dev-libs/tinyxml2:0=
- >=net-misc/curl-7.55:0=[ssl]
- gui? (
- !qt6? (
- dev-qt/qtcore:5
- dev-qt/qtnetwork:5
- dev-qt/qtwebengine:5[widgets]
- dev-qt/qtwidgets:5
- )
- qt6? (
- dev-qt/qtbase:6[network,widgets]
- dev-qt/qtwebengine:6[widgets]
- )
- )
-"
-
-DEPEND="
- ${RDEPEND}
-"
-
-BDEPEND="
- virtual/pkgconfig
-"
-
-src_configure() {
- local mycmakeargs=(
- -DUSE_QT_GUI=$(usex gui)
- )
- use gui && mycmakeargs+=(
- -DCMAKE_DISABLE_FIND_PACKAGE_Qt6=$(usex !qt6)
- )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
- gunzip "${ED}"/usr/share/man/man1/${PN}.1.gz || die
-}