#Maintainer: tsuren #Mandatory pkgname=ekiga pkgver=3.1.0 pkgrel=2 zenver=54 arch=i486 sourcetemplate="http://zenwalk.pinguix.com/user-accounts/tsuren/xap/ekiga/" source=("ftp://ftp.gnome.org/pub/gnome/sources/ekiga/3.1/ekiga-3.1.0.tar.gz") docs=('ABOUT-NLS' 'COPYING' 'AUTHORS' 'ChangeLog' 'INSTALL' 'NEWS' 'FAQ' 'LICENSE' 'MAINTAINERS' 'README' 'TODO') url="http://ekiga.org/" extradepends=("openldap") options=('noautodotnew') slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "$pkgname - (Open Source VoIP/Video Conference Application for GNOME)" "Ekiga (formely known as GnomeMeeting) is an open source VoIP and video" "conferencing application for GNOME. Ekiga uses both the H.323 and SIP" "protocols. It supports many audio and video codecs, and is" "interoperable with other SIP compliant software and also with" "Microsoft NetMeeting." ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-schemas-install --disable-scrollkeeper --with-gconf-source="xml::/etc/gconf/gconf.xml.defaults" --enable-gstreamer make || return 1 GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 make install DESTDIR=$startdir/pkg rm -r $startdir/pkg/usr/share/applications mkdir -p $startdir/pkg/usr/share/applications cp $startdir/src/$pkgname-$pkgver/ekiga.desktop $startdir/pkg/usr/share/applications # gconf stuff export GCONF_CONFIG_SOURCE="xml::$startdir/pkg/etc/gconf/gconf.xml.defaults" if [ -d $startdir/pkg/etc/gconf/schemas ]; then install -v -d -m755 $startdir/pkg/etc/gconf/gconf.xml.defaults SCHEMAS=$startdir/pkg/etc/gconf/schemas for schema in $SCHEMAS/*.schemas; do gconftool-2 --makefile-install-rule $schema done # Reset / Verify correct permissions ( cd $startdir/pkg/etc/gconf ; find . -type d -exec chmod 755 {} \; ) ( cd $startdir/pkg/etc/gconf ; find . -type f -exec chmod 644 {} \; ) fi }