diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-09-24 09:25:54 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-09-24 10:53:45 +0200 |
commit | 24a3e726ba19b1b7b968dc5360323f7def17e650 (patch) | |
tree | 0b4039f0f1c7f16e332bee579974c93133f5ebdc /app-emulation/q4wine | |
parent | dev-python/matplotlib: Bump to 3.6.0 (diff) | |
download | gentoo-24a3e726ba19b1b7b968dc5360323f7def17e650.tar.gz gentoo-24a3e726ba19b1b7b968dc5360323f7def17e650.tar.bz2 gentoo-24a3e726ba19b1b7b968dc5360323f7def17e650.zip |
app-emulation/q4wine: 1.3.13 version bump
Closes: https://bugs.gentoo.org/849560
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-emulation/q4wine')
-rw-r--r-- | app-emulation/q4wine/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/q4wine/q4wine-1.3.13.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/app-emulation/q4wine/Manifest b/app-emulation/q4wine/Manifest index 354fecf5321e..1d7810cf0250 100644 --- a/app-emulation/q4wine/Manifest +++ b/app-emulation/q4wine/Manifest @@ -1 +1,2 @@ DIST q4wine-1.3.12.tar.bz2 2875348 BLAKE2B 0656574542c218163a0d7bef6d09459e7816a936f1d4c2fcf3ee15416aca23f6c97895b7f2f34e9a40b64f904cad579062ab173cc93f00c543a1ae861bf3f179 SHA512 c384c5c57b3bbea9f5ba2940e990c7ff28c9f410c9abd33fe1f17973b67bdf85dad4c74809ad3a225eaea49796221ab04e2e29dd81ea8ef7015e9b7adf9ab44e +DIST q4wine-1.3.13.tar.bz2 2862153 BLAKE2B ad70ec0c4122d7eb6acc14976fc8194e1250beadd38762f726ccb9f40fe0f61e5c46fa40727fd2323521db4ba01a759c678d5ead7cb247fdd2e7da6ae47d9e05 SHA512 1e364519889713192f39115093740827c96ee33092ac0a3ee6c548790fc380687481e999bfb0e9df725e6497877d6b3808714a698f794e97ad86c360d505509b diff --git a/app-emulation/q4wine/q4wine-1.3.13.ebuild b/app-emulation/q4wine/q4wine-1.3.13.ebuild new file mode 100644 index 000000000000..eef0589c6f36 --- /dev/null +++ b/app-emulation/q4wine/q4wine-1.3.13.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Upstream names the package PV-rX. We change that to +# PV_pX so we can use portage revisions. +MY_P=${PN}-${PV/_p/-r} +inherit cmake xdg + +DESCRIPTION="Qt GUI configuration tool for Wine" +HOMEPAGE="https://q4wine.brezblock.org.ua/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" +S="${WORKDIR}"/${MY_P} + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+dbus debug +ico +iso +wineappdb" + +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsingleapplication[qt5(+),X] + dev-qt/qtsql:5[sqlite] + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + dbus? ( dev-qt/qtdbus:5 ) + ico? ( >=media-gfx/icoutils-0.26.0 ) +" +RDEPEND="${DEPEND} + app-admin/sudo + >=sys-apps/which-2.19 + iso? ( sys-fs/fuseiso ) +" +BDEPEND="dev-qt/linguist-tools:5" + +DOCS=( AUTHORS ChangeLog README ) + +src_configure() { + local mycmakeargs=( + -DDEBUG=$(usex debug ON OFF) + -DWITH_ICOUTILS=$(usex ico ON OFF) + -DWITH_SYSTEM_SINGLEAPP=ON + -DWITH_WINEAPPDB=$(usex wineappdb ON OFF) + -DUSE_BZIP2=OFF + -DUSE_GZIP=OFF + -DWITH_DBUS=$(usex dbus ON OFF) + ) + cmake_src_configure +} |