diff options
Diffstat (limited to 'media-libs/libpng/libpng-1.2.7-r1.ebuild')
-rw-r--r-- | media-libs/libpng/libpng-1.2.7-r1.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/media-libs/libpng/libpng-1.2.7-r1.ebuild b/media-libs/libpng/libpng-1.2.7-r1.ebuild new file mode 100644 index 000000000000..692ca49e27c2 --- /dev/null +++ b/media-libs/libpng/libpng-1.2.7-r1.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.2.7-r1.ebuild,v 1.1 2004/11/20 03:58:17 usata Exp $ + +inherit flag-o-matic eutils gcc + +DESCRIPTION="Portable Network Graphics library" +HOMEPAGE="http://www.libpng.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="as-is" +SLOT="1.2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~ppc-macos ~s390 ~sparc ~x86" +IUSE="" + +DEPEND="sys-libs/zlib" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-png_do_strip_filler.diff" + epatch "${FILESDIR}/${PV}-gentoo.diff" + + if [ "$(gcc-version)" == "3.3" -o "$(gcc-version)" == "3.2" ] ; then + replace-cpu-flags k6 k6-2 k6-3 i586 + fi + + if use ppc-macos ; then + epatch "${FILESDIR}/macos.patch" # implements strnlen + sed \ + -e "s:ZLIBLIB=.*:ZLIBLIB=/usr/$(get_libdir):" \ + -e "s:ZLIBINC=.*:ZLIBINC=/usr/include:" \ + -e "s:-O3:${CFLAGS}:" \ + -e "s:prefix=/usr/local:prefix=/usr:" \ + scripts/makefile.darwin > Makefile + else + sed \ + -e "s:ZLIBLIB=.*:ZLIBLIB=/usr/$(get_libdir):" \ + -e "s:ZLIBINC=.*:ZLIBINC=/usr/include:" \ + -e "s:-O3:${CFLAGS}:" \ + -e "s:prefix=/usr/local:prefix=/usr:" \ + -e "s:OBJSDLL = :OBJSDLL = -lz -lm :" \ + scripts/makefile.linux > Makefile + fi +} + +src_compile() { + emake \ + CC="$(gcc-getCC)" \ + CXX="$(gcc-getCXX)" \ + || die "emake failed" +} + +src_install() { + dodir /usr/include /usr/$(get_libdir) /usr/share/man + make DESTDIR="${D}" MANPATH="/usr/share/man" LIBPATH="/usr/$(get_libdir)" install || die + doman libpng.3 libpngpf.3 png.5 + 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 "${ROOT}/usr/$(get_libdir)/libpng.so.3.1.2.1" + fi +} |