diff options
author | Justin Patrin <papercrane@gmail.com> | 2006-11-17 15:46:09 +0000 |
---|---|---|
committer | Justin Patrin <papercrane@gmail.com> | 2006-11-17 15:46:09 +0000 |
commit | 3e03513ed1a9b2f3982ed05c099474e9e6b982b4 (patch) | |
tree | 1fb5ae4c9ff65ff4e40ec9adb84dd169657c8110 /packages/apr | |
parent | 54665987a0b8a370cd8ce922c84c362334f2d551 (diff) |
apr: add versions from .oz354x
Diffstat (limited to 'packages/apr')
-rw-r--r-- | packages/apr/apr-util_1.1.2.bb | 21 | ||||
-rw-r--r-- | packages/apr/apr_1.1.1.bb | 18 |
2 files changed, 39 insertions, 0 deletions
diff --git a/packages/apr/apr-util_1.1.2.bb b/packages/apr/apr-util_1.1.2.bb new file mode 100644 index 0000000000..ad89228fff --- /dev/null +++ b/packages/apr/apr-util_1.1.2.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Apache Portable Runtime (APR) companion library" +SECTION = "libs" +DEPENDS = "apr expat gdbm" +LICENSE = "Apache License, Version 2.0" + +PR = "r0" + +# apache mirrors? +SRC_URI = "${APACHE_MIRROR}/apr/${P}.tar.gz" + +EXTRA_OECONF = "--with-apr=${STAGING_BINDIR} --with-dbm=gdbm --with-gdbm=${STAGING_DIR}/${HOST_SYS} --with-expat=${STAGING_DIR}/${HOST_SYS}" + +inherit autotools lib_package binconfig + +do_configure() { + oe_runconf +} + +do_stage() { + oe_libinstall -a -so -C .libs libaprutil-1 ${STAGING_LIBDIR} +} diff --git a/packages/apr/apr_1.1.1.bb b/packages/apr/apr_1.1.1.bb new file mode 100644 index 0000000000..6374949f91 --- /dev/null +++ b/packages/apr/apr_1.1.1.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "Apache Portable Runtime (APR) library" +SECTION = "libs" +LICENSE = "Apache License, Version 2.0" + +PR = "r0" + +# apache mirrors? +SRC_URI = "${APACHE_MIRROR}/apr/${P}.tar.bz2" + +inherit autotools lib_package binconfig + +do_configure() { + oe_runconf +} + +do_stage() { + oe_libinstall -a -so -C .libs libapr-1 ${STAGING_LIBDIR} +} |