diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-26 08:44:39 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-26 08:44:39 +0000 |
commit | 22127cef02124da3427936cb03268f6b458339c4 (patch) | |
tree | a12ee210fc1a3e9d8bb727802a4b46701f131ee0 /media-libs/imlib2/imlib2-1.0.6.ebuild | |
parent | version bump (diff) | |
download | historical-22127cef02124da3427936cb03268f6b458339c4.tar.gz historical-22127cef02124da3427936cb03268f6b458339c4.tar.bz2 historical-22127cef02124da3427936cb03268f6b458339c4.zip |
version bump
Diffstat (limited to 'media-libs/imlib2/imlib2-1.0.6.ebuild')
-rw-r--r-- | media-libs/imlib2/imlib2-1.0.6.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media-libs/imlib2/imlib2-1.0.6.ebuild b/media-libs/imlib2/imlib2-1.0.6.ebuild new file mode 100644 index 000000000000..f29a05b0b207 --- /dev/null +++ b/media-libs/imlib2/imlib2-1.0.6.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.6.ebuild,v 1.1 2002/04/26 08:44:39 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 +} |