Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/gnome-icon-theme: gnome-icon-theme-3.2.1.2.ebuild ChangeLog
Date: Sun, 30 Oct 2011 01:12:43
Message-Id: 20111030011231.870C72004B@flycatcher.gentoo.org
1 tetromino 11/10/30 01:12:31
2
3 Modified: ChangeLog
4 Added: gnome-icon-theme-3.2.1.2.ebuild
5 Log:
6 Bump to 3.2.1.2 from the gnome overlay.
7
8 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.206 x11-themes/gnome-icon-theme/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gnome-icon-theme/ChangeLog?rev=1.206&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gnome-icon-theme/ChangeLog?rev=1.206&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gnome-icon-theme/ChangeLog?r1=1.205&r2=1.206
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-themes/gnome-icon-theme/ChangeLog,v
20 retrieving revision 1.205
21 retrieving revision 1.206
22 diff -u -r1.205 -r1.206
23 --- ChangeLog 5 Oct 2011 17:38:11 -0000 1.205
24 +++ ChangeLog 30 Oct 2011 01:12:31 -0000 1.206
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-themes/gnome-icon-theme
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-icon-theme/ChangeLog,v 1.205 2011/10/05 17:38:11 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-icon-theme/ChangeLog,v 1.206 2011/10/30 01:12:31 tetromino Exp $
30 +
31 +*gnome-icon-theme-3.2.1.2 (30 Oct 2011)
32 +
33 + 30 Oct 2011; Alexandre Rostovtsev <tetromino@g.o>
34 + +gnome-icon-theme-3.2.1.2.ebuild:
35 + Bump to 3.2.1.2 from the gnome overlay.
36
37 05 Oct 2011; Kacper Kowalik <xarthisius@g.o>
38 gnome-icon-theme-3.0.0.ebuild:
39
40
41
42 1.1 x11-themes/gnome-icon-theme/gnome-icon-theme-3.2.1.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gnome-icon-theme/gnome-icon-theme-3.2.1.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gnome-icon-theme/gnome-icon-theme-3.2.1.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnome-icon-theme-3.2.1.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-icon-theme/gnome-icon-theme-3.2.1.2.ebuild,v 1.1 2011/10/30 01:12:31 tetromino Exp $
52
53 EAPI="4"
54 GCONF_DEBUG="no"
55
56 inherit gnome2 eutils autotools
57
58 DESCRIPTION="GNOME default icon theme"
59 HOMEPAGE="http://www.gnome.org/ http://people.freedesktop.org/~jimmac/icons/#git"
60
61 SRC_URI="${SRC_URI}
62 branding? ( http://www.mail-archive.com/tango-artists@×××××××××××××××××.org/msg00043/tango-gentoo-v1.1.tar.gz )"
63
64 LICENSE="LGPL-3 CCPL-Attribution-ShareAlike-3.0
65 branding? ( CCPL-Sampling-Plus-1.0 )"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
68 IUSE="branding"
69
70 RDEPEND=">=x11-themes/hicolor-icon-theme-0.10"
71 DEPEND="${RDEPEND}
72 >=x11-misc/icon-naming-utils-0.8.7
73 >=dev-util/pkgconfig-0.19
74 >=dev-util/intltool-0.40
75 sys-devel/gettext"
76
77 # This ebuild does not install any binaries
78 RESTRICT="binchecks strip"
79
80 # FIXME: double check potential LINGUAS problem
81 pkg_setup() {
82 DOCS="AUTHORS NEWS TODO"
83 G2CONF="${G2CONF}
84 --enable-icon-mapping
85 GTK_UPDATE_ICON_CACHE=$(type -p true)"
86 }
87
88 src_prepare() {
89 gnome2_src_prepare
90
91 if use branding; then
92 for i in 16 22 24 32 48; do
93 cp "${WORKDIR}"/tango-gentoo-v1.1/${i}x${i}/gentoo.png \
94 "${S}"/gnome//${i}x${i}/places/start-here.png \
95 || die "Copying gentoo logos failed"
96 done
97 fi
98
99 # Revert upstream commit that is wrongly updating icon cache, upstream bug #642449
100 EPATCH_OPTS="-R" epatch "${FILESDIR}/${PN}-2.91.7-update-cache.patch"
101 intltoolize --force --copy --automake || die "intltoolize failed"
102 eautoreconf
103 }