diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-05-22 03:19:53 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-05-22 03:19:53 +0000 |
commit | d60f5e5dc23c98aa9fc4b998db0a9500cc230c5c (patch) | |
tree | 70deb4a0fb27158a5c47812bab8183f774c670f3 /media-gfx | |
parent | Remove old. (diff) | |
download | gentoo-2-d60f5e5dc23c98aa9fc4b998db0a9500cc230c5c.tar.gz gentoo-2-d60f5e5dc23c98aa9fc4b998db0a9500cc230c5c.tar.bz2 gentoo-2-d60f5e5dc23c98aa9fc4b998db0a9500cc230c5c.zip |
Bump
(Portage version: 2.2.0_alpha176/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/icoutils/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/icoutils/icoutils-0.31.0.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/media-gfx/icoutils/ChangeLog b/media-gfx/icoutils/ChangeLog index 1de5af786ecf..2e79d13723a0 100644 --- a/media-gfx/icoutils/ChangeLog +++ b/media-gfx/icoutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/icoutils # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/ChangeLog,v 1.35 2013/03/17 17:54:09 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/ChangeLog,v 1.36 2013/05/22 03:19:53 patrick Exp $ + +*icoutils-0.31.0 (22 May 2013) + + 22 May 2013; Patrick Lauer <patrick@gentoo.org> +icoutils-0.31.0.ebuild: + Bump 17 Mar 2013; Markos Chandras <hwoarang@gentoo.org> metadata.xml: Add proxy-maintainers to metadata.xml diff --git a/media-gfx/icoutils/icoutils-0.31.0.ebuild b/media-gfx/icoutils/icoutils-0.31.0.ebuild new file mode 100644 index 000000000000..753ca3b23d56 --- /dev/null +++ b/media-gfx/icoutils/icoutils-0.31.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/icoutils/icoutils-0.31.0.ebuild,v 1.1 2013/05/22 03:19:53 patrick Exp $ + +EAPI=4 +inherit autotools eutils + +DESCRIPTION="A set of programs for extracting and converting images in icon and cursor files (.ico, .cur)" +HOMEPAGE="http://www.nongnu.org/icoutils/" +SRC_URI="mirror://nongnu/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="nls" + +RDEPEND=">=dev-lang/perl-5.6 + >=dev-perl/libwww-perl-5.64 + media-libs/libpng:0 + sys-libs/zlib + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.29.1-{locale,gettext}.patch + rm m4/po.m4* || die + cp /usr/share/aclocal/po.m4 m4/ + AT_M4DIR=m4 eautoreconf +} + +src_configure() { + econf $(use_enable nls) +} + +src_install() { + emake DESTDIR="${D}" mkinstalldirs="mkdir -p" install + dodoc AUTHORS ChangeLog NEWS README TODO +} |