summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex@linutronix.de>2024-04-22 13:03:17 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-04-22 22:05:58 +0100
commite31f5ce727abe63bd3b086fefa623c88c6cdcd47 (patch)
treec598223d48c6da398f6f1fbb3097165bb9cb772e
parent2bd34bf292ea4bf7ab867e7e401ea80389798130 (diff)
downloadpoky-e31f5ce727abe63bd3b086fefa623c88c6cdcd47.tar.gz
swig: merge .inc into .bb
(From OE-Core rev: 3719d5ee8a10621513fed46d5d8a1db4292a46eb) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/swig/swig.inc67
-rw-r--r--meta/recipes-devtools/swig/swig_4.2.1.bb69
2 files changed, 67 insertions, 69 deletions
diff --git a/meta/recipes-devtools/swig/swig.inc b/meta/recipes-devtools/swig/swig.inc
deleted file mode 100644
index 7a6c4d7359..0000000000
--- a/meta/recipes-devtools/swig/swig.inc
+++ /dev/null
@@ -1,67 +0,0 @@
1SUMMARY = "SWIG - Simplified Wrapper and Interface Generator"
2DESCRIPTION = "SWIG is a compiler that makes it easy to integrate C and C++ \
3code with other languages including Perl, Tcl, Ruby, Python, Java, Guile, \
4Mzscheme, Chicken, OCaml, Pike, and C#."
5HOMEPAGE = "http://swig.sourceforge.net/"
6LICENSE = "BSD-3-Clause & GPL-3.0-only"
7LIC_FILES_CHKSUM = "file://LICENSE;md5=e7807a6282784a7dde4c846626b08fc6 \
8 file://LICENSE-GPL;md5=d32239bcb673463ab874e80d47fae504 \
9 file://LICENSE-UNIVERSITIES;md5=8ce9dcc8f7c994de4a408b205c72ba08"
10
11SECTION = "devel"
12
13DEPENDS = "libpcre2 bison-native"
14
15SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
16UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/swig/files/swig/"
17UPSTREAM_CHECK_REGEX = "swig-(?P<pver>\d+(\.\d+)+)"
18
19inherit autotools python3native pkgconfig
20
21EXTRA_OECONF = " \
22 --with-python3=${PYTHON} \
23 --without-allegrocl \
24 --without-android \
25 --without-boost \
26 --without-chicken \
27 --without-clisp \
28 --without-csharp \
29 --without-d \
30 --without-gcj \
31 --without-go \
32 --without-guile \
33 --without-java \
34 --without-lua \
35 --without-mzscheme \
36 --without-ocaml \
37 --without-octave \
38 --without-perl5 \
39 --without-pike \
40 --without-php \
41 --without-r \
42 --without-ruby \
43 --without-tcl \
44"
45
46EXTRA_AUTORECONF += "-I Tools/config"
47
48BBCLASSEXTEND = "native nativesdk"
49
50# necessary together with bison dependency until a new upstream version after
51# 3.0.12 includes 0001-Fix-generated-code-for-constant-expressions-containi.patch
52do_configure:append() {
53 mkdir -p ${B}/Source/CParse
54}
55
56do_install:append:class-nativesdk() {
57 cd ${D}${bindir}
58 ln -s swig swig2.0
59}
60
61def swiglib_relpath(d):
62 swiglib = d.getVar('datadir') + "/" + d.getVar('BPN') + "/" + d.getVar('PV')
63 return os.path.relpath(swiglib, d.getVar('bindir'))
64
65do_install:append:class-native() {
66 create_wrapper ${D}${bindir}/swig SWIG_LIB='`dirname $''realpath`'/${@swiglib_relpath(d)}
67}
diff --git a/meta/recipes-devtools/swig/swig_4.2.1.bb b/meta/recipes-devtools/swig/swig_4.2.1.bb
index 4b438a7298..7062d4e9aa 100644
--- a/meta/recipes-devtools/swig/swig_4.2.1.bb
+++ b/meta/recipes-devtools/swig/swig_4.2.1.bb
@@ -1,7 +1,72 @@
1require ${BPN}.inc 1SUMMARY = "SWIG - Simplified Wrapper and Interface Generator"
2DESCRIPTION = "SWIG is a compiler that makes it easy to integrate C and C++ \
3code with other languages including Perl, Tcl, Ruby, Python, Java, Guile, \
4Mzscheme, Chicken, OCaml, Pike, and C#."
5HOMEPAGE = "http://swig.sourceforge.net/"
6LICENSE = "BSD-3-Clause & GPL-3.0-only"
7LIC_FILES_CHKSUM = "file://LICENSE;md5=e7807a6282784a7dde4c846626b08fc6 \
8 file://LICENSE-GPL;md5=d32239bcb673463ab874e80d47fae504 \
9 file://LICENSE-UNIVERSITIES;md5=8ce9dcc8f7c994de4a408b205c72ba08"
2 10
3SRC_URI += "file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch \ 11SECTION = "devel"
12
13DEPENDS = "libpcre2 bison-native"
14
15SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
16 file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch \
4 file://0001-configure-use-pkg-config-for-pcre-detection.patch \ 17 file://0001-configure-use-pkg-config-for-pcre-detection.patch \
5 file://determinism.patch \ 18 file://determinism.patch \
6 " 19 "
7SRC_URI[sha256sum] = "fa045354e2d048b2cddc69579e4256245d4676894858fcf0bab2290ecf59b7d8" 20SRC_URI[sha256sum] = "fa045354e2d048b2cddc69579e4256245d4676894858fcf0bab2290ecf59b7d8"
21UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/swig/files/swig/"
22UPSTREAM_CHECK_REGEX = "swig-(?P<pver>\d+(\.\d+)+)"
23
24inherit autotools python3native pkgconfig
25
26EXTRA_OECONF = " \
27 --with-python3=${PYTHON} \
28 --without-allegrocl \
29 --without-android \
30 --without-boost \
31 --without-chicken \
32 --without-clisp \
33 --without-csharp \
34 --without-d \
35 --without-gcj \
36 --without-go \
37 --without-guile \
38 --without-java \
39 --without-lua \
40 --without-mzscheme \
41 --without-ocaml \
42 --without-octave \
43 --without-perl5 \
44 --without-pike \
45 --without-php \
46 --without-r \
47 --without-ruby \
48 --without-tcl \
49"
50
51EXTRA_AUTORECONF += "-I Tools/config"
52
53BBCLASSEXTEND = "native nativesdk"
54
55# necessary together with bison dependency until a new upstream version after
56# 3.0.12 includes 0001-Fix-generated-code-for-constant-expressions-containi.patch
57do_configure:append() {
58 mkdir -p ${B}/Source/CParse
59}
60
61do_install:append:class-nativesdk() {
62 cd ${D}${bindir}
63 ln -s swig swig2.0
64}
65
66def swiglib_relpath(d):
67 swiglib = d.getVar('datadir') + "/" + d.getVar('BPN') + "/" + d.getVar('PV')
68 return os.path.relpath(swiglib, d.getVar('bindir'))
69
70do_install:append:class-native() {
71 create_wrapper ${D}${bindir}/swig SWIG_LIB='`dirname $''realpath`'/${@swiglib_relpath(d)}
72}