diff options
Diffstat (limited to 'meta/recipes-extended/sed/sed_4.8.bb')
-rw-r--r-- | meta/recipes-extended/sed/sed_4.8.bb | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/meta/recipes-extended/sed/sed_4.8.bb b/meta/recipes-extended/sed/sed_4.8.bb new file mode 100644 index 0000000000..39e3a61df5 --- /dev/null +++ b/meta/recipes-extended/sed/sed_4.8.bb | |||
@@ -0,0 +1,65 @@ | |||
1 | SUMMARY = "Stream EDitor (text filtering utility)" | ||
2 | HOMEPAGE = "http://www.gnu.org/software/sed/" | ||
3 | LICENSE = "GPLv3+" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \ | ||
5 | file://sed/sed.h;beginline=1;endline=15;md5=fb3c7e6fbca6f66943859153d4be8efe \ | ||
6 | " | ||
7 | SECTION = "console/utils" | ||
8 | |||
9 | SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.xz \ | ||
10 | file://run-ptest \ | ||
11 | " | ||
12 | |||
13 | SRC_URI[md5sum] = "6d906edfdb3202304059233f51f9a71d" | ||
14 | SRC_URI[sha256sum] = "f79b0cfea71b37a8eeec8490db6c5f7ae7719c35587f21edb0617f370eeff633" | ||
15 | |||
16 | inherit autotools texinfo update-alternatives gettext ptest | ||
17 | |||
18 | PACKAGECONFIG[selinux] = "--with-selinux,--without-selinux,libselinux" | ||
19 | |||
20 | RDEPENDS_${PN}-ptest += "make gawk perl perl-module-filehandle perl-module-file-compare perl-module-file-find perl-module-file-temp perl-module-file-stat" | ||
21 | RRECOMMENDS_${PN}-ptest_append_libc-glibc = " locale-base-ru-ru locale-base-en-us locale-base-el-gr.iso-8859-7" | ||
22 | |||
23 | EXTRA_OECONF = "--disable-acl \ | ||
24 | " | ||
25 | |||
26 | do_install () { | ||
27 | autotools_do_install | ||
28 | install -d ${D}${base_bindir} | ||
29 | if [ ! ${D}${bindir} -ef ${D}${base_bindir} ]; then | ||
30 | mv ${D}${bindir}/sed ${D}${base_bindir}/sed | ||
31 | rmdir ${D}${bindir}/ | ||
32 | fi | ||
33 | } | ||
34 | |||
35 | ALTERNATIVE_${PN} = "sed" | ||
36 | ALTERNATIVE_LINK_NAME[sed] = "${base_bindir}/sed" | ||
37 | ALTERNATIVE_PRIORITY = "100" | ||
38 | |||
39 | do_compile_ptest() { | ||
40 | oe_runmake testsuite/get-mb-cur-max testsuite/test-mbrtowc | ||
41 | } | ||
42 | |||
43 | do_install_ptest() { | ||
44 | cp -rf ${S}/testsuite/ ${D}${PTEST_PATH} | ||
45 | cp -rf ${B}/testsuite/* ${D}${PTEST_PATH}/testsuite/ | ||
46 | cp -rf ${S}/build-aux/ ${D}${PTEST_PATH}/ | ||
47 | cp ${B}/Makefile ${D}${PTEST_PATH} | ||
48 | cp ${S}/init.cfg ${D}${PTEST_PATH} | ||
49 | |||
50 | sed -e 's/^Makefile:/_Makefile:/' -e 's/^srcdir = \(.*\)/srcdir = ./' -e 's/bash/sh/' -i ${D}${PTEST_PATH}/Makefile | ||
51 | for i in `grep -rl "sed/sed" ${D}${PTEST_PATH}`; do sed -e 's/..\/sed\/sed/sed/' -i $i; done | ||
52 | |||
53 | sed -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ | ||
54 | -e 's|${DEBUG_PREFIX_MAP}||g' \ | ||
55 | -e 's:${HOSTTOOLS_DIR}/::g' \ | ||
56 | -e 's:${RECIPE_SYSROOT_NATIVE}::g' \ | ||
57 | -e 's:abs_top_builddir =.*:abs_top_builddir = ..:g' \ | ||
58 | -e 's:abs_top_srcdir =.*:abs_top_srcdir = ..:g' \ | ||
59 | -e 's:abs_srcdir =.*:abs_srcdir = ..:g' \ | ||
60 | -e 's:top_srcdir =.*:top_srcdir = ..:g' \ | ||
61 | -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \ | ||
62 | -i ${D}${PTEST_PATH}/Makefile | ||
63 | } | ||
64 | |||
65 | RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sed', '', d)}" | ||