| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme/tango-icon-theme-0.8.90.ebuild,v 1.14 2012/04/23 05:19:26 ssuominen Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
inherit gnome2-utils
|
| 7 |
|
| 8 |
DESCRIPTION="SVG and PNG icon theme from the Tango project"
|
| 9 |
HOMEPAGE="http://tango.freedesktop.org"
|
| 10 |
SRC_URI="http://tango.freedesktop.org/releases/${P}.tar.gz"
|
| 11 |
|
| 12 |
LICENSE="public-domain"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
| 15 |
IUSE="png"
|
| 16 |
|
| 17 |
RDEPEND=">=x11-themes/hicolor-icon-theme-0.12"
|
| 18 |
DEPEND="${RDEPEND}
|
| 19 |
dev-util/intltool
|
| 20 |
virtual/pkgconfig
|
| 21 |
>=gnome-base/librsvg-2.34
|
| 22 |
|| ( media-gfx/imagemagick[png?] media-gfx/graphicsmagick[imagemagick,png?] )
|
| 23 |
sys-devel/gettext
|
| 24 |
>=x11-misc/icon-naming-utils-0.8.90"
|
| 25 |
|
| 26 |
RESTRICT="binchecks strip"
|
| 27 |
|
| 28 |
DOCS="AUTHORS ChangeLog README"
|
| 29 |
|
| 30 |
src_prepare() {
|
| 31 |
sed -i -e '/svgconvert_prog/s:rsvg:&-convert:' configure || die #413183
|
| 32 |
}
|
| 33 |
|
| 34 |
src_configure() {
|
| 35 |
econf \
|
| 36 |
$(use_enable png png-creation) \
|
| 37 |
$(use_enable png icon-framing)
|
| 38 |
}
|
| 39 |
|
| 40 |
src_install() {
|
| 41 |
addwrite /root/.gnome2
|
| 42 |
default
|
| 43 |
}
|
| 44 |
|
| 45 |
pkg_preinst() { gnome2_icon_savelist; }
|
| 46 |
pkg_postinst() { gnome2_icon_cache_update; }
|
| 47 |
pkg_postrm() { gnome2_icon_cache_update; }
|