diff options
author | 2002-04-12 18:53:03 +0000 | |
---|---|---|
committer | 2002-04-12 18:53:03 +0000 | |
commit | 002e107288e894d0998b9439c884510df3733b48 (patch) | |
tree | a28746c6b290928bb82a50e0e1b9500f097b0694 /media-libs/imlib2 | |
parent | dependency update (diff) | |
download | gentoo-2-002e107288e894d0998b9439c884510df3733b48.tar.gz gentoo-2-002e107288e894d0998b9439c884510df3733b48.tar.bz2 gentoo-2-002e107288e894d0998b9439c884510df3733b48.zip |
Recompile against libpng-1.2.1
Diffstat (limited to 'media-libs/imlib2')
-rw-r--r-- | media-libs/imlib2/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/imlib2/files/digest-imlib2-1.0.5-r1 | 1 | ||||
-rw-r--r-- | media-libs/imlib2/imlib2-1.0.5-r1.ebuild | 32 |
3 files changed, 40 insertions, 1 deletions
diff --git a/media-libs/imlib2/ChangeLog b/media-libs/imlib2/ChangeLog index e99f66b30c56..5f2c98ba300d 100644 --- a/media-libs/imlib2/ChangeLog +++ b/media-libs/imlib2/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/imlib2 # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/ChangeLog,v 1.2 2002/03/27 12:30:26 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/ChangeLog,v 1.3 2002/04/12 18:53:03 seemant Exp $ + +*imlib2-1.0.5 (12 Apr 2002) + + 12 Apr 2002; Seemant Kulleen <seemant@gentoo.org> imlib2-1.0.5-r1.ebuild : + + Recompile against libpng-1.2.1 *imlib2-1.0.5 (27 Mar 2002) diff --git a/media-libs/imlib2/files/digest-imlib2-1.0.5-r1 b/media-libs/imlib2/files/digest-imlib2-1.0.5-r1 new file mode 100644 index 000000000000..07c9620d3aa4 --- /dev/null +++ b/media-libs/imlib2/files/digest-imlib2-1.0.5-r1 @@ -0,0 +1 @@ +MD5 3b1a80c95ff2a4cfb3bce49e27d94461 imlib2-1.0.5.tar.gz 688261 diff --git a/media-libs/imlib2/imlib2-1.0.5-r1.ebuild b/media-libs/imlib2/imlib2-1.0.5-r1.ebuild new file mode 100644 index 000000000000..88076700b6c0 --- /dev/null +++ b/media-libs/imlib2/imlib2-1.0.5-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/imlib2-1.0.5-r1.ebuild,v 1.1 2002/04/12 18:53:03 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="imlib" +SRC_URI="http://prdownloads.sourceforge.net/enlightenment/${P}.tar.gz" +HOMEPAGE="http://enlightenment.org/" + +DEPEND="virtual/glibc + >=media-libs/giflib-4.1.0 + >=media-libs/libpng-1.2.1 + >=media-libs/tiff-3.5.5 + <=media-libs/freetype-1.4 + >=x11-libs/gtk+-1.2.10-r4 + dev-db/edb + virtual/x11" + +src_compile() { + # always turn off mmx because binutils 2.11.92+ seems to be broken for this package + myconf="--disable-mmx" + ./configure "${myconf} " --host=${CHOST} --prefix=/usr --sysconfdir=/etc/X11/imlib || die + emake || die +} + +src_install() { + make prefix=${D}/usr sysconfdir=${D}/etc/X11/imlib install || die + preplib /usr + dodoc AUTHORS COPYING* ChangeLog README + dohtml -r doc +} |