Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/q4wine/
Date: Sat, 30 Sep 2017 07:22:32
Message-Id: 1506756134.2232db11a0b833b75608503c329161f831d8d435.kensington@gentoo
1 commit: 2232db11a0b833b75608503c329161f831d8d435
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 30 06:36:39 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 30 07:22:14 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2232db11
7
8 app-emulation/q4wine: remove 1.3.4
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-emulation/q4wine/Manifest | 1 -
13 app-emulation/q4wine/q4wine-1.3.4.ebuild | 71 --------------------------------
14 2 files changed, 72 deletions(-)
15
16 diff --git a/app-emulation/q4wine/Manifest b/app-emulation/q4wine/Manifest
17 index c51497acbb5..8c45a50ff1f 100644
18 --- a/app-emulation/q4wine/Manifest
19 +++ b/app-emulation/q4wine/Manifest
20 @@ -1,2 +1 @@
21 -DIST q4wine-1.3.4.tar.bz2 3013860 SHA256 9862c9353964ed51802342896f6fd0ca3c1d759cc1b7161c8447d447e9b6b4bd SHA512 e5fa50ebf0c098a02d3ee9dfdd5b8ef16eef57f47bef9f43a9849ce7df2f8d66da3404e688b738ff8ccd01be63217d6352aaba803de2383b7e1b0ea1c3c6d565 WHIRLPOOL 5fa4b83da73dcee27e278b849573b1ea16d96cd5b8cb77c247ba70548fe0d78cae72d6adf55fb87c38b31c7d54e574fb6f9c5d00ff82bf759c33134bb4597938
22 DIST q4wine-1.3.5.tar.bz2 2862445 SHA256 aa48b0ea8ff504e341b3352194380aa256f6ac8a6a301e1bbf30196eec8d310c SHA512 54fb7bce28750cb71589f6a94658f61369c7777cf7865b71d2feea4ac1221714d861a781fbd1325ee3d21f124162fd2eedc2780ab2bd0af93864eefebcde5f4c WHIRLPOOL b52408ade21dab7203b3d8032e196a2e63f5a806f08fcd8fa6a1d839b4f457475b94d0962e29dbd0ac0a5a9bcaf9bd64786b2268af9b6fc446d1328baee3c1fe
23
24 diff --git a/app-emulation/q4wine/q4wine-1.3.4.ebuild b/app-emulation/q4wine/q4wine-1.3.4.ebuild
25 deleted file mode 100644
26 index 7f1fad63155..00000000000
27 --- a/app-emulation/q4wine/q4wine-1.3.4.ebuild
28 +++ /dev/null
29 @@ -1,71 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit cmake-utils fdo-mime gnome2-utils
36 -
37 -# Upstream names the package PV-rX. We change that to
38 -# PV_pX so we can use portage revisions.
39 -MY_P=${PN}-${PV/_p/-r}
40 -
41 -DESCRIPTION="Qt GUI configuration tool for Wine"
42 -HOMEPAGE="http://q4wine.brezblock.org.ua/"
43 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
44 -
45 -LICENSE="GPL-3"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="+dbus debug +ico +iso +wineappdb"
49 -
50 -CDEPEND="
51 - dev-qt/qtcore:5
52 - dev-qt/qtgui:5
53 - dev-qt/qtnetwork:5
54 - dev-qt/qtsingleapplication[qt5,X]
55 - dev-qt/qtsql:5[sqlite]
56 - dev-qt/qtwidgets:5
57 - dev-qt/qtxml:5
58 - dbus? ( dev-qt/qtdbus:5 )
59 -"
60 -DEPEND="${CDEPEND}
61 - dev-qt/linguist-tools:5
62 -"
63 -RDEPEND="${CDEPEND}
64 - app-admin/sudo
65 - >=sys-apps/which-2.19
66 - ico? ( >=media-gfx/icoutils-0.26.0 )
67 - iso? ( sys-fs/fuseiso )
68 -"
69 -
70 -S=${WORKDIR}/${MY_P}
71 -
72 -DOCS=( AUTHORS ChangeLog README )
73 -
74 -src_configure() {
75 - local mycmakeargs=(
76 - -DQT5=ON
77 - -DDEBUG=$(usex debug ON OFF)
78 - -DWITH_ICOUTILS=$(usex ico ON OFF)
79 - -DWITH_SYSTEM_SINGLEAPP=ON
80 - -DWITH_WINEAPPDB=$(usex wineappdb ON OFF)
81 - -DUSE_BZIP2=OFF
82 - -DUSE_GZIP=OFF
83 - -DWITH_DBUS=$(usex dbus ON OFF)
84 - )
85 - cmake-utils_src_configure
86 -}
87 -
88 -pkg_preinst() {
89 - gnome2_icon_savelist
90 -}
91 -
92 -pkg_postinst() {
93 - fdo-mime_desktop_database_update
94 - gnome2_icon_cache_update
95 -}
96 -
97 -pkg_postrm() {
98 - fdo-mime_desktop_database_update
99 - gnome2_icon_cache_update
100 -}