#Maintainer: Antonino Ingegnere pkgname=gossip pkgver=0.31 pkgrel=1 zenver=54 arch=i486 source=("http://ftp.gnome.org/pub/GNOME/sources/gossip/0.31/gossip-0.31.tar.gz") docs=("readme" "install" "copying" "contributors" "changelog" "authors" "news") url="http://developer.imendio.com/projects/gossip" doinst() { # Update the scrollkeeper database (Remove stale pieces) if [ -x usr/bin/scrollkeeper-update ]; then usr/bin/scrollkeeper-update > /dev/null 2>&1 fi } slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "$pkgname - instant messaging" "Gossip is an instant messaging client for GNOME. Layered on top of" "the open protocol Jabber is a clean and easy-to-use interface," "providing users of the GNOME Desktop a friendly way to keep in" "touch with their friends." ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc 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 }