diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-08-19 17:08:45 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-08-19 17:08:45 +0100 |
commit | 214e407cede869547a9db07f0be93de006d58928 (patch) | |
tree | b2bc5740827a7e514b4f27bf544da37a043fb759 /meta/packages | |
parent | 331cd032016cec032504ae7065cc297ba086a1d0 (diff) | |
download | poky-214e407cede869547a9db07f0be93de006d58928.tar.gz |
Add farsight2 and libnice from OE.dev
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/farsight/farsight2_0.0.9.bb | 22 | ||||
-rw-r--r-- | meta/packages/farsight/libnice_0.0.6.bb | 23 |
2 files changed, 45 insertions, 0 deletions
diff --git a/meta/packages/farsight/farsight2_0.0.9.bb b/meta/packages/farsight/farsight2_0.0.9.bb new file mode 100644 index 0000000000..19e081c33a --- /dev/null +++ b/meta/packages/farsight/farsight2_0.0.9.bb | |||
@@ -0,0 +1,22 @@ | |||
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_stage | ||
8 | AUTOTOOLS_STAGE_PKGCONFIG = "1" | ||
9 | |||
10 | EXTRA_OECONF = " \ | ||
11 | --disable-debug \ | ||
12 | --disable-gtk-doc \ | ||
13 | --disable-python \ | ||
14 | " | ||
15 | |||
16 | FILES_${PN} += "${libdir}/*/*.so" | ||
17 | FILES_${PN}-dev += "${libdir}/*/*a" | ||
18 | FILES_${PN}-dbg += "${libdir}/*/.debug" | ||
19 | |||
20 | |||
21 | |||
22 | |||
diff --git a/meta/packages/farsight/libnice_0.0.6.bb b/meta/packages/farsight/libnice_0.0.6.bb new file mode 100644 index 0000000000..fa478dc0e3 --- /dev/null +++ b/meta/packages/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_stage | ||
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 | |||