#Maintainer: George Vlahavas (vlahavas@gmail.com, gapan@zenwalk forums) pkgname=evolution-exchange pkgver=2.22.2 pkgrel=1 zenver=52 arch=i486 source=("ftp://ftp.gnome.org/pub/gnome/sources/evolution-exchange/2.22/evolution-exchange-2.22.2.tar.bz2") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo" "authors" "maintainers") url=www.gnome.org options=('norequiredbuilder' 'keepdepfile') slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "evolution-exchange - Exchange plugin for the Evolution groupware suite" "The Evolution Exchange Connector adds support for Microsoft Exchange" "2000 and 2003 to the Evolution groupware suite. It uses the" "functionality of Outlook Web Access (OWA) to integrate with Exchange." "Therefore, it is a requirement that OWA is enabled on the corporate" "Exchange infrastructure." ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-schemas-install --with-gconf-source="xml::/etc/gconf/gconf.xml.defaults" --with-openldap=yes make || return 1 make install DESTDIR=$startdir/pkg # 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 }