blob: 474eed9c9c9a289bfc4d4180ba23692d9bcb7880 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
DESCRIPTION = "FarSight is an audio/video conferencing framework specifically designed for Instant Messengers."
HOMEPAGE = "http://farsight.sf.net"
SRC_URI = "http://telepathy.freedesktop.org/releases/farsight/${P}.tar.gz"
DEPENDS = "glib-2.0 libxml2 zlib dbus libjingle gstreamer gst-plugins-base"
inherit autotools pkgconfig
EXTRA_OECONF = " \
--disable-debug \
--disable-gtk-doc \
--disable-sequence-diagrams \
--disable-sofia-sip \
--enable-jingle-p2p \
--disable-gnet \
--disable-msnwebcam \
--disable-msnavconf \
--disable-yahoowebcam \
--enable-rtp"
FILES_${PN} += "${libdir}/farsight-0.1/*so"
FILES_${PN}-dev += "${libdir}/farsight-0.1/*.a ${libdir}/farsight-0.1/*.so.*"
do_stage() {
autotools_stage_all
}
|