diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-07-14 17:22:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-07-14 17:22:15 +0000 |
commit | 3e1b50d0eea73b6c476e9731ee155159960e4fcc (patch) | |
tree | 4f8642e6cbc787c169e6a3d699a901ddd393182c /media-libs/libpng/libpng-1.2.18-r1.ebuild | |
parent | ppc stable (bug #184746) (diff) | |
download | gentoo-2-3e1b50d0eea73b6c476e9731ee155159960e4fcc.tar.gz gentoo-2-3e1b50d0eea73b6c476e9731ee155159960e4fcc.tar.bz2 gentoo-2-3e1b50d0eea73b6c476e9731ee155159960e4fcc.zip |
Add fix from upstream for gray handling #181318 by David Barnett and Steffen Wolf.
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'media-libs/libpng/libpng-1.2.18-r1.ebuild')
-rw-r--r-- | media-libs/libpng/libpng-1.2.18-r1.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-libs/libpng/libpng-1.2.18-r1.ebuild b/media-libs/libpng/libpng-1.2.18-r1.ebuild new file mode 100644 index 000000000000..7fddd56d33a5 --- /dev/null +++ b/media-libs/libpng/libpng-1.2.18-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.2.18-r1.ebuild,v 1.1 2007/07/14 17:22:15 vapier Exp $ + +inherit libtool multilib eutils + +DESCRIPTION="Portable Network Graphics library" +HOMEPAGE="http://www.libpng.org/" +SRC_URI="mirror://sourceforge/libpng/${P}.tar.bz2 + doc? ( http://www.libpng.org/pub/png/libpng-manual.txt )" + +LICENSE="as-is" +SLOT="1.2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="doc" + +DEPEND="sys-libs/zlib" + +src_unpack() { + unpack ${A} + cd "${S}" + use doc && cp "${WORKDIR}"/${PN}-manual.txt . + epatch "${FILESDIR}"/1.2.7-gentoo.diff + epatch "${FILESDIR}"/${P}-gray.patch #181318 + + # So we get sane .so versioning on FreeBSD + elibtoolize +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc ANNOUNCE CHANGES KNOWNBUG README TODO Y2KINFO + use doc && dodoc libpng-manual.txt +} + +pkg_postinst() { + # the libpng authors really screwed around between 1.2.1 and 1.2.3 + if [[ -f ${ROOT}/usr/$(get_libdir)/libpng.so.3.1.2.1 ]] ; then + rm -f "${ROOT}"/usr/$(get_libdir)/libpng.so.3.1.2.1 + fi +} |