diff options
author | Ross Burton <ross.burton@intel.com> | 2016-10-31 16:18:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-06 23:35:32 +0000 |
commit | 503682d6b9dc878ae814bec64ec0ecc636fd02cc (patch) | |
tree | 546d328f32798bc12b0b10f8b22e600d726eae2b /meta/recipes-extended | |
parent | 84387927c2fec0458cc1803459236341d4091f01 (diff) | |
download | poky-503682d6b9dc878ae814bec64ec0ecc636fd02cc.tar.gz |
slang: clean up options and dependencies
The AC_PATH_XTRA check for X11 headers is never actually used, so patch that out
and remove the options in EXTRA_OECONF.
Move pcre/png/zlib toggles to PACKAGECONFIG, retaining the behaviour that only
PCRE is enabled by default.
Add missing libiconv dependency.
(From OE-Core rev: 3587053646c34002fa18b87834516ce27fbd0788)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/slang/slang/no-x.patch | 14 | ||||
-rw-r--r-- | meta/recipes-extended/slang/slang_2.3.0.bb | 15 |
2 files changed, 24 insertions, 5 deletions
diff --git a/meta/recipes-extended/slang/slang/no-x.patch b/meta/recipes-extended/slang/slang/no-x.patch new file mode 100644 index 0000000000..d7666bfc89 --- /dev/null +++ b/meta/recipes-extended/slang/slang/no-x.patch | |||
@@ -0,0 +1,14 @@ | |||
1 | There's no need to check for the X libraries as the socket module doesn't use | ||
2 | anything from X. | ||
3 | |||
4 | Upstream-Status: Pending | ||
5 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
6 | |||
7 | diff --git a/autoconf/configure.ac b/autoconf/configure.ac | ||
8 | index b61e974..a3e5db2 100644 | ||
9 | --- a/autoconf/configure.ac | ||
10 | +++ b/autoconf/configure.ac | ||
11 | @@ -72,3 +71,0 @@ AC_SUBST(LIB_READLINE) | ||
12 | -# For the socket module | ||
13 | -AC_PATH_XTRA | ||
14 | - | ||
diff --git a/meta/recipes-extended/slang/slang_2.3.0.bb b/meta/recipes-extended/slang/slang_2.3.0.bb index ce7b16a8f7..52b2a63a8c 100644 --- a/meta/recipes-extended/slang/slang_2.3.0.bb +++ b/meta/recipes-extended/slang/slang_2.3.0.bb | |||
@@ -9,7 +9,7 @@ to recode S-Lang procedures in C if you need to." | |||
9 | 9 | ||
10 | HOMEPAGE = "http://www.jedsoft.org/slang/" | 10 | HOMEPAGE = "http://www.jedsoft.org/slang/" |
11 | SECTION = "libs" | 11 | SECTION = "libs" |
12 | DEPENDS = "pcre ncurses" | 12 | DEPENDS = "ncurses virtual/libiconv" |
13 | 13 | ||
14 | LICENSE = "GPLv2" | 14 | LICENSE = "GPLv2" |
15 | LIC_FILES_CHKSUM = "file://COPYING;md5=a52a18a472d4f7e45479b06563717c02" | 15 | LIC_FILES_CHKSUM = "file://COPYING;md5=a52a18a472d4f7e45479b06563717c02" |
@@ -20,18 +20,23 @@ SRC_URI = "http://www.jedsoft.org/releases/${BPN}/${BP}.tar.bz2 \ | |||
20 | file://fix-check-pcre.patch \ | 20 | file://fix-check-pcre.patch \ |
21 | file://slang-fix-the-iconv-existence-checking.patch \ | 21 | file://slang-fix-the-iconv-existence-checking.patch \ |
22 | file://0001-Fix-error-conflicting-types-for-posix_close.patch \ | 22 | file://0001-Fix-error-conflicting-types-for-posix_close.patch \ |
23 | file://no-x.patch \ | ||
23 | " | 24 | " |
25 | SRC_URI[md5sum] = "3bcc790460d52db1316c20395b7ac2f1" | ||
26 | SRC_URI[sha256sum] = "f95224060f45e0d8212a5039b339afa5f1a94a1bb0298e796104e5b12e926129" | ||
27 | |||
24 | UPSTREAM_CHECK_URI = "http://www.jedsoft.org/releases/slang/" | 28 | UPSTREAM_CHECK_URI = "http://www.jedsoft.org/releases/slang/" |
25 | PREMIRRORS_append = "\n http://www.jedsoft.org/releases/slang/.* http://www.jedsoft.org/releases/slang/old/ \n" | 29 | PREMIRRORS_append = "\n http://www.jedsoft.org/releases/slang/.* http://www.jedsoft.org/releases/slang/old/ \n" |
26 | 30 | ||
27 | inherit autotools-brokensep | 31 | inherit autotools-brokensep |
28 | |||
29 | CLEANBROKEN = "1" | 32 | CLEANBROKEN = "1" |
30 | 33 | ||
31 | SRC_URI[md5sum] = "3bcc790460d52db1316c20395b7ac2f1" | 34 | EXTRA_OECONF = "--without-onig" |
32 | SRC_URI[sha256sum] = "f95224060f45e0d8212a5039b339afa5f1a94a1bb0298e796104e5b12e926129" | ||
33 | 35 | ||
34 | EXTRA_OECONF += " --without-z --without-png --without-onig --x-includes=${STAGING_DIR_HOST}/usr/include/X11 --x-libraries=${STAGING_DIR_HOST}/usr/lib" | 36 | PACKAGECONFIG ??= "pcre" |
37 | PACKAGECONFIG[pcre] = "--with-pcre,--without-pcre,pcre" | ||
38 | PACKAGECONFIG[png] = "--with-png,--without-png,libpng" | ||
39 | PACKAGECONFIG[zlib] = "--with-z,--without-z,zlib" | ||
35 | 40 | ||
36 | do_configure_prepend() { | 41 | do_configure_prepend() { |
37 | # slang keeps configure.ac and rest of autoconf files in autoconf/ directory | 42 | # slang keeps configure.ac and rest of autoconf files in autoconf/ directory |