blob: a561885a3999dd7c68b97f1eb174968ccee10545 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.4.0.ebuild,v 1.10 2005/07/25 11:08:21 mattam Exp $
inherit eutils
IUSE="debug doc glade gnome opengl svg"
DESCRIPTION="Objective CAML interface for Gtk+2"
HOMEPAGE="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgtk.html"
SRC_URI="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/${P}.tar.gz"
LICENSE="LGPL-2.1 as-is"
DEPEND=">=x11-libs/gtk+-2.4
>=dev-lang/ocaml-3.07
svg? ( >=gnome-base/librsvg-2.2 )
glade? ( >=gnome-base/libglade-2.0.1 )
gnome? ( >=gnome-base/libgnomecanvas-2.2
>=gnome-base/gnome-panel-2.4.0
>=gnome-base/libgnomeui-2.4.0 )
opengl? ( >=dev-ml/lablgl-0.98
>=x11-libs/gtkglarea-1.9 )"
SLOT="2"
KEYWORDS="amd64 x86 ppc ~alpha ia64 ~sparc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gcc34.patch
aclocal
autoreconf
}
src_compile() {
use debug && myconf="$myconf --enable-debug"
myconf="$myconf $(use_with svg rsvg)"
myconf="$myconf $(use_with glade)"
myconf="$myconf $(use_with gnome gnomecanvas)"
myconf="$myconf $(use_with gnome gnomeui)"
myconf="$myconf $(use_with gnome panel)"
myconf="$myconf $(use_with opengl gl)"
econf $myconf || die "configure failed"
make all opt || die "make failed"
}
install_examples() {
examples=/usr/share/doc/${P}/examples
dodir $examples
insinto $examples
doins examples/*.ml examples/*.rgb
}
src_install () {
make install DESTDIR=${D} || die
dodoc CHANGES COPYING README
use doc && install_examples
}
pkg_postinst () {
use doc && einfo "To run the examples you can use the lablgtk2 toplevel."
use doc && einfo "e.g: lablgtk2 /usr/share/doc/${P}/examples/testgtk.ml"
}
|