# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.2.27.ebuild,v 1.1 2008/04/30 23:59:37 vapier Exp $ inherit autotools libtool multilib eutils DESCRIPTION="Portable Network Graphics library" HOMEPAGE="http://www.libpng.org/" SRC_URI="mirror://sourceforge/libpng/${P}.tar.lzma" 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="" RDEPEND="sys-libs/zlib" DEPEND="${RDEPEND} app-arch/lzma-utils" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${PN}-1.2.24-pngconf-setjmp.patch # bundled autotools are busted sed -i 's:$(ECHO):echo:' Makefile.am || die eautoreconf # So we get sane .so versioning on FreeBSD # elibtoolize } src_install() { emake DESTDIR="${D}" install || die dodoc ANNOUNCE CHANGES KNOWNBUG README TODO Y2KINFO } 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 }