source: projects/specs/trunk/m/mod_dav/mod_dav-vl.spec @ 521

Revision 521, 2.7 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1%define min_apache_version 1.3.6
2%define configfile_sample httpd.conf.mod_dav
3
4Summary: A DAV module for Apache.
5Name: mod_dav
6Version: 1.0.3
7Release: 4vl1
8Group: System Environment/Daemons
9URL: http://www.webdav.org/mod_dav/
10Source0: http://www.webdav.org/mod_dav/mod_dav-%{version}-%{min_apache_version}.tar.gz
11Source99: %{configfile_sample}
12Distribution: Vine Linux
13Vendor: Project Vine
14Packager: IWAI Masaharu <iwaim@cc.mbn.or.jp>
15Copyright: Apache-style
16
17BuildRoot: %{_tmppath}/%{name}-root
18BuildPrereq: apache-devel
19Requires: apache
20
21%description
22mod_dav enables Apache to understand DAV protocol (extensions to
23HTTP). DAV stands for "Distributed Authoring and Versioning", and is
24defined by RFC 2518. DAV is intended to replace proprietary authoring
25protocols such as those used by Frontpage or NetObjects' Fusion, but
26is also a complete set of protocols for manipulating a webserver's
27files and directories, and their properties.
28
29%prep
30%setup -q -n %{name}-%{version}-%{min_apache_version}
31cp %{SOURCE99} httpd.conf.sample
32rm -rf ${RPM_BUILD_ROOT}
33
34%build
35%configure --with-apxs=%{_sbindir}/apxs
36make
37
38%install
39mkdir -p ${RPM_BUILD_ROOT}%{_libdir}/apache
40install -m 755 libdav.so ${RPM_BUILD_ROOT}%{_libdir}/apache
41
42%clean
43rm -rf ${RPM_BUILD_ROOT}
44
45%files
46%defattr(-,root,root)
47%doc README CHANGES INSTALL LICENSE.html httpd.conf.sample sdbm util
48%{_libdir}/apache/libdav.so
49
50%changelog
51* Tue Nov  6 2001 IWAI Masaharu <iwaim@cc.mbn.or.jp> 1.0.3-4vl1
52- upstream release
53- added sdbm and util directory in %%doc
54
55* Wed Aug 15 2001 IWAI Masaharu <iwaim@cc.mbn.or.jp>
56- 1.0.2-4vl2
57- add sample for Apache Configuration file
58
59* Tue Aug 14 2001 IWAI Masaharu <iwaim@cc.mbn.or.jp>
60- 1.0.2-4vl1
61- first release for VineLinux (based RedHat7.1 1.0.2-4)
62
63* Fri Dec  1 2000 Nalin Dahyabhai <nalin@redhat.com>
64- rebuild in new environment
65
66* Fri Nov 17 2000 Nalin Dahyabhai <nalin@redhat.com>
67- update to 1.0.2
68- depend on external expat-devel
69
70* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
71- fix summary
72
73* Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
74- update to 1.0.1
75
76* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
77- automatic rebuild
78
79* Tue Jun 13 2000 Nalin Dahyabhai <nalin@redhat.com>
80- update to mod_dav-1.0.0 for the main distribution
81
82* Sun Jun  4 2000 Nalin Dahyabhai <nalin@redhat.com>
83- update to mod_dav-0.9.17 for Power Tools
84- add URL: tag
85- rename apache_version macro to min_apache_version
86- add defattr
87- remove outdated faq and readme
88
89* Mon Feb 28 2000 Nalin Dahyabhai <nalin@redhat.com>
90- rebuild for new Apache (release 2)
91
92* Thu Feb 24 2000 Nalin Dahyabhai <nalin@redhat.com>
93- upgraded to 0.9.15 for 3.2
94
95* Tue Sep 14 1999 Preston Brown <pbrown@redhat.com>
96- upgraded to 0.9.11.
97
98* Thu May 06 1999 Preston Brown <pbrown@redhat.com>
99- initial RPM for SWS 3.0
Note: See TracBrowser for help on using the repository browser.