blob: f4c0380e2b366bd493ea853ac6e82a8e07330f2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild,v 1.6 2010/04/02 14:56:10 ssuominen Exp $
EAPI=2
inherit autotools gnome2-utils
DESCRIPTION="a derivative of the standard Tango theme, using a more orange approach"
HOMEPAGE="http://packages.ubuntu.com/gutsy/x11/tangerine-icon-theme"
SRC_URI="http://archive.ubuntu.com/ubuntu/pool/main/t/${PN}/${PN}_${PV}.tar.gz
http://www.gentoo.org/images/gentoo-logo.svg"
LICENSE="CCPL-Attribution-ShareAlike-2.5"
SLOT="0"
KEYWORDS="amd64 sparc x86"
IUSE="png"
RDEPEND=">=x11-themes/gnome-icon-theme-2.24"
DEPEND=">=gnome-base/librsvg-2.12.3
media-gfx/imagemagick[png?]
>=x11-misc/icon-naming-utils-0.8.2
dev-util/pkgconfig
dev-util/intltool
sys-devel/gettext"
RESTRICT="binchecks strip"
src_unpack() { unpack ${PN}_${PV}.tar.gz; }
src_prepare() {
cp "${DISTDIR}"/gentoo-logo.svg scalable/places/start-here.svg \
|| die "cp failed"
for res in 16 22 32; do
rsvg -w ${res} -h ${res} scalable/places/start-here.svg \
${res}x${res}/places/start-here.png || die
done
intltoolize --force --copy --automake || die
eautoreconf
}
src_configure() {
econf \
$(use_enable png png-creation) \
$(use_enable png icon-framing)
}
src_install() {
addwrite /root/.gnome2
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog README
}
pkg_preinst() { gnome2_icon_savelist; }
pkg_postinst() { gnome2_icon_cache_update; }
pkg_postrm() { gnome2_icon_cache_update; }
|