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-text/goldendict/
Date: Fri, 29 Sep 2017 03:47:06
Message-Id: 1506656810.763735ed7e001d9bb0e5b1dd33ca20c80618c615.kensington@gentoo
1 commit: 763735ed7e001d9bb0e5b1dd33ca20c80618c615
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 29 03:46:31 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 29 03:46:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=763735ed
7
8 app-text/goldendict: remove 1.0.1
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-text/goldendict/Manifest | 1 -
13 app-text/goldendict/goldendict-1.0.1.ebuild | 66 -----------------------------
14 2 files changed, 67 deletions(-)
15
16 diff --git a/app-text/goldendict/Manifest b/app-text/goldendict/Manifest
17 index 57ad4ccdc17..691e6189583 100644
18 --- a/app-text/goldendict/Manifest
19 +++ b/app-text/goldendict/Manifest
20 @@ -1,2 +1 @@
21 -DIST goldendict-1.0.1-src.tar.bz2 2705932 SHA256 b3fb0405a5edb38f02ef881b48c36e46e2eacf641b0caf8d99403f595a4be9a6 SHA512 6c35f804063e14ffc9fe9fbd86e710582c550d10fcabb83e7fb0f65ccad1e18eaa31578a96f0aea67276453239b8035f5a694c7d081f9a6f7a822d2b75ebce55 WHIRLPOOL f642692c5ac921d031e89a4512ac63eb665d5b3d02f2a4aea911566131188f877c173d4624eef073e3580e30d8291c1f0196d870738daf2be469783838305c4c
22 DIST goldendict-1.5.0_rc2.tar.gz 19413751 SHA256 bccee0a3d3902f8fa31e439e220a405065fff774e5f8c581be2b0743d3f83fde SHA512 b88067a90df42b07d926231f624be8796f031b872443a45f9744ceeea27f39325bc665090f773528a26ad8391ae2423a29c602068bf2cc4ed5870a07646d2362 WHIRLPOOL f385a8536360b9401a67284d95be65d98d5f6b57d5af73852f5ec1af95c4ce36c9903e9ed04dbd67e7bf035b5b6745378344cc5efbb4923ce4ea31988f95f6ff
23
24 diff --git a/app-text/goldendict/goldendict-1.0.1.ebuild b/app-text/goldendict/goldendict-1.0.1.ebuild
25 deleted file mode 100644
26 index 8f0569d6aa3..00000000000
27 --- a/app-text/goldendict/goldendict-1.0.1.ebuild
28 +++ /dev/null
29 @@ -1,66 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -PLOCALES="ar_SA bg_BG cs_CZ de_DE el_GR it_IT lt_LT ru_RU uk_UA vi_VN zh_CN"
35 -
36 -inherit l10n qt4-r2
37 -
38 -DESCRIPTION="Feature-rich dictionary lookup program"
39 -HOMEPAGE="http://goldendict.org/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="debug"
46 -
47 -RDEPEND="
48 - >=app-text/hunspell-1.2
49 - media-libs/libogg
50 - media-libs/libvorbis
51 - media-libs/phonon[qt4]
52 - sys-libs/zlib
53 - x11-libs/libX11
54 - x11-libs/libXtst
55 - >=dev-qt/qtcore-4.5:4[exceptions,qt3support]
56 - >=dev-qt/qtgui-4.5:4[exceptions,qt3support]
57 - >=dev-qt/qtwebkit-4.5:4[exceptions]
58 -"
59 -DEPEND="${RDEPEND}
60 - virtual/pkgconfig
61 -"
62 -
63 -S=${WORKDIR}
64 -
65 -PATCHES=( "${FILESDIR}/${P}-gcc-4.7.patch" )
66 -
67 -src_prepare() {
68 - qt4-r2_src_prepare
69 -
70 - l10n_for_each_disabled_locale_do editpro
71 -
72 - # do not install duplicates
73 - sed -e '/[icon,desktop]s2/d' -i ${PN}.pro || die
74 -
75 - # fix desktop file
76 - sed -e '/^Categories=/s/;Applications$/;/' -i redist/${PN}.desktop || die
77 -}
78 -
79 -src_configure() {
80 - PREFIX="${EPREFIX}"/usr eqmake4
81 -}
82 -
83 -src_install() {
84 - qt4-r2_src_install
85 - l10n_for_each_locale_do insqm
86 -}
87 -
88 -editpro() {
89 - sed -e "s;locale/${1}.ts;;" -i ${PN}.pro || die
90 -}
91 -
92 -insqm() {
93 - insinto /usr/share/apps/${PN}/locale
94 - doins locale/${1}.qm
95 -}