commit: 344e2bf8c3d9f4ba8e832ea2c2718514de9d62a2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Fri Apr 25 19:06:44 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Fri Apr 25 19:10:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=344e2bf8
app-emulation/q4wine: add 1.4.1 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> app-emulation/q4wine/Manifest | 1 + app-emulation/q4wine/q4wine-1.4.1.ebuild | 41 ++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/app-emulation/q4wine/Manifest b/app-emulation/q4wine/Manifest index ee06ebe4aef1..3d51c7439fe7 100644 --- a/app-emulation/q4wine/Manifest +++ b/app-emulation/q4wine/Manifest @@ -1 +1,2 @@ DIST q4wine-1.4.0.tar.gz 3197514 BLAKE2B 9a858211bf16a441cb960325677df4f69c09887538ea30c6e961413592c3648d7467807bec891f1ed12577a700f5627debcf6123770fd36153cae2dcfe13c898 SHA512 faba9fda15d1067940abbef3b3ba9a30b8bfd759892b2c05963c3cf69bb331afb101016afd3485a9be2b6b03944a920d05664b01e4af4f3e554c739511ff3c4a +DIST q4wine-1.4.1.tar.gz 3197545 BLAKE2B d7a8d5bb80e412ce6b3ab301335e576e34445fb5c112213fab431c4666c159815931700a33cf14daa9d441caa3d7e05cf906e5ee3d357c3bf92c5ac7177c1a3e SHA512 7b2516117ea3f13a11f763b71a0026e034fa137b772a87ec7f15e12c7a79f463ed0dfdcef9a94320f87c8013256719592c2c6b44c7dac39d4e0da8e9fe54e413 diff --git a/app-emulation/q4wine/q4wine-1.4.1.ebuild b/app-emulation/q4wine/q4wine-1.4.1.ebuild new file mode 100644 index 000000000000..2154a65378ff --- /dev/null +++ b/app-emulation/q4wine/q4wine-1.4.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="Qt GUI configuration tool for Wine" +HOMEPAGE="https://q4wine.brezblock.org.ua/" +SRC_URI="https://github.com/brezerk/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +ico +iso +wineappdb" + +DEPEND=" + dev-qt/qtbase:6[dbus,gui,network,sql,sqlite,ssl,widgets,xml] + ico? ( >=media-gfx/icoutils-0.26.0 ) +" +RDEPEND="${DEPEND} + app-admin/sudo + >=sys-apps/which-2.19 + iso? ( sys-fs/fuseiso ) +" +BDEPEND="dev-qt/qttools:6[linguist]" + +DOCS=( {AUTHORS,Changelog,README}.md ) + +src_configure() { + local mycmakeargs=( + -DDEBUG=$(usex debug ON OFF) + -DWITH_ICOUTILS=$(usex ico ON OFF) + -DWITH_SYSTEM_SINGLEAPP=OFF + -DWITH_WINEAPPDB=$(usex wineappdb ON OFF) + -DUSE_BZIP2=OFF + -DUSE_GZIP=OFF + -DWITH_DBUS=ON + ) + cmake_src_configure +}
