diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-09-20 20:22:49 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-09-20 20:22:49 +0000 |
commit | 4f9da045a750a861a80857520559f6e20e341d05 (patch) | |
tree | 9fbc51ab54dc39d8ce70be20150c379d37b40b1d /x11-themes/tango-icon-theme | |
parent | Stable on ppc; bug #171787. (diff) | |
download | gentoo-2-4f9da045a750a861a80857520559f6e20e341d05.tar.gz gentoo-2-4f9da045a750a861a80857520559f6e20e341d05.tar.bz2 gentoo-2-4f9da045a750a861a80857520559f6e20e341d05.zip |
Version bump from upstream.
(Portage version: 2.1.3.9)
Diffstat (limited to 'x11-themes/tango-icon-theme')
-rw-r--r-- | x11-themes/tango-icon-theme/ChangeLog | 8 | ||||
-rw-r--r-- | x11-themes/tango-icon-theme/files/digest-tango-icon-theme-0.8.1 | 3 | ||||
-rw-r--r-- | x11-themes/tango-icon-theme/tango-icon-theme-0.8.1.ebuild | 52 |
3 files changed, 62 insertions, 1 deletions
diff --git a/x11-themes/tango-icon-theme/ChangeLog b/x11-themes/tango-icon-theme/ChangeLog index d9dd0be65721..0564822487b2 100644 --- a/x11-themes/tango-icon-theme/ChangeLog +++ b/x11-themes/tango-icon-theme/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/tango-icon-theme # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme/ChangeLog,v 1.35 2007/05/19 16:35:44 welp Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme/ChangeLog,v 1.36 2007/09/20 20:22:49 drac Exp $ + +*tango-icon-theme-0.8.1 (20 Sep 2007) + + 20 Sep 2007; Samuli Suominen <drac@gentoo.org> + +tango-icon-theme-0.8.1.ebuild: + Version bump. 19 May 2007; Peter Weller <welp@gentoo.org> tango-icon-theme-0.8.0.ebuild: Keyworded ~x86-fbsd diff --git a/x11-themes/tango-icon-theme/files/digest-tango-icon-theme-0.8.1 b/x11-themes/tango-icon-theme/files/digest-tango-icon-theme-0.8.1 new file mode 100644 index 000000000000..26567bdcb403 --- /dev/null +++ b/x11-themes/tango-icon-theme/files/digest-tango-icon-theme-0.8.1 @@ -0,0 +1,3 @@ +MD5 32d5258f448b5982af9cfa4364f31d41 tango-icon-theme-0.8.1.tar.gz 1812370 +RMD160 fce10c4ccd4f7cd90487a6e207315c59e3e926ff tango-icon-theme-0.8.1.tar.gz 1812370 +SHA256 17e64f2f5d7d8a358136a7003604cb60acaef47b083123956b12eb0ed9293055 tango-icon-theme-0.8.1.tar.gz 1812370 diff --git a/x11-themes/tango-icon-theme/tango-icon-theme-0.8.1.ebuild b/x11-themes/tango-icon-theme/tango-icon-theme-0.8.1.ebuild new file mode 100644 index 000000000000..f25f10a87b04 --- /dev/null +++ b/x11-themes/tango-icon-theme/tango-icon-theme-0.8.1.ebuild @@ -0,0 +1,52 @@ +# 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/tango-icon-theme-0.8.1.ebuild,v 1.1 2007/09/20 20:22:49 drac Exp $ + +inherit eutils gnome2-utils + +DESCRIPTION="SVG icon theme from the Tango project" +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 ~x86-fbsd" +IUSE="png" + +RESTRICT="binchecks strip" + +RDEPEND=">=x11-misc/icon-naming-utils-0.8.2 + media-gfx/imagemagick + >=gnome-base/librsvg-2.12.3 + >=x11-themes/hicolor-icon-theme-0.9" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.19 + >=dev-util/intltool-0.33 + sys-devel/gettext" + +pkg_setup() { + if use png && ! built_with_use media-gfx/imagemagick png; then + die "Build media-gfx/imagemagick with USE=png." + fi +} + +src_compile() { + econf $(use_enable png png-creation) \ + $(use_enable png icon-framing) + emake || die "emake failed." +} + +src_install() { + addwrite "/root/.gnome2" + + emake DESTDIR=${D} install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |