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-connectivity/farsight | |
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-connectivity/farsight')
-rw-r--r-- | meta/recipes-connectivity/farsight/farsight2_0.0.9.bb | 24 | ||||
-rw-r--r-- | meta/recipes-connectivity/farsight/libnice_0.0.6.bb | 23 |
2 files changed, 47 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/farsight/farsight2_0.0.9.bb b/meta/recipes-connectivity/farsight/farsight2_0.0.9.bb new file mode 100644 index 0000000000..06c85f1cf0 --- /dev/null +++ b/meta/recipes-connectivity/farsight/farsight2_0.0.9.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "FarSight is an audio/video conferencing framework specifically designed for Instant Messengers." | ||
2 | HOMEPAGE = "http://farsight.sf.net" | ||
3 | SRC_URI = "http://farsight.freedesktop.org/releases/farsight2/${P}.tar.gz" | ||
4 | |||
5 | DEPENDS = "libnice glib-2.0 libxml2 zlib dbus gstreamer gst-plugins-base" | ||
6 | |||
7 | inherit autotools | ||
8 | AUTOTOOLS_STAGE_PKGCONFIG = "1" | ||
9 | |||
10 | PR = "r1" | ||
11 | |||
12 | EXTRA_OECONF = " \ | ||
13 | --disable-debug \ | ||
14 | --disable-gtk-doc \ | ||
15 | --disable-python \ | ||
16 | " | ||
17 | |||
18 | FILES_${PN} += "${libdir}/*/*.so" | ||
19 | FILES_${PN}-dev += "${libdir}/f*/*a ${libdir}/g*/*a" | ||
20 | FILES_${PN}-dbg += "${libdir}/*/.debug" | ||
21 | |||
22 | |||
23 | |||
24 | |||
diff --git a/meta/recipes-connectivity/farsight/libnice_0.0.6.bb b/meta/recipes-connectivity/farsight/libnice_0.0.6.bb new file mode 100644 index 0000000000..809b691af7 --- /dev/null +++ b/meta/recipes-connectivity/farsight/libnice_0.0.6.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | DESCRIPTION = "Libnice is an implementation of the IETF's draft Interactice Connectivity Establishment standard (ICE)." | ||
2 | HOMEPAGE = "http://nice.freedesktop.org/wiki/" | ||
3 | SRC_URI = "http://nice.freedesktop.org/releases/libnice-${PV}.tar.gz" | ||
4 | |||
5 | LICENSE = "LGPL/MPL" | ||
6 | DEPENDS = "glib-2.0 gstreamer" | ||
7 | |||
8 | inherit autotools | ||
9 | AUTOTOOLS_STAGE_PKGCONFIG = "1" | ||
10 | |||
11 | FILES_${PN} += "${libdir}/gstreamer-0.10/*.so" | ||
12 | FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*a" | ||
13 | FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug" | ||
14 | |||
15 | do_compile_append() { | ||
16 | for i in $(find ${S} -name "*.pc") ; do | ||
17 | sed -i -e s:${STAGING_DIR_TARGET}::g \ | ||
18 | -e s:/${TARGET_SYS}::g \ | ||
19 | $i | ||
20 | done | ||
21 | } | ||
22 | |||
23 | |||