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/neon | |
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/neon')
-rw-r--r-- | meta/recipes-support/neon/neon-0.29.3/pkgconfig.patch | 16 | ||||
-rw-r--r-- | meta/recipes-support/neon/neon_0.29.3.bb | 16 |
2 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-support/neon/neon-0.29.3/pkgconfig.patch b/meta/recipes-support/neon/neon-0.29.3/pkgconfig.patch new file mode 100644 index 0000000000..6256d9ab2b --- /dev/null +++ b/meta/recipes-support/neon/neon-0.29.3/pkgconfig.patch | |||
@@ -0,0 +1,16 @@ | |||
1 | --- | ||
2 | neon.pc.in | 2 +- | ||
3 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
4 | |||
5 | --- neon-0.28.1.orig/neon.pc.in | ||
6 | +++ neon-0.28.1/neon.pc.in | ||
7 | @@ -4,8 +4,8 @@ libdir=@libdir@ | ||
8 | includedir=@includedir@ | ||
9 | |||
10 | Name: neon | ||
11 | Description: HTTP/WebDAV client library | ||
12 | Version: @NEON_VERSION@ | ||
13 | -Libs.private: @NEON_LIBS@ | ||
14 | +Libs.private: -L${libdir} -lz -lgcrypt -lgpg-error -lexpat -lgnutls | ||
15 | Libs: -L${libdir} -lneon @NEON_PC_LIBS@ | ||
16 | Cflags: -I${includedir}/neon @NEON_CFLAGS@ | ||
diff --git a/meta/recipes-support/neon/neon_0.29.3.bb b/meta/recipes-support/neon/neon_0.29.3.bb new file mode 100644 index 0000000000..bb18893f9e --- /dev/null +++ b/meta/recipes-support/neon/neon_0.29.3.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "neon is an HTTP and WebDAV client library, with a C interface." | ||
2 | HOMEPAGE = "http://www.webdav.org/neon/" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "LGPLv2+" | ||
5 | LIC_FILES_CHKSUM = "file://src/COPYING.LIB;md5=f30a9716ef3762e3467a2f62bf790f0a \ | ||
6 | file://src/ne_utils.h;beginline=1;endline=20;md5=2caca609538eddaa6f6adf120a218037" | ||
7 | DEPENDS = "zlib libxml2 expat time gnutls" | ||
8 | |||
9 | PR = "r0" | ||
10 | |||
11 | SRC_URI = "http://www.webdav.org/${PN}/${P}.tar.gz \ | ||
12 | file://pkgconfig.patch;patch=1" | ||
13 | |||
14 | inherit autotools binconfig lib_package pkgconfig | ||
15 | |||
16 | EXTRA_OECONF = "--with-ssl=gnutls --with-libxml2 --with-expat --enable-shared" | ||