Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/goldendict: metadata.xml ChangeLog goldendict-0.9.0_p20100410.ebuild
Date: Wed, 29 Dec 2010 09:06:43
Message-Id: 20101229090633.7CC3520054@flycatcher.gentoo.org
1 pva 10/12/29 09:06:33
2
3 Added: metadata.xml ChangeLog
4 goldendict-0.9.0_p20100410.ebuild
5 Log:
6 Move from app-dicts per bug #347535, thank Rion for report.
7
8 (Portage version: 2.1.9.26/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 app-text/goldendict/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/goldendict/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/goldendict/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>qt</herd>
22 </pkgmetadata>
23
24
25
26
27 1.1 app-text/goldendict/ChangeLog
28
29 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/goldendict/ChangeLog?rev=1.1&view=markup
30 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/goldendict/ChangeLog?rev=1.1&content-type=text/plain
31
32 Index: ChangeLog
33 ===================================================================
34 # ChangeLog for app-text/goldendict
35 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
36 # $Header: /var/cvsroot/gentoo-x86/app-text/goldendict/ChangeLog,v 1.1 2010/12/29 09:06:33 pva Exp $
37
38 29 Dec 2010; Peter Volkov <pva@g.o>
39 +goldendict-0.9.0_p20100410.ebuild, +files/goldendict-0.9.0-gcc4.4.patch,
40 +metadata.xml:
41 Move from app-dicts per bug #347535, thank Rion for report.
42
43 06 Dec 2010; Alex Alexander <wired@g.o> -goldendict-0.9.0.ebuild:
44 old, depends on qt 4.5
45
46 *goldendict-0.9.0_p20100410 (10 Apr 2010)
47
48 10 Apr 2010; Ben de Groot <yngwin@g.o> goldendict-0.9.0.ebuild,
49 +goldendict-0.9.0_p20100410.ebuild:
50 Pin Qt version to 4.5 for 0.9.0, as per bug #313059. Adding snapshot
51 ebuild, based on the live git one in qting-edge overlay by Davide
52 Pesavento.
53
54 *goldendict-0.9.0 (23 Jan 2010)
55
56 23 Jan 2010; Markos Chandras <hwoarang@g.o>
57 +goldendict-0.9.0.ebuild, +files/goldendict-0.9.0-gcc4.4.patch,
58 +metadata.xml:
59 Initial ebuild of goldendict. Bug #264631
60
61
62
63
64 1.1 app-text/goldendict/goldendict-0.9.0_p20100410.ebuild
65
66 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/goldendict/goldendict-0.9.0_p20100410.ebuild?rev=1.1&view=markup
67 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/goldendict/goldendict-0.9.0_p20100410.ebuild?rev=1.1&content-type=text/plain
68
69 Index: goldendict-0.9.0_p20100410.ebuild
70 ===================================================================
71 # Copyright 1999-2010 Gentoo Foundation
72 # Distributed under the terms of the GNU General Public License v2
73 # $Header: /var/cvsroot/gentoo-x86/app-text/goldendict/goldendict-0.9.0_p20100410.ebuild,v 1.1 2010/12/29 09:06:33 pva Exp $
74
75 EAPI="3"
76 LANGSLONG="ar_SA bg_BG cs_CZ de_DE el_GR lt_LT ru_RU zh_CN"
77
78 inherit qt4-r2
79
80 DESCRIPTION="Feature-rich dictionary lookup program"
81 HOMEPAGE="http://goldendict.berlios.de/"
82 SRC_URI="http://omploader.org/vNDQ1cQ/${P}.tar.xz"
83
84 LICENSE="GPL-3"
85 SLOT="0"
86 KEYWORDS="~amd64 ~x86"
87 IUSE="debug kde"
88
89 RDEPEND=">=app-text/hunspell-1.2
90 media-libs/libogg
91 media-libs/libvorbis
92 sys-libs/zlib
93 x11-libs/libXtst
94 >=x11-libs/qt-core-4.5:4[exceptions]
95 >=x11-libs/qt-gui-4.5:4[exceptions]
96 >=x11-libs/qt-webkit-4.5:4[exceptions]
97 !kde? ( || (
98 >=x11-libs/qt-phonon-4.5:4[exceptions]
99 media-sound/phonon
100 ) )
101 kde? ( media-sound/phonon )"
102 DEPEND="${RDEPEND}
103 dev-util/pkgconfig"
104
105 src_install() {
106 qt4-r2_src_install
107
108 # install translations
109 insinto /usr/share/apps/${PN}/locale
110 for lang in ${LANGSLONG}; do
111 if use linguas_${lang%_*}; then
112 doins locale/${lang}.qm || die
113 fi
114 done
115 }