diff options
author | Luis Medinas <metalgod@gentoo.org> | 2006-04-26 18:22:35 +0000 |
---|---|---|
committer | Luis Medinas <metalgod@gentoo.org> | 2006-04-26 18:22:35 +0000 |
commit | e49e7209dc30155998c73977a2222db1961fdf96 (patch) | |
tree | 0b0ee043a1bdc7810641c7b29d62c2e3007c1598 /x11-themes/tango-icon-theme | |
parent | Version Bump. (diff) | |
download | gentoo-2-e49e7209dc30155998c73977a2222db1961fdf96.tar.gz gentoo-2-e49e7209dc30155998c73977a2222db1961fdf96.tar.bz2 gentoo-2-e49e7209dc30155998c73977a2222db1961fdf96.zip |
Version Bump.
(Portage version: 2.1_pre9-r4)
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.7.2 | 3 | ||||
-rw-r--r-- | x11-themes/tango-icon-theme/tango-icon-theme-0.7.2.ebuild | 33 |
3 files changed, 43 insertions, 1 deletions
diff --git a/x11-themes/tango-icon-theme/ChangeLog b/x11-themes/tango-icon-theme/ChangeLog index eb15d0ca6862..6d72284cceda 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-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme/ChangeLog,v 1.16 2006/04/24 14:18:25 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/tango-icon-theme/ChangeLog,v 1.17 2006/04/26 18:22:35 metalgod Exp $ + +*tango-icon-theme-0.7.2 (26 Apr 2006) + + 26 Apr 2006; Luis Medinas <metalgod@gentoo.org> + +tango-icon-theme-0.7.2.ebuild: + Version Bump. 24 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org> tango-icon-theme-0.7.1.ebuild: diff --git a/x11-themes/tango-icon-theme/files/digest-tango-icon-theme-0.7.2 b/x11-themes/tango-icon-theme/files/digest-tango-icon-theme-0.7.2 new file mode 100644 index 000000000000..56cbc7a2137d --- /dev/null +++ b/x11-themes/tango-icon-theme/files/digest-tango-icon-theme-0.7.2 @@ -0,0 +1,3 @@ +MD5 eace48f8340a95d7134632bad6287100 tango-icon-theme-0.7.2.tar.gz 1349120 +RMD160 9f7bf0cb799d10253ea926ae76c28d87889777e9 tango-icon-theme-0.7.2.tar.gz 1349120 +SHA256 6b368373f9a01f3f33f77ac25c170cbd052b29d6910f72308e55dc0a39af7722 tango-icon-theme-0.7.2.tar.gz 1349120 diff --git a/x11-themes/tango-icon-theme/tango-icon-theme-0.7.2.ebuild b/x11-themes/tango-icon-theme/tango-icon-theme-0.7.2.ebuild new file mode 100644 index 000000000000..cb696625014d --- /dev/null +++ b/x11-themes/tango-icon-theme/tango-icon-theme-0.7.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2006 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.7.2.ebuild,v 1.1 2006/04/26 18:22:35 metalgod Exp $ + +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 ~sparc ~x86" +IUSE="png" + +RDEPEND=">=x11-misc/icon-naming-utils-0.7.2 + media-gfx/imagemagick + >=gnome-base/librsvg-2.12" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.20" + +src_compile() { + if use png; then + econf --enable-png-creation || die "configure failed" + else + econf || die "configure failed" + fi + + emake || die "make failed" +} +src_install() { + make DESTDIR=${D} install || die "make install failed" + dodoc AUTHORS ChangeLog COPYING NEWS README +} |