Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/q4wine/
Date: Thu, 14 Feb 2019 23:06:54
Message-Id: 1550185592.351d831a47debd4443badf35c3a8859e0fb23d68.asturm@gentoo
1 commit: 351d831a47debd4443badf35c3a8859e0fb23d68
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 14 21:36:18 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 14 23:06:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=351d831a
7
8 app-emulation/q4wine: 1.3.11 version bump
9
10 Switch from gnome2-utils to xdg, EAPI-7 bump
11
12 Thanks-to: John Brezerk <brezerk <AT> gmail.com>
13 Closes: https://bugs.gentoo.org/665708
14 Package-Manager: Portage-2.3.60, Repoman-2.3.12
15 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
16
17 app-emulation/q4wine/Manifest | 1 +
18 app-emulation/q4wine/q4wine-1.3.11.ebuild | 58 +++++++++++++++++++++++++++++++
19 2 files changed, 59 insertions(+)
20
21 diff --git a/app-emulation/q4wine/Manifest b/app-emulation/q4wine/Manifest
22 index 79a90fcb685..1fab7409ce9 100644
23 --- a/app-emulation/q4wine/Manifest
24 +++ b/app-emulation/q4wine/Manifest
25 @@ -1 +1,2 @@
26 +DIST q4wine-1.3.11.tar.bz2 2868845 BLAKE2B 98893b1f65bcb8b8f301d7046a650658a9537849818fddf4803471a626f24d8c812867daec1f167b1fa5cdce9f9c0c50323d715ea06c51f3d52f85904257d2b0 SHA512 95ac66632bc46b10659e1d0e5f3c68b73934a85ddcc6582abd367d28f9949ad0ca732a5596db800bbc76b40ae7cf05fd95febf6d8b44db20cf710c2c1e23288f
27 DIST q4wine-1.3.6.tar.bz2 2867547 BLAKE2B b35a638e514108e4ee4be34b446a7d2d5ba00415d8f54cfee293988707b637d41945d3197a2132147e09d5a05153fd47a55701dcba358f3a2b3a2e6037f78aaa SHA512 1ff0ea2a4523fc5582ec67f5e305622653c4e387ac5f2cecde52289117ef879a60261fdbf9ddf421812765539124d4c5b6b37ff401530d3e061723a3c35d57f8
28
29 diff --git a/app-emulation/q4wine/q4wine-1.3.11.ebuild b/app-emulation/q4wine/q4wine-1.3.11.ebuild
30 new file mode 100644
31 index 00000000000..3466e650c02
32 --- /dev/null
33 +++ b/app-emulation/q4wine/q4wine-1.3.11.ebuild
34 @@ -0,0 +1,58 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit xdg cmake-utils
41 +
42 +# Upstream names the package PV-rX. We change that to
43 +# PV_pX so we can use portage revisions.
44 +MY_P=${PN}-${PV/_p/-r}
45 +
46 +DESCRIPTION="Qt GUI configuration tool for Wine"
47 +HOMEPAGE="https://q4wine.brezblock.org.ua/"
48 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
49 +
50 +LICENSE="GPL-3"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +IUSE="+dbus debug +ico +iso +wineappdb"
55 +
56 +BDEPEND="
57 + dev-qt/linguist-tools:5
58 +"
59 +DEPEND="
60 + dev-qt/qtcore:5
61 + dev-qt/qtgui:5
62 + dev-qt/qtnetwork:5
63 + dev-qt/qtsingleapplication[qt5(+),X]
64 + dev-qt/qtsql:5[sqlite]
65 + dev-qt/qtsvg:5
66 + dev-qt/qtwidgets:5
67 + dev-qt/qtxml:5
68 + dbus? ( dev-qt/qtdbus:5 )
69 + ico? ( >=media-gfx/icoutils-0.26.0 )
70 +"
71 +RDEPEND="${DEPEND}
72 + app-admin/sudo
73 + >=sys-apps/which-2.19
74 + iso? ( sys-fs/fuseiso )
75 +"
76 +
77 +S="${WORKDIR}"/${MY_P}
78 +
79 +DOCS=( AUTHORS ChangeLog README )
80 +
81 +src_configure() {
82 + local mycmakeargs=(
83 + -DDEBUG=$(usex debug ON OFF)
84 + -DWITH_ICOUTILS=$(usex ico ON OFF)
85 + -DWITH_SYSTEM_SINGLEAPP=ON
86 + -DWITH_WINEAPPDB=$(usex wineappdb ON OFF)
87 + -DUSE_BZIP2=OFF
88 + -DUSE_GZIP=OFF
89 + -DWITH_DBUS=$(usex dbus ON OFF)
90 + )
91 + cmake-utils_src_configure
92 +}