diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-08 01:08:06 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-08 01:08:06 +0000 |
commit | e7e68aa83ec3944debaf1ff1413a1f6f14a6b58e (patch) | |
tree | 07ba6e0978116ce40b8eb6701f368369ed5fadbc /media-libs/glu | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-e7e68aa83ec3944debaf1ff1413a1f6f14a6b58e.tar.gz gentoo-2-e7e68aa83ec3944debaf1ff1413a1f6f14a6b58e.tar.bz2 gentoo-2-e7e68aa83ec3944debaf1ff1413a1f6f14a6b58e.zip |
*** empty log message ***
Diffstat (limited to 'media-libs/glu')
-rw-r--r-- | media-libs/glu/files/digest-glu-3.4.1 | 1 | ||||
-rw-r--r-- | media-libs/glu/glu-3.4.1.ebuild | 62 |
2 files changed, 0 insertions, 63 deletions
diff --git a/media-libs/glu/files/digest-glu-3.4.1 b/media-libs/glu/files/digest-glu-3.4.1 deleted file mode 100644 index cfd7fe851de4..000000000000 --- a/media-libs/glu/files/digest-glu-3.4.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 76a304f2d25847f4a20e0ab12cbe139c MesaLib-3.4.1.tar.bz2 diff --git a/media-libs/glu/glu-3.4.1.ebuild b/media-libs/glu/glu-3.4.1.ebuild deleted file mode 100644 index 85d01d526ad5..000000000000 --- a/media-libs/glu/glu-3.4.1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# 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/glu/glu-3.4.1.ebuild,v 1.1 2001/05/01 23:03:41 drobbins Exp $ - -S=${WORKDIR}/Mesa-${PV} -DESCRIPTION="OpenGL like graphic library for Linux, this package only contains the glu and glut parts" -SRC_URI="http://download.sourceforge.net/mesa3d/MesaLib-${PV}.tar.bz2" -HOMEPAGE="http://mesa3d.sourceforge.net/" - -DEPEND="virtual/glibc virtual/x11" - -PROVIDE="virtual/glu" - -src_compile() { - - local myconf - - if [ "`use mmx`" ] - then - myconf="--enable-mmx" - else - myconf="--disable-mmx" - fi - - if [ "`use 3dnow`" ] - then - myconf="${myconf} --enable-3dnow" - else - myconf="${myconf} --disable-3dnow" - fi - - if [ "`use sse`" ] - then - myconf="${myconf} --enable-sse" - else - myconf="${myconf} --disable-sse" - fi - - myconf="${myconf} --with-x --without-glut --disable-ggi-fbdev --without-ggi" - - try ./configure --prefix=/usr --sysconfdir=/etc/mesa --host=${CHOST} $myconf - - try make -} - -src_install () { - cd ${S} - try make DESTDIR=${D} install - cd ${D}/usr/lib - - rm -f libGL.* - rm -f ../include/GL/gl.h - rm -f ../include/GL/glx.h - rm -f ../include/GL/osmesa.h - - ln -s libGLU.so.1.1.030400 libMesaGLU.so.3 - - cd ${S} - dodoc docs/* -} - |