blob: 092a44c27dc21564c2135dc0666e1f3c3f6f9960 (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
DESCRIPTION = "Guile is an interpreter for the Scheme programming language, \
packaged as a library which can be incorporated into your programs."
HOMEPAGE = "http://www.gnu.org/software/guile/guile.html"
SECTION = "devel/scheme"
DEPENDS = "guile-native"
LICENSE = "GPL"
PR = "r1"
SRC_URI = "http://ftp.gnu.org/pub/gnu/guile/guile-${PV}.tar.gz \
file://configure-lossage.patch;patch=1 \
file://gcc4.patch;patch=1"
inherit autotools
acpaths = "-I ${S}/guile-config"
do_compile() {
(cd libguile; oe_runmake CC="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" LDFLAGS="${BUILD_LDFLAGS}" guile_filter_doc_snarfage)
oe_runmake preinstguile="`which guile`"
}
LIBGUILE_HEADERS = "\
__scm.h \
alist.h \
arbiters.h \
async.h \
backtrace.h \
boolean.h \
chars.h \
continuations.h \
coop-defs.h \
debug-malloc.h \
debug.h \
deprecation.h \
dynl.h \
dynwind.h \
environments.h \
eq.h \
error.h \
eval.h \
evalext.h \
extensions.h \
feature.h \
filesys.h \
fluids.h \
fports.h \
gc.h \
gdb_interface.h \
gdbint.h \
goops.h \
gsubr.h \
guardians.h \
hash.h \
hashtab.h \
hooks.h \
init.h \
ioext.h \
iselect.h \
keywords.h \
lang.h \
list.h \
load.h \
macros.h \
mallocs.h \
modules.h \
net_db.h \
numbers.h \
objects.h \
objprop.h \
options.h \
pairs.h \
ports.h \
posix.h \
print.h \
procprop.h \
procs.h \
properties.h \
ramap.h \
random.h \
rdelim.h \
read.h \
regex-posix.h \
root.h \
rw.h \
scmconfig.h \
scmsigs.h \
script.h \
simpos.h \
smob.h \
snarf.h \
socket.h \
sort.h \
srcprop.h \
stackchk.h \
stacks.h \
stime.h \
strings.h \
strop.h \
strorder.h \
strports.h \
struct.h \
symbols.h \
tags.h \
threads.h \
throw.h \
unif.h \
validate.h \
values.h \
variable.h \
vectors.h \
version.h \
vports.h \
weaks.h \
"
do_stage() {
install -d ${STAGING_INCDIR}/libguile
for i in ${LIBGUILE_HEADERS}; do
install -m 0644 libguile/$i ${STAGING_INCDIR}/libguile/$i
done
install -m 0644 libguile.h ${STAGING_INCDIR}/libguile.h
install -d ${STAGING_INCDIR}/guile
install -m 0644 libguile/gh.h ${STAGING_INCDIR}/guile/
install -d ${STAGING_INCDIR}/guile/srfi
install -d ${STAGING_INCDIR}/guile-readline
install -m 0644 guile-readline/readline.h ${STAGING_INCDIR}/guile-readline/
install -d ${STAGING_DATADIR}/aclocal
install -m 0644 guile-config/guile.m4 ${STAGING_DATADIR}/aclocal
oe_libinstall -C libguile -so -a libguile ${STAGING_LIBDIR}
oe_libinstall -C guile-readline -so -a libguilereadline-v-12 ${STAGING_LIBDIR}
oe_libinstall -C libguile-ltdl -so -a libguile-ltdl ${STAGING_LIBDIR}
}
|