diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2-1.0.6/Makefile.am | 30 | ||||
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2-1.0.6/run-ptest | 2 | ||||
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 7 |
3 files changed, 38 insertions, 1 deletions
diff --git a/meta/recipes-extended/bzip2/bzip2-1.0.6/Makefile.am b/meta/recipes-extended/bzip2/bzip2-1.0.6/Makefile.am index 070d57b243..1d163b6c98 100644 --- a/meta/recipes-extended/bzip2/bzip2-1.0.6/Makefile.am +++ b/meta/recipes-extended/bzip2/bzip2-1.0.6/Makefile.am | |||
@@ -26,6 +26,36 @@ bin_SCRIPTS = bzgrep bzmore bzdiff | |||
26 | man_MANS = bzip2.1 bzgrep.1 bzmore.1 bzdiff.1 | 26 | man_MANS = bzip2.1 bzgrep.1 bzmore.1 bzdiff.1 |
27 | EXTRA_DIST = $(man_MANS) | 27 | EXTRA_DIST = $(man_MANS) |
28 | 28 | ||
29 | runtest: | ||
30 | ./bzip2 -1 < sample1.ref > sample1.rb2 | ||
31 | ./bzip2 -2 < sample2.ref > sample2.rb2 | ||
32 | ./bzip2 -3 < sample3.ref > sample3.rb2 | ||
33 | ./bzip2 -d < sample1.bz2 > sample1.tst | ||
34 | ./bzip2 -d < sample2.bz2 > sample2.tst | ||
35 | ./bzip2 -ds < sample3.bz2 > sample3.tst | ||
36 | @if cmp sample1.bz2 sample1.rb2; then echo "PASS: sample1 compress";\ | ||
37 | else echo "FAIL: sample1 compress"; fi | ||
38 | @if cmp sample2.bz2 sample2.rb2; then echo "PASS: sample2 compress";\ | ||
39 | else echo "FAIL: sample2 compress"; fi | ||
40 | @if cmp sample3.bz2 sample3.rb2; then echo "PASS: sample3 compress";\ | ||
41 | else echo "FAIL: sample3 compress"; fi | ||
42 | @if cmp sample1.tst sample1.ref; then echo "PASS: sample1 decompress";\ | ||
43 | else echo "FAIL: sample1 decompress"; fi | ||
44 | @if cmp sample2.tst sample2.ref; then echo "PASS: sample2 decompress";\ | ||
45 | else echo "FAIL: sample2 decompress"; fi | ||
46 | @if cmp sample3.tst sample3.ref; then echo "PASS: sample3 decompress";\ | ||
47 | else echo "FAIL: sample3 decompress"; fi | ||
48 | |||
49 | install-ptest: | ||
50 | cp $(srcdir)/Makefile $(DESTDIR)/ | ||
51 | cp $(srcdir)/sample1.ref $(DESTDIR)/ | ||
52 | cp $(srcdir)/sample2.ref $(DESTDIR)/ | ||
53 | cp $(srcdir)/sample3.ref $(DESTDIR)/ | ||
54 | cp $(srcdir)/sample1.bz2 $(DESTDIR)/ | ||
55 | cp $(srcdir)/sample2.bz2 $(DESTDIR)/ | ||
56 | cp $(srcdir)/sample3.bz2 $(DESTDIR)/ | ||
57 | ln -s $(bindir)/bzip2 $(DESTDIR)/bzip2 | ||
58 | |||
29 | install-exec-hook: | 59 | install-exec-hook: |
30 | ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bunzip2$(EXEEXT) | 60 | ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bunzip2$(EXEEXT) |
31 | ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bzcat$(EXEEXT) | 61 | ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bzcat$(EXEEXT) |
diff --git a/meta/recipes-extended/bzip2/bzip2-1.0.6/run-ptest b/meta/recipes-extended/bzip2/bzip2-1.0.6/run-ptest new file mode 100644 index 0000000000..3b20fce1ee --- /dev/null +++ b/meta/recipes-extended/bzip2/bzip2-1.0.6/run-ptest | |||
@@ -0,0 +1,2 @@ | |||
1 | #!/bin/sh | ||
2 | make -k runtest | ||
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}" |