diff options
Diffstat (limited to 'games-util/lgogdownloader/lgogdownloader-3.16-r1.ebuild')
-rw-r--r-- | games-util/lgogdownloader/lgogdownloader-3.16-r1.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/games-util/lgogdownloader/lgogdownloader-3.16-r1.ebuild b/games-util/lgogdownloader/lgogdownloader-3.16-r1.ebuild new file mode 100644 index 000000000000..77314984dd49 --- /dev/null +++ b/games-util/lgogdownloader/lgogdownloader-3.16-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +if [[ ${PV} == *9999* ]]; then + EGIT_REPO_URI="https://github.com/Sude-/lgogdownloader.git" + inherit git-r3 +else + SRC_URI="https://github.com/Sude-/${PN}/releases/download/v${PV}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Unofficial GOG.com downloader for Linux" +HOMEPAGE="https://sites.google.com/site/gogdownloader/" + +LICENSE="WTFPL-2" +SLOT="0" +IUSE="gui" + +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? ( + dev-qt/qtbase:6[network,widgets] + dev-qt/qtwebengine:6[widgets] + ) +" + +DEPEND=" + ${RDEPEND} +" + +BDEPEND=" + dev-qt/qtbase:6 + virtual/pkgconfig +" + +src_configure() { + local mycmakeargs=( + -DUSE_QT_GUI=$(usex gui) + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + gunzip "${ED}"/usr/share/man/man1/${PN}.1.gz || die +} |