commit: ef63601290b87a81ebf529d701d00e8616ef5580 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon Dec 22 19:23:15 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Fri Dec 26 16:34:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef636012
app-emulation/q4wine: add 1.4.2 Closes: https://bugs.gentoo.org/966266 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> app-emulation/q4wine/Manifest | 1 + app-emulation/q4wine/q4wine-1.4.2.ebuild | 42 ++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/app-emulation/q4wine/Manifest b/app-emulation/q4wine/Manifest index aebf40eb05b4..982dd3dc8289 100644 --- a/app-emulation/q4wine/Manifest +++ b/app-emulation/q4wine/Manifest @@ -1 +1,2 @@ DIST q4wine-1.4.1.tar.gz 3197545 BLAKE2B d7a8d5bb80e412ce6b3ab301335e576e34445fb5c112213fab431c4666c159815931700a33cf14daa9d441caa3d7e05cf906e5ee3d357c3bf92c5ac7177c1a3e SHA512 7b2516117ea3f13a11f763b71a0026e034fa137b772a87ec7f15e12c7a79f463ed0dfdcef9a94320f87c8013256719592c2c6b44c7dac39d4e0da8e9fe54e413 +DIST q4wine-1.4.2.tar.gz 3196971 BLAKE2B c5b6f5fd34e1fe0e87e823d60b8cf5285d126b8c118ddce78e4bff544cc6b844874b92a77ace22a58beed839e498e2de33d0ae59c3488747f7133932011394f8 SHA512 a30b9bb33b6bf702fa24d10d52e844c9403790a4c98d34a84e7fc47325383fec6a165b48c05a215bcfc68fbb328cc15b5b3836c4ad58e575721e2157b00ec18d diff --git a/app-emulation/q4wine/q4wine-1.4.2.ebuild b/app-emulation/q4wine/q4wine-1.4.2.ebuild new file mode 100644 index 000000000000..ce080fe04efc --- /dev/null +++ b/app-emulation/q4wine/q4wine-1.4.2.ebuild @@ -0,0 +1,42 @@ +# 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] + dev-qt/qtsvg:6 + 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 +}
