]> git.pld-linux.org Git - packages/davfs2.git/blob - davfs2.spec
- more cleanup
[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
51 #%{__libtoolize}
52 #%{__aclocal}
53 #%{__autoconf}
54 #%{__autoheader}
55 #%{__automake}
56 %configure \
57         --sbindir=/sbin \
58
59 %{__make}
60
61 %install
62 rm -rf $RPM_BUILD_ROOT
63 %{__make} install \
64         DESTDIR=$RPM_BUILD_ROOT
65
66 install -d $RPM_BUILD_ROOT%{_var}/cache/%{name}
67 %find_lang %{name}
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %pre
73 %groupadd -g 242 davfs2
74 %useradd -u 242 -r -d /var/cache/%{name} -s /bin/false -c "DAVfs User" -g davfs2 davfs2
75
76 %postun
77 if [ "$1" = "0" ]; then
78         %userremove davfs2
79         %groupremove davfs2
80 fi
81
82 %files -f %{name}.lang
83 %defattr(644,root,root,755)
84 %doc %{_docdir}/*
85 %{_mandir}/man5/*
86 %{_mandir}/man8/*
87 %{_usr}/share/%{name}/*
88 %dir %{_sysconfdir}/%{name}
89 %config(noreplace) %attr(600,root,root) %{_sysconfdir}/%{name}/secrets
90 %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
91 %attr(755,root,root) /sbin/mount.davfs
92 %attr(755,root,root) /sbin/umount.davfs
93 %attr(755,davfs2,davfs2) %{_var}/cache/%{name}
94 %lang(de) %{_mandir}/de/man5/*
95 %lang(de) %{_mandir}/de/man8/*
96 %lang(es) %{_mandir}/es/man5/*
This page took 0.059243 seconds and 4 git commands to generate.