# # spec file for package davfs2 # # Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # Summary: FUSE-Filesystem to access WebDAV servers License: GPL-3.0 Group: System/Filesystems Name: davfs2 Version: 1.5.2 Release: 0 Url: http://savannah.nongnu.org/projects/davfs2 #Source: http://download.savannah.gnu.org/releases/davfs2/davfs2-%%{version}.tar.gz Source: davfs2-%{version}.tar.gz Source3: davfs2-%{version}.tar.gz.sig Source98: memberlist-gpgkeys.gpg Source99: %{name}-rpmlintrc BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fuse-devel >= 2.2 BuildRequires: neon-devel BuildRequires: pwdutils Requires: fuse >= 2.2 Obsoletes: fuse-davfs2 < %{version} Provides: fuse-davfs2 = %{version} PreReq: /usr/sbin/groupadd PreReq: /usr/sbin/useradd %if 0%{?fedora} == 0 Requires(pre): pwdutils Requires(pre): permissions %else Requires(pre): shadow-utils %endif %description davfs2 is a FUSE 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 coda or fuse. Most propably your Linux kernel includes at least one of this file systems. To connect to the WebDAV server it makes use of the neon library. Neon supports TLS/SSL (using OpenSSL or GnuTLS) and access via proxy server. %prep %setup -q -n "davfs2-%{version}" cd src %build ssbindir="%{_sbindir}" \ dav_user="davfs2" \ dav_group="davfs2" \ %configure \ --disable-static %if 0%{?suse_version} >= 1000 PIE="-fPIE" pie="-pie" %endif make AM_CFLAGS="-Wall $PIE" AM_LDFLAGS="$pie" %{?_smp_mflags} %install %{?make_install} %{!?make_install:%__make DESTDIR=%{?buildroot} install} %__rm -rf "%{buildroot}%{_datadir}/doc" %__install -d "%{buildroot}/var/cache/davfs2" %find_lang davfs2 %__rm -rf "%{buildroot}%{_docdir}" %__debug_install_post %pre /usr/bin/getent group davfs2 >/dev/null 2>&1 || /usr/sbin/groupadd -r davfs2 || : /usr/bin/getent passwd davfs2 >/dev/null 2>&1 || /usr/sbin/useradd -r -g davfs2 -d /var/cache/davfs2 davfs2 || : %post %if 0%{?set_permissions:1} > 0 %set_permissions "%{_sbindir}/mount.davfs" %else %if 0%{?run_permissions:1} > 0 %run_permissions %endif %endif %if 0%{?suse_version} >= 1120 %verifyscript %verify_permissions -e %{_sbindir}/mount.davfs %endif %files -f davfs2.lang %defattr(-, root, root, 0755) %doc AUTHORS BUGS COPYING FAQ NEWS README* THANKS TODO etc/davfs2.conf etc/secrets %dir %{_sysconfdir}/davfs2 %doc %{_mandir}/man5/davfs2.conf.5%{ext_man} %doc %{_mandir}/man8/mount.davfs.8%{ext_man} %doc %{_mandir}/man8/umount.davfs.8%{ext_man} %doc %{_mandir}/*/man5/davfs2.conf.5%{ext_man} %doc %{_mandir}/*/man8/mount.davfs.8%{ext_man} %doc %{_mandir}/*/man8/umount.davfs.8%{ext_man} %config(noreplace) %{_sysconfdir}/davfs2/davfs2.conf %config %{_sysconfdir}/davfs2/secrets %config %{_sysconfdir}/davfs2/certs/ %verify(not user group mode) %attr(0755,root,root) %{_sbindir}/mount.davfs %{_sbindir}/umount.davfs %{_datadir}/davfs2 %attr(0750, davfs2, davfs2) /var/cache/davfs2 /sbin/mount.davfs /sbin/umount.davfs %changelog