blob: 314c1e51c86f4b7ab28fd6330e22b1c3d24c9b40 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/freeglut/freeglut-2.4.0.ebuild,v 1.16 2006/07/29 18:04:10 joshuabaergen Exp $
inherit eutils flag-o-matic
DESCRIPTION="A completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library"
HOMEPAGE="http://freeglut.sourceforge.net/"
SRC_URI="mirror://sourceforge/freeglut/${P}.tar.gz"
LICENSE="X11"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ia64 mips ppc ppc-macos ppc64 sparc x86"
IUSE=""
RDEPEND="virtual/opengl
virtual/glu
!media-libs/glut"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
# fixes bug #97390
epatch ${FILESDIR}/${P}-macos.patch
# #131856
epatch ${FILESDIR}/${PN}-gcc42.patch
# bug #134586
replace-flags -O3 -O2
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
docinto doc
dohtml -r doc/*.html doc/*.png
}
|