]> git.pld-linux.org Git - packages/davfs2.git/blob - davfs2.spec
- more cleanups
[packages/davfs2.git] / davfs2.spec
1 Summary:        Web-based Distributed Authoring and Versioning - caching version
2 Summary(pl.UTF-8):      Bazujące na WWW Rozproszone Autoryzowanie i Wersjonowanie - wersja z cache
3 Name:           davfs2
4 Version:        1.4.1
5 Release:        0.3
6 License:        GPL
7 Group:          Networking/Utilities
8 Source0:        http://download.savannah.gnu.org/releases-noredirect/davfs2/%{name}-%{version}.tar.gz
9 URL:            http://savannah.nongnu.org/projects/davfs2
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  neon-devel >= 0.24
13 BuildRequires:  openssl-devel >= 0.9.7d
14 BuildRequires:  rpmbuild(macros) >= 1.118
15 Requires(postun):       /usr/sbin/groupdel
16 Requires(postun):       /usr/sbin/userdel
17 Requires(pre):  /bin/id
18 Requires(pre):  /usr/bin/getgid
19 Requires(pre):  /usr/sbin/groupadd
20 Requires(pre):  /usr/sbin/useradd
21 Requires:       neon >= 0.24
22 Provides:       group(davfs2)
23 Provides:       user(davfs2)
24 Conflicts:      davfs
25
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 WebDAV is an acronym for Web-based Distributed Authoring and Version-
30 ing. Usually HTTP is a read only protocol, but if you install DAV on
31 your web server, it becomes writable. Furthermore, if you use DAVfs,
32 you can mount your web server onto your filesystem and can use it as a
33 normal disk.
34
35 This package contains the caching version of davfs.
36
37 %description -l pl.UTF-8
38 WebDAV to bazujące na WWW Rozproszone Autoryzowanie i Wersjonowanie.
39 Zazwyczaj protokół HTTP jest protokołem tylko do odczytu ale po
40 zainstalowaniu DAVa staje się on również zapisywalnym. Co więcej
41 jeśli używasz DAVfs to możesz montować swój serwer WWW jako
42 system plików i używać tak jak normalnego dysku.
43
44 Ten pakiet zawiera wersję davfs korzystającą z cache'u.
45
46 %prep
47 %setup -q
48
49 %build
50 %{__aclocal} -I config
51 %{__autoconf}
52 %{__autoheader}
53 %{__automake}
54 %configure \
55         --sbindir="/sbin"
56
57 %{__make}
58
59 %install
60 rm -rf $RPM_BUILD_ROOT
61 install -d $RPM_BUILD_ROOT%{_var}/cache/%{name}
62
63 %{__make} install \
64         DESTDIR=$RPM_BUILD_ROOT
65
66 %find_lang %{name}
67
68 %clean
69 rm -rf $RPM_BUILD_ROOT
70
71 %pre
72 %groupadd -g 242 davfs2
73 %useradd -u 242 -r -d /var/cache/%{name} -s /bin/false -c "DAVfs User" -g davfs2 davfs2
74
75 %postun
76 if [ "$1" = "0" ]; then
77         %userremove davfs2
78         %groupremove davfs2
79 fi
80
81 %files -f %{name}.lang
82 %defattr(644,root,root,755)
83 %doc %{_docdir}/*
84 %{_mandir}/man5/*.5*
85 %{_mandir}/man8/*.8*
86 %{_datadir}/%{name}
87 %dir %{_sysconfdir}/%{name}
88 %config(noreplace) %attr(600,root,root) %{_sysconfdir}/%{name}/secrets
89 %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
90 %attr(755,root,root) /sbin/mount.davfs
91 %attr(755,root,root) /sbin/umount.davfs
92 %attr(755,davfs2,davfs2) %{_var}/cache/%{name}
93 %lang(de) %{_mandir}/de/man[58]/*
94 %lang(es) %{_mandir}/es/man5/*.5*
This page took 0.091589 seconds and 4 git commands to generate.