diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-02-14 16:08:28 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-02-14 16:08:28 +0000 |
commit | 7cc2c7dbd732bc9cc7e65e4a75faece3ece38e99 (patch) | |
tree | 015dbdb2c2e47be8f67eafe98b0c18df52691f52 /media-libs/imlib | |
parent | glibc-2.2.5 is in our default profile now. Works great for me, Azarah. (diff) | |
download | gentoo-2-7cc2c7dbd732bc9cc7e65e4a75faece3ece38e99.tar.gz gentoo-2-7cc2c7dbd732bc9cc7e65e4a75faece3ece38e99.tar.bz2 gentoo-2-7cc2c7dbd732bc9cc7e65e4a75faece3ece38e99.zip |
Updated version of imlib that adds libungif and zlib as necessary
dependencies.
Diffstat (limited to 'media-libs/imlib')
-rw-r--r-- | media-libs/imlib/files/digest-imlib-1.9.10-r2 | 1 | ||||
-rw-r--r-- | media-libs/imlib/imlib-1.9.10-r2.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/media-libs/imlib/files/digest-imlib-1.9.10-r2 b/media-libs/imlib/files/digest-imlib-1.9.10-r2 new file mode 100644 index 000000000000..ad881d7ee3af --- /dev/null +++ b/media-libs/imlib/files/digest-imlib-1.9.10-r2 @@ -0,0 +1 @@ +MD5 47323fff0f9209abd2fc0f738d63424e imlib-1.9.10.tar.gz 717554 diff --git a/media-libs/imlib/imlib-1.9.10-r2.ebuild b/media-libs/imlib/imlib-1.9.10-r2.ebuild new file mode 100644 index 000000000000..da87b5585a5a --- /dev/null +++ b/media-libs/imlib/imlib-1.9.10-r2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2000 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/imlib/imlib-1.9.10-r2.ebuild,v 1.1 2002/02/14 16:08:28 g2boojum Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="imlib" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz + http://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz + ftp://gnome.eazel.com/pub/gnome/stable/sources/${PN}/${P}.tar.gz" + +HOMEPAGE="http://www.gnome.org/" + +DEPEND="virtual/glibc + >=media-libs/giflib-4.1.0 + >=media-libs/libpng-1.0.7 + >=media-libs/tiff-3.5.5 + >=media-libs/libungif-4.1.0 + >=sys-libs/zlib-1.1.3-r2 + >=x11-libs/gtk+-1.2.10-r4 + virtual/x11" + +src_compile() { + + .configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --sysconfdir=/etc/imlib \ + || die + emake +} + +src_install() { + + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + sysconfdir=${D}/etc/imlib + install || die + + preplib /usr + + dodoc AUTHORS COPYING* ChangeLog README + dodoc NEWS + docinto html + dodoc doc/*.gif doc/index.html +} + + + |