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: An open source VoIP and video conferencing application for GNOME
# URL: http://www.ekiga.org/
# Maintainer: NuTyX GNOME team
# Packager: thierryn1 at hispeed dot ch
# Depends on: esound, sdl, ptlib, opal, gtk, libgnomeui, libsigc++, dbus-glib, avahi-gtk, evolution-data-server, libnotify, boost, gnome-doc-utils, desktop-file-utils
# Run on: esound,sdl,ptlib,opal,gtk,libgnomeui,libsigc++,dbus-glib,avahi-gtk,evolution-data-server,libnotify,desktop-file-utils
name=ekiga
version=3.3.2
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-ldap \
--localstatedir=/var/lib \
--enable-dbus \
--disable-schemas-install \
--disable-scrollkeeper \
--with-boost-libdir=/lib
make
make DESTDIR=$PKG GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
install -m755 -d $PKG/usr/share/gconf/schemas
gconf-merge-schema $PKG/usr/share/gconf/schemas/$name.schemas --domain $name $PKG/etc/gconf/schemas/*.schemas
rm -f $PKG/etc/gconf/schemas/*.schemas
}
|