summaryrefslogtreecommitdiff
blob: 62c07edef460608d550a2f1f6a3c4c4712531379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/glut/glut-3.7.1.ebuild,v 1.22 2004/11/09 22:23:34 mr_bones_ Exp $

inherit libtool gnuconfig eutils

MESA_VER="5.0"
DESCRIPTION="The OpenGL Utility Toolkit (GLUT)"
HOMEPAGE="http://www.opengl.org/resources/libraries/"
SRC_URI="mirror://sourceforge/mesa3d/MesaLib-${MESA_VER}.tar.bz2
	mirror://sourceforge/mesa3d/MesaDemos-${MESA_VER}.tar.bz2"

LICENSE="|| ( X11 GPL-2 )"
SLOT="0"
KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64"
IUSE=""

DEPEND="virtual/opengl
	virtual/glu"
PROVIDE="virtual/glut"

S="${WORKDIR}/Mesa-${MESA_VER}"

src_unpack() {
	unpack ${A}
	cd ${S}
	gnuconfig_update
	elibtoolize
}

src_compile() {
	econf || die
	cd "${S}/src-glut"
	emake || die "emake failed"
}

src_install() {
	insinto /usr/$(get_libdir)
	newins ${S}/src-glut/.libs/libglut.lai libglut.la || die "libtools"

	dolib.so ${S}/src-glut/.libs/libglut.so.${PV}
	dosym libglut.so.${PV} /usr/$(get_libdir)/libglut.so || die "libraries"
	preplib

	insinto /usr/include/GL
	doins ${S}/include/GL/glut* || die "headers"

	dodoc ${S}/docs/COPYRIGHT
}