#!/bin/sh PKGNAM=dmapi VERSION=2.2.8-1 BUILD=1 . /etc/pkghelpers pkghelpers_env rm -rf $PKG mkdir -p $PKG cd $TMP rm -rf dmapi-$(echo $VERSION | cut -f 1 -d '-') tar xzvf $CWD/dmapi_$VERSION.tar.gz cd dmapi-$(echo $VERSION | cut -f 1 -d '-') chown -R root:root . find . -perm 666 -exec chmod 644 {} \; find . -perm 664 -exec chmod 644 {} \; find . -perm 600 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; find . -perm 400 -exec chmod 644 {} \; find . -perm 440 -exec chmod 644 {} \; find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 511 -exec chmod 755 {} \; find . -perm 711 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; # Add DESTDIR support and improve docs install location: zcat $CWD/dmapi.destdir.diff.gz | patch -p1 --verbose --backup --suffix=.orig || exit 1 # Make sure you have the same version of autoconf as the # developers did... ;-) autoconf ./configure \ --prefix=/ \ --exec-prefix=/ \ --sbindir=/bin \ --bindir=/usr/bin \ --libdir=/lib$LIBSUFFIX \ --libexecdir=/usr/lib$LIBSUFFIX \ --includedir=/usr/include \ --mandir=/usr/man \ --datadir=/usr/share make -j5 || exit 1 make install DESTDIR=$PKG make install-dev DESTDIR=$PKG make install-lib DESTDIR=$PKG mv $PKG/usr/share/doc $PKG/usr ( cd $PKG/usr/doc ; mv dmapi dmapi-$VERSION ) # It would be nice to keep the same timestamps that the files have in the source: rm -rf $PKG/usr/doc/dmapi-$VERSION/ea-conv cp -a \ README doc/COPYING doc/PORTING doc/ea-conv \ $PKG/usr/doc/dmapi-$VERSION strip -g $PKG/usr/lib$LIBSUFFIX/*.a # Remove bogus files: rm -f $PKG/lib$LIBSUFFIX/*.a $PKG/lib$LIBSUFFIX/libdm.so $PKG/lib$LIBSUFFIX/*.la $PKG/usr/lib$LIBSUFFIX/*.la # Make /usr/lib/libdm.so a symlink to /lib: if [ -f $PKG/lib$LIBSUFFIX/libdm.so.0 ]; then ( cd $PKG/usr/lib$LIBSUFFIX ; rm -f libdm.so ; ln -sf /lib$LIBSUFFIX/libdm.so.0 libdm.so ) else exit 1 # and fix yer script!!! fi # Fix shared library perms: chmod 755 $PKG/lib$LIBSUFFIX/* mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG PKGVER=$(echo $VERSION | tr - _) pkghelpers_fixup pkghelpers_makepkg