blob: 9da40df55ef3a91f22751f02e574637b0f10c67c [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001SUMMARY = "SWIG - Simplified Wrapper and Interface Generator"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002HOMEPAGE = "http://swig.sourceforge.net/"
3LICENSE = "BSD & GPLv3"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=e7807a6282784a7dde4c846626b08fc6 \
5 file://LICENSE-GPL;md5=d32239bcb673463ab874e80d47fae504 \
6 file://LICENSE-UNIVERSITIES;md5=8ce9dcc8f7c994de4a408b205c72ba08"
7
8SECTION = "devel"
9
10DEPENDS = "libpcre python"
11
12SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
13
14inherit autotools pythonnative
15
16EXTRA_OECONF = " \
17 --with-python=${PYTHON} \
18 --without-allegrocl \
19 --without-android \
20 --without-boost \
21 --without-chicken \
22 --without-clisp \
23 --without-csharp \
24 --without-d \
25 --without-gcj \
26 --without-go \
27 --without-guile \
28 --without-java \
29 --without-lua \
30 --without-mzscheme \
31 --without-ocaml \
32 --without-octave \
33 --without-perl5 \
34 --without-pike \
35 --without-php \
36 --without-python3 \
37 --without-r \
38 --without-ruby \
39 --without-tcl \
40"
41
42BBCLASSEXTEND = "native nativesdk"
43
44do_configure() {
45 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}/Tools/config
46 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}/Tools/config
47 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}
48 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}
49 oe_runconf
50}
51
52do_install_append_class-nativesdk() {
53 cd ${D}${bindir}
54 ln -s swig swig2.0
55}
56
57def swiglib_relpath(d):
58 swiglib = d.getVar('datadir', True) + "/" + d.getVar('BPN', True) + "/" + d.getVar('PV', True)
59 return os.path.relpath(swiglib, d.getVar('bindir', True))
60
61do_install_append_class-native() {
62 create_wrapper ${D}${bindir}/swig SWIG_LIB='`dirname $''realpath`'/${@swiglib_relpath(d)}
63}