diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-09-30 15:30:12 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-10-05 18:21:12 +0200 |
commit | a6ad7862523c8b36d6cf6c24546ffc45377f4fb7 (patch) | |
tree | e1171caf9c5f3ba12090a4c9ff5a7f1f342d978d /meta-oe/recipes-support/onig | |
parent | ea21a3f624597f95799b183bb7c53fc00aa0ddfc (diff) | |
download | meta-openembedded-a6ad7862523c8b36d6cf6c24546ffc45377f4fb7.tar.gz |
onig: add support for orig-native + misc minor fixes
- Add support for orig-native
- Drop unnecessary dependency on libevent
- Update HOMEPAGE and SRC_URI to webarchive mirrors (originals no longer available)
- Switch binconfig -> binconfig-disabled
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/onig')
-rw-r--r-- | meta-oe/recipes-support/onig/onig_5.9.3.bb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/onig/onig_5.9.3.bb b/meta-oe/recipes-support/onig/onig_5.9.3.bb index 22db78afe..416c2bf68 100644 --- a/meta-oe/recipes-support/onig/onig_5.9.3.bb +++ b/meta-oe/recipes-support/onig/onig_5.9.3.bb | |||
@@ -1,17 +1,19 @@ | |||
1 | DESCRIPTION = "Regular expressions library. The characteristics of this \ | 1 | DESCRIPTION = "Regular expressions library. The characteristics of this \ |
2 | library is that different character encoding for every regular expression \ | 2 | library is that different character encoding for every regular expression \ |
3 | object can be specified." | 3 | object can be specified." |
4 | HOMEPAGE = "http://www.geocities.jp/kosako3/oniguruma/" | 4 | HOMEPAGE = "https://web.archive.org/web/20150807014439/http://www.geocities.jp/kosako3/oniguruma/" |
5 | LICENSE = "BSD" | 5 | LICENSE = "BSD" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=0d4861b5bc0c392a5aa90d9d76ebd86f" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=0d4861b5bc0c392a5aa90d9d76ebd86f" |
7 | 7 | ||
8 | SRC_URI = "http://www.geocities.jp/kosako3/oniguruma/archive/onig-${PV}.tar.gz \ | 8 | SRC_URI = "https://web.archive.org/web/20150807014439/http://www.geocities.jp/kosako3/oniguruma/archive/${BP}.tar.gz \ |
9 | file://do-not-use-system-headers.patch \ | 9 | file://do-not-use-system-headers.patch \ |
10 | file://configure.patch" | 10 | file://configure.patch" |
11 | 11 | ||
12 | SRC_URI[md5sum] = "0d4eda2066d3c92970842a6790ce897a" | 12 | SRC_URI[md5sum] = "0d4eda2066d3c92970842a6790ce897a" |
13 | SRC_URI[sha256sum] = "c3bba66b2a84760e6582c40881db97c839d94f327870009724bb8b4d0c051f2a" | 13 | SRC_URI[sha256sum] = "c3bba66b2a84760e6582c40881db97c839d94f327870009724bb8b4d0c051f2a" |
14 | 14 | ||
15 | DEPENDS = "libevent" | 15 | BINCONFIG = "${bindir}/onig-config" |
16 | 16 | ||
17 | inherit autotools binconfig | 17 | inherit autotools binconfig-disabled |
18 | |||
19 | BBCLASSEXTEND = "native" | ||