blob: e9d8d564876712c0d99be7d8ef779a801fb755e8 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit autotools vcs-snapshot
MY_P="${PN^g}2-${PV}"
PV_COMMIT="0220722c44ef85f2e1b9b14745702c1b923258e8"
DESCRIPTION="GTK2 binding for Gauche"
HOMEPAGE="http://practical-scheme.net/gauche/"
SRC_URI="https://github.com/shirok/${PN^g}2/archive/${PV_COMMIT}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="examples glgd nls opengl"
RESTRICT="test"
DEPEND="${RDEPEND}
virtual/pkgconfig"
RDEPEND="x11-libs/gtk+:2
dev-scheme/gauche
opengl? (
x11-libs/gtkglext
dev-scheme/gauche-gl
)"
S="${WORKDIR}/${MY_P}"
src_prepare() {
default
eautoconf
}
src_configure() {
local myconf=()
if use opengl; then
if use glgd; then
if use nls; then
myconf+=( --enable-glgd-pango )
else
myconf+=( --enable-glgd )
fi
else
myconf+=( --enable-gtkgl )
fi
fi
econf "${myconf[@]}"
}
src_compile() {
emake stubs
emake
}
src_install() {
default
if use examples; then
docompress -x /usr/share/doc/${PF}/examples
docinto examples
dodoc examples/*.scm
# install gtk-tutorial
docinto examples/gtk-tutorial
dodoc examples/gtk-tutorial/*
if use opengl; then
# install gtkglext
dodoc -r examples/gtkglext
if use glgd; then
# install glgd
dodoc -r examples/glgd
fi
fi
fi
}
|