diff options
Diffstat (limited to 'x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild')
-rw-r--r-- | x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild b/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild new file mode 100644 index 000000000000..625f4fc52bdf --- /dev/null +++ b/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme-extras/tango-icon-theme-extras-0.1.0-r1.ebuild,v 1.1 2007/02/21 19:43:13 drac Exp $ + +inherit eutils + +DESCRIPTION="This is an extension to the Tango Icon Theme. It includes Tango icons for iPod Digital Audio Player (DAP) devices and the Dell Pocket DJ DAP." +HOMEPAGE="http://tango-project.org/" +SRC_URI="http://tango-project.org/releases/${P}.tar.gz" + +LICENSE="CCPL-Attribution-ShareAlike-2.5" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="png" + +RESTRICT="binchecks strip" + +RDEPEND=">=x11-misc/icon-naming-utils-0.6.0 + media-gfx/imagemagick + >=gnome-base/librsvg-2.12.3" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +pkg_setup() { + if use png && ! built_with_use media-gfx/imagemagick png; then + die "Build media-gfx/imagemagick with USE=png." + fi +} + +src_compile() { + if use png; then + econf --enable-png-creation + else + econf + fi + + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || "emake install failed." + dodoc AUTHORS ChangeLog NEWS README +} |