mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
Add a bzip2-full-native recipe and make the python-native recipe depend on it.
Yum requires bzip2 support in Python so our native Python package needs something to provide it. git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5233 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
41
meta/packages/bzip2/bzip2-full-native-1.0.5/Makefile.am
vendored
Normal file
41
meta/packages/bzip2/bzip2-full-native-1.0.5/Makefile.am
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
|
||||
lib_LTLIBRARIES = libbz2.la
|
||||
|
||||
libbz2_la_SOURCES = blocksort.c \
|
||||
huffman.c \
|
||||
crctable.c \
|
||||
randtable.c \
|
||||
compress.c \
|
||||
decompress.c \
|
||||
bzlib.c
|
||||
|
||||
bin_PROGRAMS = bzip2 bzip2recover
|
||||
|
||||
bzip2_SOURCES = bzip2.c
|
||||
bzip2_LDADD = libbz2.la
|
||||
bzip2_DEPENDENCIES = libbz2.la
|
||||
|
||||
include_HEADERS = bzlib.h
|
||||
|
||||
bzip2recover_SOURCES = bzip2recover.c
|
||||
bzip2recover_LDADD = libbz2.la
|
||||
bzip2recover_DEPENDENCIES = libbz2.la
|
||||
|
||||
bin_SCRIPTS = bzgrep bzgrep bzmore bzdiff
|
||||
|
||||
man_MANS = bzip2.1 bzgrep.1 bzmore.1 bzdiff.1
|
||||
EXTRA_DIST = $(man_MANS)
|
||||
|
||||
install-exec-hook:
|
||||
ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bunzip2$(EXEEXT)
|
||||
ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bzcat$(EXEEXT)
|
||||
ln -s $(bindir)/bzgrep$(EXEEXT) $(DESTDIR)$(bindir)/bzegrep$(EXEEXT)
|
||||
ln -s $(bindir)/bzgrep$(EXEEXT) $(DESTDIR)$(bindir)/bzfgrep$(EXEEXT)
|
||||
ln -s $(bindir)/bzmore$(EXEEXT) $(DESTDIR)$(bindir)/bzless$(EXEEXT)
|
||||
ln -s $(bindir)/bzdiff$(EXEEXT) $(DESTDIR)$(bindir)/bzcmp$(EXEEXT)
|
||||
|
||||
install-data-hook:
|
||||
echo ".so man1/bzgrep.1" > $(DESTDIR)$(mandir)/man1/bzegrep.1
|
||||
echo ".so man1/bzgrep.1" > $(DESTDIR)$(mandir)/man1/bzfgrep.1
|
||||
echo ".so man1/bzmore.1" > $(DESTDIR)$(mandir)/man1/bzless.1
|
||||
echo ".so man1/bzdiff.1" > $(DESTDIR)$(mandir)/man1/bzcmp.1
|
||||
14
meta/packages/bzip2/bzip2-full-native-1.0.5/configure.ac
vendored
Normal file
14
meta/packages/bzip2/bzip2-full-native-1.0.5/configure.ac
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
AC_PREREQ([2.57])
|
||||
|
||||
AC_INIT(bzip2, 2.0.5, , libXrender)
|
||||
AM_INIT_AUTOMAKE()
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
#AM_CONFIG_HEADER(config.h)
|
||||
|
||||
# Check for progs
|
||||
AC_PROG_CC
|
||||
AC_PROG_LIBTOOL
|
||||
|
||||
AC_OUTPUT([Makefile])
|
||||
|
||||
25
meta/packages/bzip2/bzip2-full-native_1.0.5.bb
Normal file
25
meta/packages/bzip2/bzip2-full-native_1.0.5.bb
Normal file
@@ -0,0 +1,25 @@
|
||||
DESCRIPTION = "Very high-quality data compression program."
|
||||
SECTION = "console/utils"
|
||||
PR = "r0"
|
||||
|
||||
LICENSE = "bzip2"
|
||||
SRC_URI = "http://www.bzip.org/1.0.5/bzip2-1.0.5.tar.gz \
|
||||
file://configure.ac \
|
||||
file://Makefile.am"
|
||||
|
||||
S = "${WORKDIR}/bzip2-${PV}"
|
||||
|
||||
CFLAGS_append = " -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64"
|
||||
|
||||
inherit autotools native
|
||||
|
||||
do_configure_prepend () {
|
||||
cp ${WORKDIR}/configure.ac ${S}/
|
||||
cp ${WORKDIR}/Makefile.am ${S}/
|
||||
cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
|
||||
}
|
||||
|
||||
do_stage () {
|
||||
install -m 0644 bzlib.h ${STAGING_INCDIR}/
|
||||
oe_libinstall -a -so libbz2 ${STAGING_LIBDIR}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
DESCRIPTION = "The Python Programming Language"
|
||||
HOMEPAGE = "http://www.python.org"
|
||||
LICENSE = "PSF"
|
||||
DEPENDS = "openssl-native"
|
||||
DEPENDS = "openssl-native bzip2-full-native"
|
||||
SECTION = "devel/python"
|
||||
PRIORITY = "optional"
|
||||
PR = "ml5"
|
||||
|
||||
Reference in New Issue
Block a user