blob: 025767b2c6fd19d863c252069f15ca5ec123dfee (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
DESCRIPTION = "Gnome videoconferencing application"
LICENSE = "GPLv2"
ARM_INSTRUCTION_SET = "arm"
DEFAULT_PREFERENCE = "-1"
DEFAULT_PREFERENCE_angstrom = "1"
PV = "3.3.1+git"
PR = "r6+gitr${SRCREV}"
SRCREV = "7c669dd4ce69296f09004f8876366058c20a3352"
inherit gnome
SRC_URI = "git://git.gnome.org/ekiga;protocol=git;branch=master \
"
S = "${WORKDIR}/git"
DEPENDS += " boost avahi libnotify eds-dbus libgnome gtkmm libsigc++-2.0 gstreamer gst-plugins-good gst-plugins-base gst-plugins-bad opal ptlib gnome-doc-utils"
RDEPENDS_${PN} += "gst-plugin-app gst-plugin-video4linux2 opal ptlib"
EXTRA_OECONF = " \
# --enable-static-libs \
--disable-ldap \
--disable-gnome \
--enable-gstreamer \
--disable-gdu \
--disable-scrollkeeper \
--with-boost-signals=boost_signals-mt \
"
do_configure_prepend() {
touch gnome-doc-utils.make
}
do_configure_append() {
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
find ${S} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
}
FILES_${PN}-dbg += "${libdir}/ekiga/*/plugins/.debug ${libdir}/ekiga/*/.debug"
FILES_${PN} += "${datadir}/dbus-1 ${datadir}/icons"
|