blob: 151fa0ade16e58cbeffd79e0cd8a8bc97a5a52a3 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2006 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.31 2006/10/03 14:33:55 dsd Exp $
WANT_AUTOMAKE=latest
WANT_AUTOCONF=latest
inherit autotools 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="glut"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE=""
RDEPEND="virtual/opengl
virtual/glu
!media-libs/freeglut"
DEPEND="${RDEPEND}"
S="${WORKDIR}/Mesa-${MESA_VER}"
src_unpack() {
unpack ${A}
cd "${S}"
# Remove ancient libtool shipped in tarball
rm m4/libtool.m4
# Remove acinclude.m4 because we regenerate this into aclocal.m4 during
# eautoreconf
rm acinclude.m4
epatch "${FILESDIR}/${P}-new-autotools.patch"
epatch "${FILESDIR}/${P}-fix-GLU-linking.patch"
AT_M4DIR=m4 eautoreconf
}
src_compile() {
# --without-glut flag actually refers to whether mesa would build with or
# without *external* glut, in this case we want the internal one
econf --without-glut || 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"
dosym libglut.so.${PV} /usr/$(get_libdir)/libglut.so.${PV//\.*/} \
|| die "libraries"
insinto /usr/include/GL
doins "${S}"/include/GL/glut* || die "headers"
}
|