diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-08-07 21:11:38 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-08-07 21:11:38 -0700 |
commit | 6cb210accf55894d2bee00260c2bcc83ab3440c0 (patch) | |
tree | fb7dd5c4652570a10d44d1066f4fee617f218472 /recipes/wvstreams/wvstreams_4.6.bb | |
parent | edf9505ccc3f9cad77a5660ed60eb35b20bb9a2f (diff) |
wvstreams_4.6.bb: Add new recipe.
This is the latest release available as of now.
it does not compile on uclibc based system for
now.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/wvstreams/wvstreams_4.6.bb')
-rw-r--r-- | recipes/wvstreams/wvstreams_4.6.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes/wvstreams/wvstreams_4.6.bb b/recipes/wvstreams/wvstreams_4.6.bb new file mode 100644 index 0000000000..32c70a3575 --- /dev/null +++ b/recipes/wvstreams/wvstreams_4.6.bb @@ -0,0 +1,39 @@ +HOMEPAGE = "http://alumnit.ca/wiki/index.php?page=WvStreams" +LICENSE = "LGPL" +DESCRIPTION = "WvStreams is a network programming library in C++" +DEPENDS = "zlib openssl (>= 0.9.8)" + +SRC_URI = "http://wvstreams.googlecode.com/files/${PN}-${PV}.tar.gz \ + " + +inherit autotools pkgconfig + +LDFLAGS_append = " -Wl,-rpath-link,${CROSS_DIR}/${TARGET_SYS}/lib" + +EXTRA_OECONF = " --without-tcl --without-qt --without-pam" + +PACKAGES_prepend = "libuniconf libuniconf-dbg " +PACKAGES_prepend = "uniconfd uniconfd-dbg " +PACKAGES_prepend = "libwvstreams-base libwvstreams-base-dbg " +PACKAGES_prepend = "libwvstreams-extras libwvstreams-extras-dbg " + +FILES_libuniconf = "${libdir}/libuniconf.so.*" +FILES_libuniconf-dbg = "${libdir}/.debug/libuniconf.so.*" + +FILES_uniconfd = "${sbindir}/uniconfd ${sysconfdir}/uniconf.conf ${localstatedir}/uniconf" +FILES_uniconfd-dbg = "${sbindir}/.debug/uniconfd" + +FILES_libwvstreams-base = "${libdir}/libwvutils.so.*" +FILES_libwvstreams-base-dbg = "${libdir}/.debug/libwvutils.so.*" + +FILES_libwvstreams-extras = "${libdir}/libwvbase.so.* ${libdir}/libwvstreams.so.*" +FILES_libwvstreams-extras-dbg = "${libdir}/.debug/libwvbase.so.* ${libdir}/.debug/libwvstreams.so.*" + + +do_stage() { + autotools_stage_all +} +do_configure() { + autoreconf + oe_runconf +} |