Gentoo Archives: gentoo-commits

From: Jimi Huotari <chiitoo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: app-emulation/q4wine/
Date: Fri, 15 Feb 2019 12:31:24
Message-Id: 1550233817.dc639be54875e4a3d2939fb224acd9bd7a6b47dc.chiitoo@gentoo
1 commit: dc639be54875e4a3d2939fb224acd9bd7a6b47dc
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 15 11:39:42 2019 +0000
4 Commit: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 12:30:17 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=dc639be5
7
8 app-emulation/q4wine: sync with the main Gentoo repo tree
9
10 Package-Manager: Portage-2.3.60, Repoman-2.3.12
11 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
12
13 app-emulation/q4wine/q4wine-9999.ebuild | 33 ++++++++++++---------------------
14 1 file changed, 12 insertions(+), 21 deletions(-)
15
16 diff --git a/app-emulation/q4wine/q4wine-9999.ebuild b/app-emulation/q4wine/q4wine-9999.ebuild
17 index 86ce27c3..65ba08af 100644
18 --- a/app-emulation/q4wine/q4wine-9999.ebuild
19 +++ b/app-emulation/q4wine/q4wine-9999.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 -inherit cmake-utils gnome2-utils xdg-utils git-r3
29 +inherit xdg cmake-utils git-r3
30
31 # Upstream names the package PV-rX. We change that to
32 # PV_pX so we can use portage revisions.
33 @@ -16,35 +16,36 @@ EGIT_REPO_URI="https://github.com/brezerk/q4wine.git"
34 LICENSE="GPL-3"
35 SLOT="0"
36 KEYWORDS=""
37 +
38 IUSE="+dbus debug +ico +iso +wineappdb"
39
40 -CDEPEND="
41 +BDEPEND="
42 + dev-qt/linguist-tools:5
43 +"
44 +DEPEND="
45 dev-qt/qtcore:5
46 dev-qt/qtgui:5
47 dev-qt/qtnetwork:5
48 - dev-qt/qtsingleapplication[qt5,X]
49 + dev-qt/qtsingleapplication[qt5(+),X]
50 dev-qt/qtsql:5[sqlite]
51 + dev-qt/qtsvg:5
52 dev-qt/qtwidgets:5
53 dev-qt/qtxml:5
54 dbus? ( dev-qt/qtdbus:5 )
55 ico? ( >=media-gfx/icoutils-0.26.0 )
56 "
57 -DEPEND="${CDEPEND}
58 - dev-qt/linguist-tools:5
59 -"
60 -RDEPEND="${CDEPEND}
61 +RDEPEND="${DEPEND}
62 app-admin/sudo
63 >=sys-apps/which-2.19
64 iso? ( sys-fs/fuseiso )
65 "
66
67 -S=${WORKDIR}/${MY_P}
68 +S="${WORKDIR}"/${MY_P}
69
70 DOCS=( AUTHORS ChangeLog README )
71
72 src_configure() {
73 local mycmakeargs=(
74 - -DQT5=ON
75 -DDEBUG=$(usex debug ON OFF)
76 -DWITH_ICOUTILS=$(usex ico ON OFF)
77 -DWITH_SYSTEM_SINGLEAPP=ON
78 @@ -55,13 +56,3 @@ src_configure() {
79 )
80 cmake-utils_src_configure
81 }
82 -
83 -pkg_postinst() {
84 - gnome2_icon_cache_update
85 - xdg_desktop_database_update
86 -}
87 -
88 -pkg_postrm() {
89 - gnome2_icon_cache_update
90 - xdg_desktop_database_update
91 -}