diff options
author | Björn Stenberg <bjst@enea.com> | 2013-06-26 11:43:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-28 09:14:06 +0100 |
commit | 3907ed52119929182a8dea691a357cda8ab74ea4 (patch) | |
tree | d8fd247ed2c2172769d4d14d89ef692fc3582c36 /meta/recipes-extended/bzip2/bzip2_1.0.6.bb | |
parent | d5d61146b4093eeba2adc4bb2338b1ac0dabe8c7 (diff) | |
download | poky-3907ed52119929182a8dea691a357cda8ab74ea4.tar.gz |
bzip2: Add ptest
The existing bzip2 tests in the upstream Makefile are copied to Makefile.am
(yocto's) and modified to adopt to the ptest format.
(From OE-Core rev: f02258b304dc4544567601a1502080f3581c00fa)
Signed-off-by: Björn Stenberg <bjst@enea.com>
Signed-off-by: Anders Roxell <anders.roxell@enea.com>
Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/bzip2/bzip2_1.0.6.bb')
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb index 6e160cd3e0..4189f78fdf 100644 --- a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb +++ b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb | |||
@@ -10,6 +10,7 @@ PR = "r5" | |||
10 | 10 | ||
11 | SRC_URI = "http://www.bzip.org/${PV}/${BPN}-${PV}.tar.gz \ | 11 | SRC_URI = "http://www.bzip.org/${PV}/${BPN}-${PV}.tar.gz \ |
12 | file://configure.ac \ | 12 | file://configure.ac \ |
13 | file://run-ptest \ | ||
13 | file://Makefile.am" | 14 | file://Makefile.am" |
14 | 15 | ||
15 | SRC_URI[md5sum] = "00b516f4704d4a7cb50a1d97e6e8e15b" | 16 | SRC_URI[md5sum] = "00b516f4704d4a7cb50a1d97e6e8e15b" |
@@ -19,7 +20,7 @@ PACKAGES =+ "libbz2 libbz2-dev libbz2-staticdev" | |||
19 | 20 | ||
20 | CFLAGS_append = " -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64" | 21 | CFLAGS_append = " -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64" |
21 | 22 | ||
22 | inherit autotools update-alternatives | 23 | inherit autotools update-alternatives ptest |
23 | 24 | ||
24 | ALTERNATIVE_PRIORITY = "100" | 25 | ALTERNATIVE_PRIORITY = "100" |
25 | ALTERNATIVE_${PN} = "bunzip2 bzcat" | 26 | ALTERNATIVE_${PN} = "bunzip2 bzcat" |
@@ -32,6 +33,10 @@ do_configure_prepend () { | |||
32 | cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/ | 33 | cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/ |
33 | } | 34 | } |
34 | 35 | ||
36 | do_install_ptest () { | ||
37 | sed -i -e "s|^Makefile:|_Makefile:|" ${D}${PTEST_PATH}/Makefile | ||
38 | } | ||
39 | |||
35 | FILES_libbz2 = "${libdir}/lib*${SOLIBS}" | 40 | FILES_libbz2 = "${libdir}/lib*${SOLIBS}" |
36 | 41 | ||
37 | FILES_libbz2-dev = "${includedir} ${libdir}/lib*${SOLIBSDEV}" | 42 | FILES_libbz2-dev = "${includedir} ${libdir}/lib*${SOLIBSDEV}" |