diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-04-04 13:25:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-04-04 13:25:01 +0000 |
commit | cd02428af7f431448a0661a5e0d9c8a72dfc8847 (patch) | |
tree | 7574b5546d5324623b35fbb7c4499210cfebbb0e /x11-libs | |
parent | Added ~sparc to keywords. (diff) | |
download | gentoo-2-cd02428af7f431448a0661a5e0d9c8a72dfc8847.tar.gz gentoo-2-cd02428af7f431448a0661a5e0d9c8a72dfc8847.tar.bz2 gentoo-2-cd02428af7f431448a0661a5e0d9c8a72dfc8847.zip |
add pkgconfig to DEPEND for #17833
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/evas/evas-1.0.0.20030220_pre5-r1.ebuild | 5 | ||||
-rw-r--r-- | x11-libs/evas/evas-1.0.0.20030220_pre5.ebuild | 83 | ||||
-rw-r--r-- | x11-libs/evas/files/digest-evas-1.0.0.20030220_pre5 | 1 |
3 files changed, 3 insertions, 86 deletions
diff --git a/x11-libs/evas/evas-1.0.0.20030220_pre5-r1.ebuild b/x11-libs/evas/evas-1.0.0.20030220_pre5-r1.ebuild index 0c0c92456b58..0ad911d4fa72 100644 --- a/x11-libs/evas/evas-1.0.0.20030220_pre5-r1.ebuild +++ b/x11-libs/evas/evas-1.0.0.20030220_pre5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/evas/evas-1.0.0.20030220_pre5-r1.ebuild,v 1.1 2003/03/20 13:02:25 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/evas/evas-1.0.0.20030220_pre5-r1.ebuild,v 1.2 2003/04/04 13:25:01 vapier Exp $ inherit flag-o-matic @@ -22,7 +22,8 @@ DEPEND="virtual/x11 >=dev-db/edb-1.0.3.2003* png? ( media-libs/libpng ) jpeg? ( media-libs/jpeg ) - directfb? ( >=dev-libs/DirectFB-0.9.16 )" + directfb? ( >=dev-libs/DirectFB-0.9.16 ) + dev-util/pkgconfig" src_compile() { env NOCONFIGURE=yes ./autogen.sh || die "could not autogen" diff --git a/x11-libs/evas/evas-1.0.0.20030220_pre5.ebuild b/x11-libs/evas/evas-1.0.0.20030220_pre5.ebuild deleted file mode 100644 index 58821b341610..000000000000 --- a/x11-libs/evas/evas-1.0.0.20030220_pre5.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/evas/evas-1.0.0.20030220_pre5.ebuild,v 1.4 2003/03/20 13:01:51 seemant Exp $ - -inherit flag-o-matic - -IUSE="X mmx opengl jpeg png directfb fbcon" - -S=${WORKDIR}/${PN} -DESCRIPTION="hardware-accelerated canvas API" -HOMEPAGE="http://www.enlightenment.org/pages/evas.html" -SRC_URI="mirror://gentoo/${P}.tar.bz2 - http://wh0rd.tk/gentoo/distfiles/${P}.tar.bz2" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="~x86 ~ppc ~alpha" - -DEPEND="virtual/x11 - >=media-libs/imlib2-1.0.6.2003* - >=dev-libs/eet-0.0.1.2003* - >=dev-db/edb-1.0.3.2003* - png? ( media-libs/libpng ) - jpeg? ( media-libs/jpeg ) - directfb? ( >=dev-libs/DirectFB-0.9.16 )" - -src_compile() { - env NOCONFIGURE=yes ./autogen.sh || die "could not autogen" - - # other *very* fun options: - # (just do `env EXTRA_CONF="--enable-cpu-sse" emerge evas`) - # --enable-cpu-p2-only enable assumption of pentium2/amd cpu - # --enable-cpu-p3-only enable assumption of pentium3 and up cpu - # --enable-cpu-sse enable sse code - # --enable-scale-sample enable sampling scaler code - # --enable-scale-smooth enable sampling scaler code - # --enable-scale-trilinear enable tri-linear scaler code - - local myconf="" - # mmx causes segfaults atm :/ -# use mmx && myconf="${myconf} --enable-cpu-mmx" - use X && myconf="${myconf} --enable-software-x11" - use opengl && myconf="${myconf} --enable-gl-x11" - use directfb && myconf="${myconf} --enable-directfb" - use fbcon && myconf="${myconf} --enable-fb" - - use alpha && append-flags -fPIC - - econf \ - --enable-image-loader-eet \ - --enable-image-loader-edb \ - --enable-fmemopen \ - --enable-cpu-c \ - --enable-scale-smooth \ - --enable-scale-sample \ - --enable-convert-8-rgb-332 \ - --enable-convert-8-rgb-666 \ - --enable-convert-8-rgb-232 \ - --enable-convert-8-rgb-222 \ - --enable-convert-8-rgb-221 \ - --enable-convert-8-rgb-121 \ - --enable-convert-8-rgb-111 \ - --enable-convert-16-rgb-565 \ - --enable-convert-16-rgb-555 \ - --enable-convert-16-rgb-rot-0 \ - --enable-convert-32-rgb-8888 \ - --enable-convert-32-rgbx-8888 \ - --enable-convert-32-bgr-8888 \ - --enable-convert-32-bgrx-8888 \ - --enable-convert-32-rgb-rot-0 \ - `use_enable png image-loader-png` \ - `use_enable jpeg image-loader-jpeg` \ - ${myconf} || die - - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - find ${D} -name CVS -type d -exec rm -rf '{}' \; - dodoc AUTHORS ChangeLog Doxyfile NEWS README TODO - dohtml -r doc -} diff --git a/x11-libs/evas/files/digest-evas-1.0.0.20030220_pre5 b/x11-libs/evas/files/digest-evas-1.0.0.20030220_pre5 deleted file mode 100644 index 0f1846eda954..000000000000 --- a/x11-libs/evas/files/digest-evas-1.0.0.20030220_pre5 +++ /dev/null @@ -1 +0,0 @@ -MD5 ea2a8f9c638055f178daed029b54b5df evas-1.0.0.20030220_pre5.tar.bz2 1323057 |