diff options
author | Tim Harder <radhermit@gentoo.org> | 2015-08-27 03:04:28 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2015-08-27 03:06:26 -0400 |
commit | b633eb26595795d8221878becb1dae60cabc3fe5 (patch) | |
tree | df19d40b89195819a22b1aebd7b4173fcc6805ff /media-gfx/gif2png/gif2png-2.5.11.ebuild | |
parent | sys-libs/ncurses: add dummy package to bridge SLOT move #558856 (diff) | |
download | gentoo-b633eb26595795d8221878becb1dae60cabc3fe5.tar.gz gentoo-b633eb26595795d8221878becb1dae60cabc3fe5.tar.bz2 gentoo-b633eb26595795d8221878becb1dae60cabc3fe5.zip |
media-gfx/gif2png: version bump
Diffstat (limited to 'media-gfx/gif2png/gif2png-2.5.11.ebuild')
-rw-r--r-- | media-gfx/gif2png/gif2png-2.5.11.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/media-gfx/gif2png/gif2png-2.5.11.ebuild b/media-gfx/gif2png/gif2png-2.5.11.ebuild new file mode 100644 index 000000000000..796a94211a0a --- /dev/null +++ b/media-gfx/gif2png/gif2png-2.5.11.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit toolchain-funcs eutils + +DESCRIPTION="Converts images from gif format to png format" +HOMEPAGE="http://catb.org/~esr/gif2png/" +SRC_URI="http://catb.org/~esr/${PN}/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +RDEPEND=">=media-libs/libpng-1.2:0 + sys-libs/zlib" +DEPEND="${RDEPEND}" + +DOCS="AUTHORS NEWS README" + +src_prepare() { + epatch "${FILESDIR}"/${P}-makefile.patch + tc-export CC +} + +src_install() { + emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install +} |