blob: 30f33c0ab8a66e6a5526c36948d057d3094e1d5e (
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
|
DESCRIPTION = "Gnome videoconferencing application"
LICENSE = "GPLv2"
PR = "r1"
ARM_INSTRUCTION_SET = "arm"
inherit gnome
DEPENDS += " avahi libnotify eds-dbus libgnome gtkmm libsigc++-2.0 gstreamer opal ptlib"
RDEPENDS += "opal ptlib"
SRC_URI = "http://www.ekiga.org/admin/downloads/latest/sources/ekiga_${PV}/ekiga-${PV}.tar.gz \
file://static-fix.diff;patch=1"
EXTRA_OECONF = " --enable-static-libs --disable-gdu --disable-scrollkeeper "
CFLAGS_append = " -DSTATIC_LIBS_USED "
CXXFLAGS_append = " -DSTATIC_LIBS_USED "
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} += "${datadir}/dbus-1 ${datadir}/icons"
|