diff options
author | Ben Lutgens <lamer@gentoo.org> | 2001-08-16 23:19:35 +0000 |
---|---|---|
committer | Ben Lutgens <lamer@gentoo.org> | 2001-08-16 23:19:35 +0000 |
commit | 05ee33a76dae209c02e9f0e5a4bb4f3eb3603ed2 (patch) | |
tree | bd0ddfcd0224fac0874dfaf7209297953823a91a /media-libs/sgi-oss-glu | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-05ee33a76dae209c02e9f0e5a4bb4f3eb3603ed2.tar.gz gentoo-2-05ee33a76dae209c02e9f0e5a4bb4f3eb3603ed2.tar.bz2 gentoo-2-05ee33a76dae209c02e9f0e5a4bb4f3eb3603ed2.zip |
this is the 4th or 5th time I've tried to commit, I just ntpdated to sync my time, and I'm still off.
Diffstat (limited to 'media-libs/sgi-oss-glu')
-rw-r--r-- | media-libs/sgi-oss-glu/files/digest-oss-opengl-glu-1.3 | 1 | ||||
-rw-r--r-- | media-libs/sgi-oss-glu/oss-opengl-glu-1.3.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/media-libs/sgi-oss-glu/files/digest-oss-opengl-glu-1.3 b/media-libs/sgi-oss-glu/files/digest-oss-opengl-glu-1.3 new file mode 100644 index 000000000000..5bab9d9c3e34 --- /dev/null +++ b/media-libs/sgi-oss-glu/files/digest-oss-opengl-glu-1.3 @@ -0,0 +1 @@ +MD5 de60893f70911ef190da9a8e6676092f oss-opengl-glu-20000925-1.i386.rpm diff --git a/media-libs/sgi-oss-glu/oss-opengl-glu-1.3.ebuild b/media-libs/sgi-oss-glu/oss-opengl-glu-1.3.ebuild new file mode 100644 index 000000000000..981f9b41588f --- /dev/null +++ b/media-libs/sgi-oss-glu/oss-opengl-glu-1.3.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 ben Lutgens <lamer@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-libs/sgi-oss-glu/oss-opengl-glu-1.3.ebuild,v 1.1 2001/08/16 23:19:35 lamer Exp $ + +A=oss-opengl-glu-20000925-1.i386.rpm +P=oss-opengl-glu-20000925-1.i386.rpm +S=${WORKDIR}/usr +DESCRIPTION="SGI'd GLU" +SRC_URI="ftp://mesa3d.sourceforge.net/pub/mesa3d/SI-GLU/${A}" +HOMEPAGE="http://www.mesa3d.org/downloads/sgi.html" + +DEPEND=">=app-arch/rpm-3.0.6" + + +src_unpack() { + + rpm2cpio ${DISTDIR}/${P} |cpio -i --make-directories + +} + +src_compile() { + + einfo "Only binary package, nothing to compile" + +} + +src_install () { + + insinto /usr/include/GL + doins ${S}/include/GL/glu.h + insinto /usr/lib + doins ${S}/lib/* + + +} + |