Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/gnome-themes: ChangeLog gnome-themes-2.28.1.ebuild
Date: Thu, 29 Oct 2009 22:41:53
Message-Id: E1N3dgk-0005vs-GS@stork.gentoo.org
1 eva 09/10/29 22:41:50
2
3 Modified: ChangeLog
4 Added: gnome-themes-2.28.1.ebuild
5 Log:
6 New version for GNOME 2.28.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.217 x11-themes/gnome-themes/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-themes/ChangeLog?rev=1.217&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-themes/ChangeLog?rev=1.217&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-themes/ChangeLog?r1=1.216&r2=1.217
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-themes/gnome-themes/ChangeLog,v
19 retrieving revision 1.216
20 retrieving revision 1.217
21 diff -u -r1.216 -r1.217
22 --- ChangeLog 24 Oct 2009 16:34:25 -0000 1.216
23 +++ ChangeLog 29 Oct 2009 22:41:49 -0000 1.217
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-themes/gnome-themes
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-themes/ChangeLog,v 1.216 2009/10/24 16:34:25 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-themes/ChangeLog,v 1.217 2009/10/29 22:41:49 eva Exp $
29 +
30 +*gnome-themes-2.28.1 (29 Oct 2009)
31 +
32 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
33 + +gnome-themes-2.28.1.ebuild:
34 + New version for GNOME 2.28.
35
36 24 Oct 2009; nixnut <nixnut@g.o> gnome-themes-2.26.3.1.ebuild:
37 ppc stable #281427
38
39
40
41 1.1 x11-themes/gnome-themes/gnome-themes-2.28.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-themes/gnome-themes-2.28.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-themes/gnome-themes-2.28.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnome-themes-2.28.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-themes/gnome-themes-2.28.1.ebuild,v 1.1 2009/10/29 22:41:49 eva Exp $
51
52 GCONF_DEBUG="no"
53
54 inherit eutils gnome2
55
56 DESCRIPTION="A set of GNOME themes, with sets for users with limited or low vision"
57 HOMEPAGE="http://www.gnome.org/"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
62 IUSE="accessibility"
63
64 RDEPEND=">=x11-libs/gtk+-2
65 >=x11-themes/gtk-engines-2.15.3"
66 DEPEND="${RDEPEND}
67 >=x11-misc/icon-naming-utils-0.8.7
68 >=dev-util/pkgconfig-0.19
69 >=dev-util/intltool-0.35"
70 # dev-perl/XML-LibXML is bug 266136
71
72 DOCS="AUTHORS ChangeLog NEWS README"
73
74 # This ebuild does not install any binaries
75 RESTRICT="binchecks strip"
76
77 pkg_setup() {
78 G2CONF="${G2CONF}
79 $(use_enable accessibility all-themes)
80 --disable-test-themes
81 --enable-icon-mapping"
82 }
83
84 src_unpack() {
85 gnome2_src_unpack
86
87 # Fix bashisms, bug #256337
88 epatch "${FILESDIR}/${PN}-2.24.3-bashism.patch"
89
90 # Do not build/install accessibility themes, bug #274515
91 if ! use accessibility; then
92 sed 's:HighContrast.*\\:\\:g' -i \
93 desktop-themes/Makefile.am desktop-themes/Makefile.in \
94 gtk-themes/Makefile.am gtk-themes/Makefile.in \
95 icon-themes/Makefile.am icon-themes/Makefile.in \
96 || die "sed 1 failed"
97 fi
98
99 # Fix intltoolize broken file, see upstream #577133
100 sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
101 || die "sed 2 failed"
102 }