summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2010-02-21 11:56:09 +0000
committerPatrick Lauer <patrick@gentoo.org>2010-02-21 11:56:09 +0000
commita54f0d7e01a836c9ac92db87dc26570f8c4b9da2 (patch)
tree1cc5059a696d300fa1d9ca77702183ad8870e72e /media-gfx/icoutils
parentStable on amd64 wrt bug #304285 (diff)
downloadgentoo-2-a54f0d7e01a836c9ac92db87dc26570f8c4b9da2.tar.gz
gentoo-2-a54f0d7e01a836c9ac92db87dc26570f8c4b9da2.tar.bz2
gentoo-2-a54f0d7e01a836c9ac92db87dc26570f8c4b9da2.zip
Bump for #305743
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/icoutils')
-rw-r--r--media-gfx/icoutils/ChangeLog9
-rw-r--r--media-gfx/icoutils/icoutils-0.29.0.ebuild32
2 files changed, 39 insertions, 2 deletions
diff --git a/media-gfx/icoutils/ChangeLog b/media-gfx/icoutils/ChangeLog
index 88e0abff5f84..6bdfef1ea4b5 100644
--- a/media-gfx/icoutils/ChangeLog
+++ b/media-gfx/icoutils/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-gfx/icoutils
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/ChangeLog,v 1.18 2007/04/08 21:41:40 welp Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/ChangeLog,v 1.19 2010/02/21 11:56:09 patrick Exp $
+
+*icoutils-0.29.0 (21 Feb 2010)
+
+ 21 Feb 2010; Patrick Lauer <patrick@gentoo.org> +icoutils-0.29.0.ebuild:
+ Bump for #305743
08 Apr 2007; Peter Weller <welp@gentoo.org> icoutils-0.26.0.ebuild:
Stable on amd64 wrt bug 169939
diff --git a/media-gfx/icoutils/icoutils-0.29.0.ebuild b/media-gfx/icoutils/icoutils-0.29.0.ebuild
new file mode 100644
index 000000000000..00b7f8351124
--- /dev/null
+++ b/media-gfx/icoutils/icoutils-0.29.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/icoutils-0.29.0.ebuild,v 1.1 2010/02/21 11:56:09 patrick Exp $
+
+DESCRIPTION="A set of programs for extracting and converting images in Microsoft Windows icon and cursor files (.ico, .cur)."
+HOMEPAGE="http://www.nongnu.org/icoutils/"
+SRC_URI="http://savannah.nongnu.org/download/icoutils/${P}.tar.bz2"
+
+KEYWORDS="~amd64 ~ppc ~x86"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="nls"
+
+RDEPEND="media-libs/libpng
+ nls? ( virtual/libintl )
+ >=dev-lang/perl-5.6
+ >=dev-perl/libwww-perl-5.64"
+
+DEPEND="${RDEPEND}
+ nls? ( sys-devel/gettext )"
+
+src_compile() {
+ econf \
+ `use_enable nls` \
+ --disable-dependency-tracking || die
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
+}