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-dicts/stardict: ChangeLog stardict-3.0.1-r1.ebuild
Date: Tue, 29 Apr 2008 08:24:28
Message-Id: E1Jql8T-00079M-GS@stork.gentoo.org
1 pva 08/04/29 08:24:25
2
3 Modified: ChangeLog stardict-3.0.1-r1.ebuild
4 Log:
5 Changed ordering of use ... and built_with_use ... to avoid built_with_use checks on nonexistent packages, bug #219631, thank Martin Väth for report.
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.45 app-dicts/stardict/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/stardict/ChangeLog?rev=1.45&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/stardict/ChangeLog?rev=1.45&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/stardict/ChangeLog?r1=1.44&r2=1.45
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-dicts/stardict/ChangeLog,v
18 retrieving revision 1.44
19 retrieving revision 1.45
20 diff -u -r1.44 -r1.45
21 --- ChangeLog 28 Apr 2008 11:17:59 -0000 1.44
22 +++ ChangeLog 29 Apr 2008 08:24:24 -0000 1.45
23 @@ -1,6 +1,11 @@
24 # ChangeLog for app-dicts/stardict
25 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/ChangeLog,v 1.44 2008/04/28 11:17:59 pva Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/ChangeLog,v 1.45 2008/04/29 08:24:24 pva Exp $
28 +
29 + 29 Apr 2008; Peter Volkov <pva@g.o> stardict-3.0.1-r1.ebuild:
30 + Changed ordering of use ... and built_with_use ... to avoid built_with_use
31 + checks on nonexistent packages, bug #219631, thank Martin Väth for
32 + report.
33
34 28 Apr 2008; Peter Volkov <pva@g.o> metadata.xml:
35 moved to app-dicts herd, added longdescription.
36
37
38
39 1.3 app-dicts/stardict/stardict-3.0.1-r1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/stardict/stardict-3.0.1-r1.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/stardict/stardict-3.0.1-r1.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/stardict/stardict-3.0.1-r1.ebuild?r1=1.2&r2=1.3
44
45 Index: stardict-3.0.1-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-dicts/stardict/stardict-3.0.1-r1.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- stardict-3.0.1-r1.ebuild 28 Apr 2008 15:57:25 -0000 1.2
52 +++ stardict-3.0.1-r1.ebuild 29 Apr 2008 08:24:24 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/stardict-3.0.1-r1.ebuild,v 1.2 2008/04/28 15:57:25 mr_bones_ Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/stardict-3.0.1-r1.ebuild,v 1.3 2008/04/29 08:24:24 pva Exp $
58
59 inherit gnome2 eutils autotools
60
61 @@ -40,12 +40,11 @@
62 dev-util/pkgconfig"
63
64 pkg_setup() {
65 - built_with_use gnome-base/libgnome esd || \
66 - if use gnome && use pronounce; then
67 - ewarn 'Note, being built with USE="gnome" stardict uses gnome_sound_play()'
68 - ewarn 'to play RealPeopleTTS sounds, which plays sounds only in case'
69 - ewarn 'gnome-base/libgnome was built with USE="esd".'
70 - fi
71 + if (use gnome && use pronounce && ! built_with_use gnome-base/libgnome esd); then
72 + ewarn 'Note, being built with USE="gnome" stardict uses gnome_sound_play()'
73 + ewarn 'to play RealPeopleTTS sounds, which plays sounds only in case'
74 + ewarn 'gnome-base/libgnome was built with USE="esd".'
75 + fi
76 }
77
78 src_unpack() {
79
80
81
82 --
83 gentoo-commits@l.g.o mailing list