#Maintainer: George Vlahavas (vlahavas~at~gmail~dot~com, gapan@zenwalk forums) pkgname=nautilus-cd-burner pkgver=2.25.3 zenver=60 pkgrel=1 arch=i486 source=("http://ftp.acc.umu.se/pub/GNOME/sources/nautilus-cd-burner/2.25/nautilus-cd-burner-2.25.3.tar.bz2") sourcetemplate=http://pnboy.pinguix.com/gapan/gnome/$pkgname docs=("readme" "install" "copying" "changelog" "authors" "news" "todo") url=www.gnome.org options=('norequiredbuilder' 'keepdepfile' 'noautodotnew') slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "nautilus-cd-burner - CD Burning Extension for Nautilus" "Nautilus CD Burner is a CD Burning Extension for the Nautilus File" "Manager." ) 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" --disable-static 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 }