blob: b328f151f5fb3282cce73d9ad0bff2dbd3a1f482 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/glew/glew-1.3.5.ebuild,v 1.10 2007/12/04 15:13:29 fmccor Exp $
inherit eutils multilib toolchain-funcs
DESCRIPTION="The OpenGL Extension Wrangler Library"
HOMEPAGE="http://glew.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tgz"
LICENSE="BSD GLX SGI-B GPL-2"
IUSE=""
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
RDEPEND="virtual/opengl
virtual/glu"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
# Portage will strip binaries if needed
# If we strip here, static library will have no symbols
sed -i \
-e "s/-s\b//g" \
Makefile || die "sed failed"
}
src_compile(){
# Add system's CFLAGS
sed -i "s/OPT = \$(POPT)/OPT = ${CFLAGS}/" Makefile
emake CC=$(tc-getCC) || die "emake failed"
}
src_install() {
emake GLEW_DEST="${D}/usr" LIBDIR="${D}/usr/$(get_libdir)" install || die "Install failed!"
dodoc README.txt ChangeLog
cd "${S}/doc"
dohtml *.{html,css,png,jpg} || die "Documentation install failed"
dodoc *.txt || die "Documentation install failed"
}
|