diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-10-09 16:02:49 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-10-09 16:02:49 +0000 |
commit | af199621e47b4f1ae22d025e7453eec0aaa443b1 (patch) | |
tree | 1cd076848b74d9bbed79b9b8bea8af06a056860a /media-libs/mesa | |
parent | portage-maintain works a lot better now (diff) | |
download | historical-af199621e47b4f1ae22d025e7453eec0aaa443b1.tar.gz historical-af199621e47b4f1ae22d025e7453eec0aaa443b1.tar.bz2 historical-af199621e47b4f1ae22d025e7453eec0aaa443b1.zip |
*** empty log message ***
Diffstat (limited to 'media-libs/mesa')
-rw-r--r-- | media-libs/mesa/files/digest-mesa-glu-3.2.1 | 1 | ||||
-rw-r--r-- | media-libs/mesa/mesa-glu-3.2.1.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/media-libs/mesa/files/digest-mesa-glu-3.2.1 b/media-libs/mesa/files/digest-mesa-glu-3.2.1 new file mode 100644 index 000000000000..8600dc9088ee --- /dev/null +++ b/media-libs/mesa/files/digest-mesa-glu-3.2.1 @@ -0,0 +1 @@ +MD5 5b1c54fb8f0f130ac53cceb5010460f6 MesaLib-3.2.1.tar.gz diff --git a/media-libs/mesa/mesa-glu-3.2.1.ebuild b/media-libs/mesa/mesa-glu-3.2.1.ebuild new file mode 100644 index 000000000000..4a5856f9cc38 --- /dev/null +++ b/media-libs/mesa/mesa-glu-3.2.1.ebuild @@ -0,0 +1,37 @@ +# 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/mesa/mesa-glu-3.2.1.ebuild,v 1.1 2000/10/09 16:02:49 achim Exp $ + +P=MesaLib-${PV} +A=${P}.tar.gz +S=${WORKDIR}/Mesa-${PV} +DESCRIPTION="OpenGL like graphic library for Linux" +SRC_URI="ftp://gd.tuwien.ac.at/graphics/libs/Mesa/${A}" +HOMEPAGE="http://mesa3d.sourceforge.net/" + + +src_compile() { + + cd ${S} + try ./configure --prefix=/usr/X11R6 --host=${CHOST} + try make + +} + +src_install () { + + cd ${S} + try make DESTDIR=${D} install + rm -f ${D}/usr/X11R6/lib/libGL.* + + rm -f ${D}/usr/X11R6/include/GL/gl.h + rm -f ${D}/usr/X11R6/include/GL/glx.h + rm -f ${D}/usr/X11R6/include/GL/osmesa.h + cd ${D}/usr/X11R6/lib + ln -s libGLU.so.1.1.030201 libMesaGLU.so.3 + + cd ${S} + dodoc docs/* +} + |