Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/tangerine-icon-theme: ChangeLog tangerine-icon-theme-0.26.ebuild
Date: Sat, 29 Sep 2007 16:12:35
Message-Id: E1IbenC-0003cp-5P@stork.gentoo.org
1 drac 07/09/29 16:03:46
2
3 Modified: ChangeLog
4 Added: tangerine-icon-theme-0.26.ebuild
5 Log:
6 Version bump with Gentoo branding fixed wrt #193212, thanks to Pacho Ramos for reporting.
7 (Portage version: 2.1.3.11)
8
9 Revision Changes Path
10 1.11 x11-themes/tangerine-icon-theme/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/tangerine-icon-theme/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/tangerine-icon-theme/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/tangerine-icon-theme/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-themes/tangerine-icon-theme/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 22 Aug 2007 16:15:29 -0000 1.10
23 +++ ChangeLog 29 Sep 2007 16:03:45 -0000 1.11
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-themes/tangerine-icon-theme
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/tangerine-icon-theme/ChangeLog,v 1.10 2007/08/22 16:15:29 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/tangerine-icon-theme/ChangeLog,v 1.11 2007/09/29 16:03:45 drac Exp $
29 +
30 +*tangerine-icon-theme-0.26 (29 Sep 2007)
31 +
32 + 29 Sep 2007; Samuli Suominen <drac@g.o>
33 + +tangerine-icon-theme-0.26.ebuild:
34 + Version bump with Gentoo branding fixed wrt #193212, thanks to Pacho Ramos
35 + for reporting.
36
37 *tangerine-icon-theme-0.22 (22 Aug 2007)
38
39
40
41
42 1.1 x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tangerine-icon-theme-0.26.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild,v 1.1 2007/09/29 16:03:45 drac Exp $
52
53 inherit autotools eutils gnome2-utils
54
55 DESCRIPTION="a derivative of the standard Tango theme, using a more orange approach"
56 HOMEPAGE="http://packages.ubuntu.com/gutsy/x11/tangerine-icon-theme"
57 SRC_URI="http://archive.ubuntu.com/ubuntu/pool/main/t/${PN}/${PN}_${PV}.tar.gz
58 http://www.gentoo.org/images/gentoo-logo.svg"
59
60 LICENSE="CCPL-Attribution-ShareAlike-2.5"
61 SLOT="0"
62 KEYWORDS="~amd64 ~sparc ~x86"
63 IUSE="png"
64
65 RESTRICT="binchecks strip"
66
67 RDEPEND=">=x11-misc/icon-naming-utils-0.8.2
68 media-gfx/imagemagick
69 >=gnome-base/librsvg-2.12.3
70 >=x11-themes/gnome-icon-theme-2.18"
71 DEPEND="${RDEPEND}
72 >=dev-util/pkgconfig-0.19
73 >=dev-util/intltool-0.33
74 sys-devel/gettext"
75
76 pkg_setup() {
77 if use png && ! built_with_use media-gfx/imagemagick png; then
78 die "Build media-gfx/imagemagick with USE=png."
79 fi
80 }
81
82 src_unpack() {
83 unpack ${PN}_${PV}.tar.gz
84 cd "${S}"
85
86 cp "${DISTDIR}"/gentoo-logo.svg scalable/places/start-here.svg
87
88 for res in 16 22 32; do
89 rsvg -w ${res} -h ${res} scalable/places/start-here.svg ${res}x${res}/places/start-here.png
90 done
91
92 intltoolize --force --copy --automake || die "intltoolize failed."
93 eautoreconf
94 }
95
96 src_compile() {
97 econf $(use_enable png png-creation) \
98 $(use_enable png icon-framing)
99 emake || die "emake failed."
100 }
101
102 src_install() {
103 addwrite "/root/.gnome2"
104
105 emake DESTDIR="${D}" install || die "emake install failed."
106 dodoc AUTHORS ChangeLog README
107 }
108
109 pkg_postinst() {
110 gnome2_icon_cache_update
111 }
112
113 pkg_postrm() {
114 gnome2_icon_cache_update
115 }
116
117
118
119 --
120 gentoo-commits@g.o mailing list