system/davfs2: Build bump.

Fixed location of symlinks. Thanks to Chris Abela.
This commit is contained in:
Chris Abela 2010-03-03 14:25:54 -06:00 committed by Erik Hanson
parent 22d24bf4dc
commit f55095f551
2 changed files with 13 additions and 2 deletions

View file

@ -21,7 +21,7 @@
PRGNAM=davfs2
VERSION=${VERSION:-1.4.5}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
DAVFS2_USER=${DAVFS2_USER:-davfs2}
@ -107,6 +107,17 @@ mv $PKG/etc/davfs2/secrets $PKG/etc/davfs2/secrets.new
# --docdir is respected, but we'll add the build script
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
# davfs2 autobuild places mount.davfs and umount.davfs in /usr/sbin
# and places symlinks in /sbin. In Slackware, our mount backends
# only belong in /sbin, so let's put them there and adjust the links
( cd $PKG/usr/sbin
for i in * ; do
mv $i ../../sbin
ln -s ../../sbin/$i $i
done
)
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh

View file

@ -7,4 +7,4 @@ DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Chris Abela"
EMAIL="chris.abela@maltats.com"
APPROVED="rworkman"
APPROVED="Erik Hanson"