Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/gnome-colors-common: metadata.xml ChangeLog gnome-colors-common-5.5.1.ebuild
Date: Tue, 09 Feb 2010 13:19:33
Message-Id: E1Neq02-0007kP-M4@stork.gentoo.org
1 pacho 10/02/09 13:19:30
2
3 Added: metadata.xml ChangeLog
4 gnome-colors-common-5.5.1.ebuild
5 Log:
6 Ebuilds for gnome-colors stuff
7 (Portage version: 2.1.7.16/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 x11-themes/gnome-colors-common/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-colors-common/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-colors-common/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>desktop-misc</herd>
21 <maintainer>
22 <email>pacho@g.o</email>
23 <name>Pacho Ramos</name>
24 </maintainer>
25 </pkgmetadata>
26
27
28 1.1 x11-themes/gnome-colors-common/ChangeLog
29
30 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-colors-common/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-colors-common/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for x11-themes/gnome-colors-common
36 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-colors-common/ChangeLog,v 1.1 2010/02/09 13:19:29 pacho Exp $
38
39 *gnome-colors-common-5.5.1 (09 Feb 2010)
40
41 09 Feb 2010; Pacho Ramos <pacho@g.o>
42 +gnome-colors-common-5.5.1.ebuild, +metadata.xml:
43 New ebuilds for gnome-colors iconsets, this one is for shared icons
44
45
46
47
48 1.1 x11-themes/gnome-colors-common/gnome-colors-common-5.5.1.ebuild
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-colors-common/gnome-colors-common-5.5.1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/gnome-colors-common/gnome-colors-common-5.5.1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: gnome-colors-common-5.5.1.ebuild
54 ===================================================================
55 # Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-colors-common/gnome-colors-common-5.5.1.ebuild,v 1.1 2010/02/09 13:19:29 pacho Exp $
58
59 EAPI=2
60 inherit gnome2-utils
61
62 DESCRIPTION="Colorized icons shared between all gnome-colors iconsets"
63 HOMEPAGE="http://code.google.com/p/gnome-colors/"
64
65 SRC_URI="http://gnome-colors.googlecode.com/files/gnome-colors-${PV}.tar.gz
66 branding? ( http://www.mail-archive.com/tango-artists@×××××××××××××××××.org/msg00043/tango-gentoo-v1.1.tar.gz )"
67
68 LICENSE="GPL-2 public-domain"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="+branding"
72
73 RDEPEND="x11-themes/gnome-icon-theme"
74 DEPEND=""
75 RESTRICT="binchecks strip"
76
77 src_prepare() {
78 if use branding; then
79 for i in 16 22 24 32 ; do
80 cp tango-gentoo-v1.1/${i}x${i}/gentoo.png \
81 gnome-colors-common/${i}x${i}/places/start-here.png \
82 || die "Copying gentoo logos failed"
83 done
84 cp tango-gentoo-v1.1/scalable/gentoo.svg \
85 gnome-colors-common/scalable/places/start-here.svg \
86 || die "Copying scalable logo failed"
87 fi
88 }
89
90 src_compile() {
91 einfo "Nothing to compile"
92 }
93
94 src_install() {
95 dodir /usr/share/icons
96 insinto /usr/share/icons
97 doins -r "${WORKDIR}/${PN}" || die "Installing icons failed"
98 dodoc AUTHORS ChangeLog README
99 }
100
101 pkg_preinst() {
102 gnome2_icon_savelist
103 }
104
105 pkg_postinst() {
106 gnome2_icon_cache_update
107 }
108
109 pkg_postrm() {
110 gnome2_icon_cache_update
111 }