davfs2: initial commit, version 1.5.6

This commit is contained in:
Tim Biermann 2020-06-07 14:01:10 +00:00
parent 12ca847ac6
commit 2cecd8ea5b
3 changed files with 50 additions and 0 deletions

23
davfs2/.footprint Normal file
View File

@ -0,0 +1,23 @@
drwxr-xr-x root/root sbin/
lrwxrwxrwx root/root sbin/mount.davfs -> /usr/sbin/mount.davfs
lrwxrwxrwx root/root sbin/umount.davfs -> /usr/sbin/umount.davfs
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/etc/
drwxr-xr-x root/root usr/etc/davfs2/
drwxr-xr-x root/root usr/etc/davfs2/certs/
drwx------ root/root usr/etc/davfs2/certs/private/
-rw-r--r-- root/root usr/etc/davfs2/davfs2.conf
-rw------- root/root usr/etc/davfs2/secrets
drwxr-xr-x root/root usr/sbin/
-rwsr-xr-x root/root usr/sbin/mount.davfs
-rwxr-xr-x root/root usr/sbin/umount.davfs
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/davfs2/
-rw-r--r-- root/root usr/share/davfs2/davfs2.conf
-rw-r--r-- root/root usr/share/davfs2/secrets
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/davfs2.conf.5.gz
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/mount.davfs.8.gz
-rw-r--r-- root/root usr/share/man/man8/umount.davfs.8.gz

5
davfs2/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3wLtY2RMBl/hmUBhUYB1NLqo13w4md0zM6i583lFQRPmK32Qjoxm1S4ClS/SgYOZCrG6QhByGXu1b0Hqh8454gg=
SHA256 (Pkgfile) = 4a104deaf6947296e40634249fac31a240fbc79f6b200b92ddc75ed00d0c3231
SHA256 (.footprint) = e5fe013a18c9862c62f0bdd5d93b944ba45786f1b2e12317e92e02550ef75106
SHA256 (davfs2-1.5.6.tar.gz) = 417476cdcfd53966b2dcfaf12455b54f315959b488a89255ab4b44586153d801

22
davfs2/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: File system driver that allows you to mount a WebDAV folder
# URL: http://savannah.nongnu.org/projects/davfs2
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: expat keyutils krb5 neon
name=davfs2
version=1.5.6
release=1
source=(http://mirror.easyname.at/nongnu/$name/$name-$version.tar.gz)
build() {
cd $name-$version
dav_user=nobody \
dav_group=network
# allow neon version 31
sed -i 's/29 30/29 30 31/g' configure
./configure --prefix=/usr \
--disable-debug
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/{doc,locale}
}