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-support/apr/apr_1.3.3.bb | |
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-support/apr/apr_1.3.3.bb')
-rw-r--r-- | meta/recipes-support/apr/apr_1.3.3.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-support/apr/apr_1.3.3.bb b/meta/recipes-support/apr/apr_1.3.3.bb new file mode 100644 index 0000000000..a193a18a2e --- /dev/null +++ b/meta/recipes-support/apr/apr_1.3.3.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | DESCRIPTION = "Apache Portable Runtime (APR) library" | ||
2 | SECTION = "libs" | ||
3 | LICENSE = "Apache License, Version 2.0" | ||
4 | |||
5 | PR = "r5" | ||
6 | |||
7 | SRC_URI = "${APACHE_MIRROR}/apr/${P}.tar.bz2 \ | ||
8 | file://configure_fixes.patch;patch=1 \ | ||
9 | file://cleanup.patch;patch=1 \ | ||
10 | file://configfix.patch;patch=1" | ||
11 | |||
12 | inherit autotools lib_package binconfig | ||
13 | |||
14 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" | ||
15 | |||
16 | do_configure_prepend() { | ||
17 | cd ${S} | ||
18 | ./buildconf | ||
19 | } | ||
20 | |||
21 | SYSROOT_PREPROCESS_FUNCS += "apr_sysroot_preprocess" | ||
22 | |||
23 | apr_sysroot_preprocess () { | ||
24 | d=${SYSROOT_DESTDIR}${STAGING_DIR_TARGET}${datadir}/apr | ||
25 | install -d $d/ | ||
26 | cp ${S}/build/apr_rules.mk $d/ | ||
27 | sed -i s,apr_builddir=.*,apr_builddir=,g $d/apr_rules.mk | ||
28 | sed -i s,apr_builders=.*,apr_builders=,g $d/apr_rules.mk | ||
29 | sed -i s,LIBTOOL=.*,LIBTOOL=\$\(SHELL\)\ ${TARGET_PREFIX}libtool,g $d/apr_rules.mk | ||
30 | sed -i s,\$\(apr_builders\),${STAGING_DATADIR}/apr/,g $d/apr_rules.mk | ||
31 | cp ${S}/build/mkdir.sh $d/ | ||
32 | cp ${S}/build/make_exports.awk $d/ | ||
33 | cp ${S}/build/make_var_export.awk $d/ | ||
34 | } | ||