summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <spyderous@gentoo.org>2005-08-10 05:10:04 +0000
committerDonnie Berkholz <spyderous@gentoo.org>2005-08-10 05:10:04 +0000
commit5545ebc5cae7c41410d7c76eabb072ab28a99c3e (patch)
tree411d6e07e5458f1ed110eed2b630a0433914e7ea /media-libs
parentupstream patch for compile with USE=mysql (bug #101903) (diff)
downloadgentoo-2-5545ebc5cae7c41410d7c76eabb072ab28a99c3e.tar.gz
gentoo-2-5545ebc5cae7c41410d7c76eabb072ab28a99c3e.tar.bz2
gentoo-2-5545ebc5cae7c41410d7c76eabb072ab28a99c3e.zip
Remove this package.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/mesa-glu/ChangeLog22
-rw-r--r--media-libs/mesa-glu/Manifest3
-rw-r--r--media-libs/mesa-glu/files/digest-mesa-glu-3.52
-rw-r--r--media-libs/mesa-glu/mesa-glu-3.5.ebuild54
4 files changed, 0 insertions, 81 deletions
diff --git a/media-libs/mesa-glu/ChangeLog b/media-libs/mesa-glu/ChangeLog
deleted file mode 100644
index a95dc7551660..000000000000
--- a/media-libs/mesa-glu/ChangeLog
+++ /dev/null
@@ -1,22 +0,0 @@
-# ChangeLog for media-libs/mesa-glu
-# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa-glu/ChangeLog,v 1.6 2004/06/24 23:16:38 agriffis Exp $
-
- 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
-
-*mesa-glu-3.5 (22 Jul 2002)
-
- 22 Jul 2002; Seemant Kulleen <seemant@gentoo.org> mesa-glu-3.5.ebuild :
-
- this was updated a while ago by someone. I repoman'd and cleaned up
- ebuild a little bit.
-
-*mesa-glu-3.4.2 (1 Feb 2002)
-
- 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
-
- Added initial ChangeLog which should be updated whenever the package is
- updated in any way. This changelog is targetted to users. This means that the
- comments should well explained and written in clean English. The details about
- writing correct changelogs are explained in the skel.ChangeLog file which you
- can find in the root directory of the portage repository.
diff --git a/media-libs/mesa-glu/Manifest b/media-libs/mesa-glu/Manifest
deleted file mode 100644
index b48ea9f8adad..000000000000
--- a/media-libs/mesa-glu/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 cdab72cce2c5a83a1e06e14121e2103e mesa-glu-3.5.ebuild 1432
-MD5 60407d9b542bcec2df80c2d50e00b59a ChangeLog 955
-MD5 bd741113cc51a6779eae0abc0a539364 files/digest-mesa-glu-3.5 131
diff --git a/media-libs/mesa-glu/files/digest-mesa-glu-3.5 b/media-libs/mesa-glu/files/digest-mesa-glu-3.5
deleted file mode 100644
index e7d531bbc847..000000000000
--- a/media-libs/mesa-glu/files/digest-mesa-glu-3.5
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 270e82cf8c0f7fd878a5620755fe0b6c MesaLib-3.5.tar.bz2 1476450
-MD5 505562ff17f3d946296df9100a798f42 MesaDemos-3.5.tar.bz2 825234
diff --git a/media-libs/mesa-glu/mesa-glu-3.5.ebuild b/media-libs/mesa-glu/mesa-glu-3.5.ebuild
deleted file mode 100644
index 1efcf450c054..000000000000
--- a/media-libs/mesa-glu/mesa-glu-3.5.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa-glu/mesa-glu-3.5.ebuild,v 1.14 2004/07/14 20:19:25 agriffis 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
- http://download.sourceforge.net/mesa3d/MesaDemos-${PV}.tar.bz2"
-HOMEPAGE="http://mesa3d.sourceforge.net/"
-
-SLOT="3.5"
-LICENSE="LGPL-2"
-KEYWORDS="x86 ppc sparc "
-IUSE="3dnow mmx sse"
-
-DEPEND="virtual/x11"
-PROVIDE="virtual/glu virtual/glut"
-
-src_compile() {
- local myconf
-
- use mmx \
- && myconf="--enable-mmx" \
- || myconf="--disable-mmx"
-
- use 3dnow \
- && myconf="${myconf} --enable-3dnow" \
- || myconf="${myconf} --disable-3dnow"
-
- use sse \
- && myconf="${myconf} --enable-sse" \
- || myconf="${myconf} --disable-sse"
- #--without-glut means that no glut is available on the system,
- # so mesa should build its own
- myconf="${myconf} --with-x --without-glut --disable-ggi-fbdev --without-ggi"
- econf \
- --sysconfdir=/etc/mesa \
- ${myconf} || die
-
- emake || die
-}
-
-src_install() {
- cd ${S}
- make DESTDIR=${D} install || die
- 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.* libMesaGLU.so.3
- cd ${S}
- dodoc docs/*
-}