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