Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/q4wine: q4wine-1.1_p1.ebuild ChangeLog
Date: Sun, 01 Dec 2013 12:26:11
Message-Id: 20131201122607.C8C792004B@flycatcher.gentoo.org
1 hwoarang 13/12/01 12:26:07
2
3 Modified: ChangeLog
4 Added: q4wine-1.1_p1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
9
10 Revision Changes Path
11 1.46 app-emulation/q4wine/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/q4wine/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/q4wine/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/q4wine/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/q4wine/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 16 Nov 2013 11:29:23 -0000 1.45
24 +++ ChangeLog 1 Dec 2013 12:26:07 -0000 1.46
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emulation/q4wine
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/q4wine/ChangeLog,v 1.45 2013/11/16 11:29:23 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/q4wine/ChangeLog,v 1.46 2013/12/01 12:26:07 hwoarang Exp $
30 +
31 +*q4wine-1.1_p1 (01 Dec 2013)
32 +
33 + 01 Dec 2013; Markos Chandras <hwoarang@g.o> +q4wine-1.1_p1.ebuild:
34 + Version bump
35
36 *q4wine-1.1 (15 Nov 2013)
37
38
39
40
41 1.1 app-emulation/q4wine/q4wine-1.1_p1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/q4wine/q4wine-1.1_p1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/q4wine/q4wine-1.1_p1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: q4wine-1.1_p1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emulation/q4wine/q4wine-1.1_p1.ebuild,v 1.1 2013/12/01 12:26:07 hwoarang Exp $
51
52 EAPI="4"
53 LANGS="cs de en es fa he it ru uk pl pt af"
54
55 inherit cmake-utils
56
57 # Upstream names the package PV-rX. We need to fix that to
58 # PV_pX so we can use portage revisions.
59 MY_PV="${PV/_p/-r}"
60 MY_P="${PN}-${MY_PV}"
61 DESCRIPTION="Qt4 GUI configuration tool for Wine"
62 HOMEPAGE="http://q4wine.brezblock.org.ua/"
63 SRC_URI="mirror://sourceforge/${PN}/${PN}/${PN}%20${MY_PV}/${MY_P}.tar.bz2"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="debug +icoutils +wineappdb -dbus gnome kde"
69
70 for x in ${LANGS}; do
71 IUSE+=" linguas_${x}"
72 done
73
74 CDEPEND="dev-qt/qtgui:4
75 dev-qt/qtsingleapplication
76 dev-qt/qtsql:4[sqlite]"
77
78 DEPEND="${CDEPEND}
79 dev-util/cmake"
80
81 RDEPEND="${CDEPEND}
82 app-admin/sudo
83 app-emulation/wine
84 >=sys-apps/which-2.19
85 icoutils? ( >=media-gfx/icoutils-0.26.0 )
86 sys-fs/fuseiso
87 kde? ( kde-base/kdesu )
88 gnome? ( x11-libs/gksu )
89 dbus? ( dev-qt/qtdbus:4 )"
90
91 DOCS="README AUTHORS ChangeLog"
92
93 S="${WORKDIR}/${MY_P}"
94
95 src_configure() {
96 mycmakeargs="${mycmakeargs} \
97 -DWITH_SYSTEM_SINGLEAPP=ON \
98 $(cmake-utils_use debug DEBUG) \
99 $(cmake-utils_use_with icoutils ICOUTILS) \
100 $(cmake-utils_use_with wineappdb WINEAPPDB) \
101 $(cmake-utils_use_with dbus DBUS)"
102
103 cmake-utils_src_configure
104 }
105
106 src_install() {
107 cmake-utils_src_install
108 for x in ${LANGS}; do
109 if ! has ${x} ${LINGUAS}; then
110 find "${D}" -name "${PN}_${x}*.qm" -exec rm {} \;
111 fi
112 done
113 }