| Submitter | Eric BENARD |
|---|---|
| Date | March 13, 2011, 6:58 p.m. |
| Message ID | <1300042739-17381-2-git-send-email-eric@eukrea.com> |
| Download | mbox | patch |
| Permalink | /patch/1375/ |
| State | Accepted |
| Headers | show |
Comments
On 3/13/2011 11:58 AM, Eric Bénard wrote: > Signed-off-by: Eric Bénard<eric@eukrea.com> Acked-by: Khem Raj <raj.khem@gmail.com> > --- > recipes/apr/apr-util_1.3.10.bb | 36 ++++++++++++++++++++++++++++++++++++ > 1 files changed, 36 insertions(+), 0 deletions(-) > create mode 100644 recipes/apr/apr-util_1.3.10.bb > > diff --git a/recipes/apr/apr-util_1.3.10.bb b/recipes/apr/apr-util_1.3.10.bb > new file mode 100644 > index 0000000..ee32ddd > --- /dev/null > +++ b/recipes/apr/apr-util_1.3.10.bb > @@ -0,0 +1,36 @@ > +DESCRIPTION = "Apache Portable Runtime (APR) companion library" > +SECTION = "libs" > +DEPENDS = "apr expat gdbm" > +LICENSE = "Apache License, Version 2.0" > + > +PR = "r0" > + > +SRC_URI = "${APACHE_MIRROR}/apr/${P}.tar.gz \ > + file://configfix.patch \ > + file://configure_fixes.patch" > + > +EXTRA_OECONF = "--with-apr=${STAGING_BINDIR_CROSS}/apr-1-config \ > + --with-dbm=gdbm \ > + --with-gdbm=${STAGING_DIR_HOST}${layout_prefix} \ > + --without-sqlite2 \ > + --without-sqlite3 \ > + --without-pgsql \ > + --with-expat=${STAGING_DIR_HOST}${layout_prefix}" > + > +SRC_URI[md5sum] = "82acd25cf3df8c72eba44eaee8b80c19" > +SRC_URI[sha256sum] = "7c37ac40b2351bfc23000fb6b7b54a67e0872255df315c82eb60c821bcef4b23" > + > +inherit autotools lib_package binconfig > + > +OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" > + > +do_configure_prepend() { > + cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk > + echo "AC_PROG_LIBTOOL">> ${S}/configure.in > +} > + > +do_configure_append() { > + sed -i -e s:apr_builders=/usr/share/build-1:apr_builders=${STAGING_DATADIR}/build-1:g ${S}/build/rules.mk > + sed -i /^LIBTOOL/d ${S}/build/rules.mk > + echo LIBTOOL="${HOST_SYS}-libtool --tag=CC">> ${S}/build/rules.mk > +}
Patch
diff --git a/recipes/apr/apr-util_1.3.10.bb b/recipes/apr/apr-util_1.3.10.bb new file mode 100644 index 0000000..ee32ddd --- /dev/null +++ b/recipes/apr/apr-util_1.3.10.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "Apache Portable Runtime (APR) companion library" +SECTION = "libs" +DEPENDS = "apr expat gdbm" +LICENSE = "Apache License, Version 2.0" + +PR = "r0" + +SRC_URI = "${APACHE_MIRROR}/apr/${P}.tar.gz \ + file://configfix.patch \ + file://configure_fixes.patch" + +EXTRA_OECONF = "--with-apr=${STAGING_BINDIR_CROSS}/apr-1-config \ + --with-dbm=gdbm \ + --with-gdbm=${STAGING_DIR_HOST}${layout_prefix} \ + --without-sqlite2 \ + --without-sqlite3 \ + --without-pgsql \ + --with-expat=${STAGING_DIR_HOST}${layout_prefix}" + +SRC_URI[md5sum] = "82acd25cf3df8c72eba44eaee8b80c19" +SRC_URI[sha256sum] = "7c37ac40b2351bfc23000fb6b7b54a67e0872255df315c82eb60c821bcef4b23" + +inherit autotools lib_package binconfig + +OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" + +do_configure_prepend() { + cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk + echo "AC_PROG_LIBTOOL" >> ${S}/configure.in +} + +do_configure_append() { + sed -i -e s:apr_builders=/usr/share/build-1:apr_builders=${STAGING_DATADIR}/build-1:g ${S}/build/rules.mk + sed -i /^LIBTOOL/d ${S}/build/rules.mk + echo LIBTOOL="${HOST_SYS}-libtool --tag=CC" >> ${S}/build/rules.mk +}
Signed-off-by: Eric Bénard <eric@eukrea.com> --- recipes/apr/apr-util_1.3.10.bb | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) create mode 100644 recipes/apr/apr-util_1.3.10.bb