Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: stardict.eclass
Date: Thu, 27 Mar 2008 13:56:45
Message-Id: E1Jesaw-0008Nx-Ct@stork.gentoo.org
1 pva 08/03/27 13:56:42
2
3 Modified: stardict.eclass
4 Log:
5 Removed KEWORDS from stardict eclass, bug #163833, thank Alexander Færøy for report. Fixed unsafe locale-dependent patterns usage, bug #205781, thank Jakub Moc for report. Raised version of stardict in DEPEND (2.1->2.4.2) as we don't have <stardict-2.4.2 in the tree and don't support that old dictionary format. Small quotation fix.
6
7 Revision Changes Path
8 1.13 eclass/stardict.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/stardict.eclass?rev=1.13&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/stardict.eclass?rev=1.13&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/stardict.eclass?r1=1.12&r2=1.13
13
14 Index: stardict.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/stardict.eclass,v
17 retrieving revision 1.12
18 retrieving revision 1.13
19 diff -u -r1.12 -r1.13
20 --- stardict.eclass 2 Jul 2007 14:24:27 -0000 1.12
21 +++ stardict.eclass 27 Mar 2008 13:56:41 -0000 1.13
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2004 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/stardict.eclass,v 1.12 2007/07/02 14:24:27 peper Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/stardict.eclass,v 1.13 2008/03/27 13:56:41 pva Exp $
27
28 # Author : Alastair Tse <liquidx@g.o>
29 #
30 @@ -16,7 +16,7 @@
31
32 RESTRICT="strip"
33
34 -[ -z "${DICT_SUFFIX}" ] && DICT_SUFFIX=${PN#stardict-[a-z]*-}
35 +[ -z "${DICT_SUFFIX}" ] && DICT_SUFFIX=${PN#stardict-[[:lower:]]*-}
36 [ -z "${DICT_P}" ] && DICT_P=stardict-${DICT_PREFIX}${DICT_SUFFIX}-${PV}
37
38 if [ -n "${FROM_LANG}" -a -n "${TO_LANG}" ]; then
39 @@ -31,9 +31,8 @@
40 IUSE=""
41 SLOT="0"
42 LICENSE="GPL-2"
43 -KEYWORDS="~sparc ~x86"
44
45 -DEPEND=">=app-dicts/stardict-2.1"
46 +DEPEND=">=app-dicts/stardict-2.4.2"
47
48 S=${WORKDIR}/${DICT_P}
49
50 @@ -42,7 +41,7 @@
51 }
52
53 stardict_src_install() {
54 - cd ${S}
55 + cd "${S}"
56 insinto /usr/share/stardict/dic
57 doins *.dict.dz
58 doins *.idx*
59
60
61
62 --
63 gentoo-commits@l.g.o mailing list