diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:11 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:57 +0100 |
commit | d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch) | |
tree | f36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/recipes-extended/bzip2 | |
parent | caab7fc509bf27706ff3248689f6afd04225cfda (diff) | |
download | poky-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz |
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/bzip2')
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am | 41 | ||||
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2-1.0.5/configure.ac | 14 | ||||
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2_1.0.5.bb | 41 |
3 files changed, 96 insertions, 0 deletions
diff --git a/meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am b/meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am new file mode 100644 index 0000000000..070d57b243 --- /dev/null +++ b/meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am | |||
@@ -0,0 +1,41 @@ | |||
1 | |||
2 | lib_LTLIBRARIES = libbz2.la | ||
3 | |||
4 | libbz2_la_SOURCES = blocksort.c \ | ||
5 | huffman.c \ | ||
6 | crctable.c \ | ||
7 | randtable.c \ | ||
8 | compress.c \ | ||
9 | decompress.c \ | ||
10 | bzlib.c | ||
11 | |||
12 | bin_PROGRAMS = bzip2 bzip2recover | ||
13 | |||
14 | bzip2_SOURCES = bzip2.c | ||
15 | bzip2_LDADD = libbz2.la | ||
16 | bzip2_DEPENDENCIES = libbz2.la | ||
17 | |||
18 | include_HEADERS = bzlib.h | ||
19 | |||
20 | bzip2recover_SOURCES = bzip2recover.c | ||
21 | bzip2recover_LDADD = libbz2.la | ||
22 | bzip2recover_DEPENDENCIES = libbz2.la | ||
23 | |||
24 | bin_SCRIPTS = bzgrep bzmore bzdiff | ||
25 | |||
26 | man_MANS = bzip2.1 bzgrep.1 bzmore.1 bzdiff.1 | ||
27 | EXTRA_DIST = $(man_MANS) | ||
28 | |||
29 | install-exec-hook: | ||
30 | ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bunzip2$(EXEEXT) | ||
31 | ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bzcat$(EXEEXT) | ||
32 | ln -s $(bindir)/bzgrep$(EXEEXT) $(DESTDIR)$(bindir)/bzegrep$(EXEEXT) | ||
33 | ln -s $(bindir)/bzgrep$(EXEEXT) $(DESTDIR)$(bindir)/bzfgrep$(EXEEXT) | ||
34 | ln -s $(bindir)/bzmore$(EXEEXT) $(DESTDIR)$(bindir)/bzless$(EXEEXT) | ||
35 | ln -s $(bindir)/bzdiff$(EXEEXT) $(DESTDIR)$(bindir)/bzcmp$(EXEEXT) | ||
36 | |||
37 | install-data-hook: | ||
38 | echo ".so man1/bzgrep.1" > $(DESTDIR)$(mandir)/man1/bzegrep.1 | ||
39 | echo ".so man1/bzgrep.1" > $(DESTDIR)$(mandir)/man1/bzfgrep.1 | ||
40 | echo ".so man1/bzmore.1" > $(DESTDIR)$(mandir)/man1/bzless.1 | ||
41 | echo ".so man1/bzdiff.1" > $(DESTDIR)$(mandir)/man1/bzcmp.1 | ||
diff --git a/meta/recipes-extended/bzip2/bzip2-1.0.5/configure.ac b/meta/recipes-extended/bzip2/bzip2-1.0.5/configure.ac new file mode 100644 index 0000000000..14b1d1809d --- /dev/null +++ b/meta/recipes-extended/bzip2/bzip2-1.0.5/configure.ac | |||
@@ -0,0 +1,14 @@ | |||
1 | AC_PREREQ([2.57]) | ||
2 | |||
3 | AC_INIT(bzip2, 2.0.5, , libXrender) | ||
4 | AM_INIT_AUTOMAKE() | ||
5 | AM_MAINTAINER_MODE | ||
6 | |||
7 | #AM_CONFIG_HEADER(config.h) | ||
8 | |||
9 | # Check for progs | ||
10 | AC_PROG_CC | ||
11 | AC_PROG_LIBTOOL | ||
12 | |||
13 | AC_OUTPUT([Makefile]) | ||
14 | |||
diff --git a/meta/recipes-extended/bzip2/bzip2_1.0.5.bb b/meta/recipes-extended/bzip2/bzip2_1.0.5.bb new file mode 100644 index 0000000000..c6339c0676 --- /dev/null +++ b/meta/recipes-extended/bzip2/bzip2_1.0.5.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | DESCRIPTION = "Very high-quality data compression program." | ||
2 | HOMEPAGE = "http://www.bzip.org/" | ||
3 | SECTION = "console/utils" | ||
4 | LICENSE = "bzip2" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;beginline=8;endline=37;md5=40d9d1eb05736d1bfc86cfdd9106e6b2" | ||
6 | PR = "r2" | ||
7 | |||
8 | SRC_URI = "http://www.bzip.org/${PV}/${BPN}-${PV}.tar.gz \ | ||
9 | file://configure.ac \ | ||
10 | file://Makefile.am" | ||
11 | |||
12 | CFLAGS_append = " -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64" | ||
13 | |||
14 | inherit autotools | ||
15 | |||
16 | do_configure_prepend () { | ||
17 | cp ${WORKDIR}/configure.ac ${S}/ | ||
18 | cp ${WORKDIR}/Makefile.am ${S}/ | ||
19 | cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/ | ||
20 | } | ||
21 | |||
22 | do_install_append () { | ||
23 | if [ "${BUILD_ARCH}" != "${HOST_ARCH}" ]; then | ||
24 | mv ${D}${bindir}/bunzip2 ${D}${bindir}/bunzip2.${PN} | ||
25 | mv ${D}${bindir}/bzcat ${D}${bindir}/bzcat.${PN} | ||
26 | fi | ||
27 | } | ||
28 | |||
29 | pkg_postinst_${PN} () { | ||
30 | update-alternatives --install ${bindir}/bunzip2 bunzip2 bunzip2.${PN} 100 | ||
31 | update-alternatives --install ${bindir}/bzcat bzcat bzcat.${PN} 100 | ||
32 | } | ||
33 | |||
34 | |||
35 | pkg_prerm_${PN} () { | ||
36 | update-alternatives --remove bunzip2 bunzip2.${PN} | ||
37 | update-alternatives --remove bzcat bzcat.${PN} | ||
38 | } | ||
39 | |||
40 | PROVIDES_append_virtclass-native = " bzip2-full-native" | ||
41 | BBCLASSEXTEND = "native" | ||