summaryrefslogtreecommitdiff
blob: b6ca55aa9055f091a9644a4486f28ffae1277bec (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche-gl/gauche-gl-0.3.1.ebuild,v 1.4 2004/06/24 23:59:04 agriffis Exp $

inherit eutils flag-o-matic

IUSE=""

MY_P="${P/g/G}"

DESCRIPTION="OpenGL binding for Gauche"
HOMEPAGE="http://gauche.sf.net/"
SRC_URI="mirror://sourceforge/gauche/${MY_P}.tgz"

RESTRICT="nomirror"
LICENSE="BSD"
KEYWORDS="x86"
SLOT="0"
S="${WORKDIR}/${MY_P}"

DEPEND="virtual/opengl
	>=media-libs/glut-3.7
	>=dev-lisp/gauche-0.7.3"

src_compile() {

	local myflags

	filter-flags -fforce-addr

	myflags=${CFLAGS}
	unset CFLAGS CXXFLAGS

	econf || die
	emake OPTFLAGS="${myflags}" || die

}

src_install() {

	dodir $(gauche-config --syslibdir)
	dodir $(gauche-config --sysincdir)
	dodir $(gauche-config --sysarchdir)

	make DESTDIR=${D} install || die

	dodoc README ChangeLog INSTALL* COPYING

	docinto examples
	dodoc examples/*.scm

	docinto examples/glbook
	dodoc examples/glbook/*

}