blob: 0b16d0e95c414d93e640ee73019ca2099a7b12c6 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme/tango-icon-theme-0.8.90.ebuild,v 1.10 2010/07/08 02:01:01 ssuominen Exp $
EAPI=2
SLREV=1
inherit gnome2-utils
DESCRIPTION="SVG and PNG icon theme from the Tango project"
HOMEPAGE="http://tango.freedesktop.org"
SRC_URI="http://tango.freedesktop.org/releases/${P}.tar.gz
branding? ( http://pkg2.rogentos.ro/~noxis/distro/${CATEGORY}/fdo-icons-rogentos${SLREV}.tar.gz
http://bpr.bluepink.ro/~rogentos/distro/${CATEGORY}/fdo-icons-rogentos${SLREV}.tar.gz )"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="branding png"
RDEPEND=">=x11-themes/hicolor-icon-theme-0.12"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig
>=gnome-base/librsvg-2.12.3
|| ( media-gfx/imagemagick[png?] media-gfx/graphicsmagick[imagemagick,png?] )
sys-devel/gettext
>=x11-misc/icon-naming-utils-0.8.90"
RESTRICT="binchecks strip"
src_prepare() {
sed -i -e '/svgconvert_prog/s:rsvg:&-convert:' configure || die #413183
}
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
if use branding; then
# replace tango icon start-here.{png,svg} with Rogentos ones
for dir in "${D}"/usr/share/icons/Tango/*/places; do
base_dir=$(dirname "${dir}")
icon_dir=$(basename "${base_dir}")
rogentos_svg_file="${WORKDIR}"/fdo-icons-rogentos/scalable/places/start-here.svg
if [ "${icon_dir}" = "scalable" ]; then
cp "${rogentos_svg_file}" "${dir}/start-here.svg" || die
else
convert -background none -resize \
"${icon_dir}" "${rogentos_svg_file}" \
"${dir}/start-here.png" || die
fi
done
fi
}
pkg_preinst() {
gnome2_icon_savelist;
}
pkg_postinst() {
gnome2_icon_cache_update;
}
pkg_postrm() {
gnome2_icon_cache_update;
}
|