diff options
author | Justin H Haynes <justin@justinhaynes.com> | 2010-05-11 22:54:43 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:54:43 +0200 |
commit | 669e6aaf073ee535bc743a5b7518d9d2a1657a59 (patch) | |
tree | 8cb2d3b36de5d5b555a4ea441c2e2a67b1a82970 /network | |
parent | aaf706d31764d76bcaed1d781a7e3a648d8c4af8 (diff) |
network/davfs2: Added to 12.1 repository
Diffstat (limited to 'network')
-rw-r--r-- | network/davfs2/README | 14 | ||||
-rw-r--r-- | network/davfs2/davfs2.SlackBuild | 115 | ||||
-rw-r--r-- | network/davfs2/davfs2.info | 8 | ||||
-rw-r--r-- | network/davfs2/doinst.sh | 16 | ||||
-rw-r--r-- | network/davfs2/slack-desc | 20 |
5 files changed, 173 insertions, 0 deletions
diff --git a/network/davfs2/README b/network/davfs2/README new file mode 100644 index 000000000000..c2fb1feda09a --- /dev/null +++ b/network/davfs2/README @@ -0,0 +1,14 @@ +davfs2 (WebDAV Linux File System) + +davfs2 is a Linux file system driver that allows you to mount a WebDAV +server as a local file system, like a disk drive. This way +applications can access resources on a Web server without knowing +anything about HTTP or WebDAV. Davfs2 runs as a daemon in userspace. +It uses the kernel file system fuse (or coda, but fuse is in Slack +12.1 kernel). To connect to the WebDAV server it makes use of the +neon library. Neon supports TLS/SSL using OpenSSL(or GnuTLS, but +Slack has OpenSSL) and access via proxy server. + +Dependencies are: neon (neon-0.26.4 is included in Slack 12.1) + +http://sourceforge.net/projects/dav/ diff --git a/network/davfs2/davfs2.SlackBuild b/network/davfs2/davfs2.SlackBuild new file mode 100644 index 000000000000..134b6f1caa95 --- /dev/null +++ b/network/davfs2/davfs2.SlackBuild @@ -0,0 +1,115 @@ +#!/bin/sh + +# Slackware build script for davfs2 + +# Copyright (c) 2008, Justin H Haynes <justin@justinhaynes.com> +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +# Modified by Robby Workman <rworkman@slackbuilds.org> + +PRGNAM=davfs2 +VERSION=${VERSION:-1.3.3} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +## davfs2 user & group *MUST* exist before package creation +# See http://slackbuilds.org/uid_gid.txt for current recomendations. +# This block inspired by Daniel de Kok's code in lighttpd.SlackBuild +# also available from slackbuilds.org + +DAVFS2_USER=${DAVFS2_USER:-davfs2} +DAVFS2_GROUP=${DAVFS2_GROUP:-davfs2} + +if ! grep ^$DAVFS2_GROUP: /etc/group > /dev/null 2>&1; then + echo "$0: Error: DAVFS2 group ($DAVFS2_GROUP) doesn't exist." + echo "$0: Try creating one with: groupadd -g 219 $DAVFS2_GROUP" + exit 1 +fi + +if ! grep ^$DAVFS2_USER: /etc/passwd > /dev/null 2>&1; then + echo "$0: Error: DAVFS2 user ($DAVFS2_USER) doesn't exist." + echo "$0: Try creating one with: useradd -u 219 -g $DAVFS2_GROUP $DAVFS2_USER" + exit 1 +fi + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +dav_user=$DAVFS2_USER \ +dav_group=$DAVFS2_GROUP \ +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +# Manpages go to the wrong place regardless of configure, so we'll move them; +# however, they are already compressed +mv $PKG/usr/share/man $PKG/usr + +# --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.devfs and umount.devfs 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 || exit 1 + for i in * ; do + mv $i ../../sbin + ln -s ../../sbin/$i $i + done +) + +# Let's not clobber config files +mv $PKG/etc/davfs2/davfs2.conf $PKG/etc/davfs2/davfs2.conf.new +mv $PKG/etc/davfs2/secrets $PKG/etc/davfs2/secrets.new + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/network/davfs2/davfs2.info b/network/davfs2/davfs2.info new file mode 100644 index 000000000000..c442447f17b7 --- /dev/null +++ b/network/davfs2/davfs2.info @@ -0,0 +1,8 @@ +PRGNAM="davfs2" +VERSION="1.3.3" +HOMEPAGE="http://sourceforge.net/projects/dav/" +DOWNLOAD="http://downloads.sourceforge.net/dav/davfs2-1.3.3.tar.gz" +MD5SUM="57def26e4d6d63527e01612d10fd0515" +MAINTAINER="Justin H Haynes" +EMAIL="justin@justinhaynes.com" +APPROVED="rworkman" diff --git a/network/davfs2/doinst.sh b/network/davfs2/doinst.sh new file mode 100644 index 000000000000..73ce3793dea5 --- /dev/null +++ b/network/davfs2/doinst.sh @@ -0,0 +1,16 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/davfs2/davfs2.conf.new +config etc/davfs2/secrets.new + diff --git a/network/davfs2/slack-desc b/network/davfs2/slack-desc new file mode 100644 index 000000000000..42a133aca28b --- /dev/null +++ b/network/davfs2/slack-desc @@ -0,0 +1,20 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +davfs2: davfs2 (WebDAV Linux File System) +davfs2: +davfs2: davfs2 is a Linux file system driver that allows you to mount a WebDAV +davfs2: server as a local file system, like a disk drive. This way +davfs2: applications can access resources on a Web server without knowing +davfs2: anything about HTTP or WebDAV. Davfs2 runs as a daemon in userspace. +davfs2: It uses the kernel file system fuse (or coda, but fuse is in Slack +davfs2: 12.1 kernel). To connect to the WebDAV server it makes use of the +davfs2: neon library. Neon supports TLS/SSL using OpenSSL(or GnuTLS, but +davfs2: Slack has OpenSSL) and access via proxy server. +davfs2: +davfs2: Homepage: http://sourceforge.net/projects/dav/ |