blob: 2ea284b463e8b4bd2c11e4e1ee6cd04d96a58155 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgl/lablgl-1.00.ebuild,v 1.17 2005/02/14 19:14:48 sekretarz Exp $
inherit eutils
IUSE="tcltk glut doc"
DESCRIPTION="Objective CAML interface for OpenGL"
HOMEPAGE="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgl.html"
LICENSE="as-is"
DEPEND=">=dev-lang/ocaml-3.05
virtual/opengl
glut? ( media-libs/glut )
tcltk? ( >=dev-lang/tcl-8.3*
>=dev-lang/tk-8.3* )"
SRC_URI="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/${P}.tar.gz"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha ~ia64 amd64 hppa"
pkg_setup()
{
if ( use tcltk )
then
#lablgl requires ocaml compiled with tk support while ocaml has it as an optional dependency
if ( ! built_with_use dev-lang/ocaml tcltk )
then
eerror "You don't have ocaml compiled with tk support"
eerror ""
eerror "lablgl requires ocaml be built with tk support."
eerror ""
eerror "Please recompile ocaml with tcltk useflag enabled."
sleep 5;
die "Ocaml is missing tk support";
fi
fi
}
src_compile() {
# make configuration file
cp ${FILESDIR}/${P}-Makefile.config ${S}/Makefile.config || die
if ! (use glut); then
sed -i "s/-lglut//" Makefile.config
fi
if use tcltk; then
make togl toglopt
fi
if use glut; then
make glut glutopt
else
make lib libopt
fi
}
src_install () {
# Makefile do not use mkdir so the library is not installed
# but copied as a 'stublibs' file.
dodir /usr/lib/ocaml/stublibs
# Same for lablglut's toplevel
dodir /usr/bin
BINDIR=${D}/usr/bin
BASE=${D}/usr/lib/ocaml
make BINDIR=${BINDIR} INSTALLDIR=${BASE}/lablGL DLLDIR=${BASE}/stublibs install || die
dodoc README CHANGES COPYRIGHT
if ( use doc && use tcltk ) then
DIR=usr/share/doc/${PF}
cp -R Togl/examples/ ${D}/${DIR}/examples.togl
fi
if ( use glut ) then
cd LablGlut
newdoc README README.glut
newdoc ChangeLog ChangeLog.glut
newdoc CHANGES CHANGES.glut
newdoc COPYRIGHT COPYRIGHT.glut
newdoc THANKS THANKS.glut
newdoc TODO TODO.glut
if ( use doc ) then
DIR=usr/share/doc/${PF}
cp -R examples ${D}/${DIR}/examples.glut
fi
fi
}
|