]> git.pld-linux.org Git - packages/pure-ftpd.git/blame_incremental - pure-ftpd.spec
- packaged pure-ftpd.sysconfig
[packages/pure-ftpd.git] / pure-ftpd.spec
... / ...
CommitLineData
1#
2# Conditional build:
3%bcond_with extra # with additional, maybe useful, but unmaintained features
4%bcond_without ldap # disable LDAP auth
5%bcond_without longusername # with username length = 128 (default 32)
6%bcond_without mysql # disable MySQL auth but disables PAM auth
7%bcond_without pgsql # disable PostgreSQL support
8%bcond_without puredb # disable pure-db support
9%bcond_without tls # disable SSL/TLS support
10%bcond_without cap # disable capabilities
11#
12Summary: Small, fast and secure FTP server
13Summary(pl.UTF-8): Mały, szybki i bezpieczny serwer FTP
14Name: pure-ftpd
15Version: 1.0.21
16Release: 5%{?with_extra:extra}
17Epoch: 0
18License: BSD-like%{?with_extra:, GLPv2 for pure-config due to libcfg+ license}
19Group: Daemons
20Source0: ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/%{name}-%{version}.tar.bz2
21# Source0-md5: ca8a8dbec0cd9c8ea92fc4c37ea9c410
22Source1: %{name}.pamd
23Source2: %{name}.init
24Source3: %{name}.sysconfig
25Source4: ftpusers.tar.bz2
26# Source3-md5: 76c80b6ec9f4d079a1e27316edddbe16
27Source5: http://twittner.host.sk/files/pure-config/pure-config-20041201.tar.gz
28# Source4-md5: 3f2ff6b00b5c38ee11ce588ee5af6cf6
29Patch0: %{name}-config.patch
30Patch1: %{name}-path_to_ssl_cert_in_config.patch
31Patch2: %{name}-pure-pw_passwd.patch
32Patch3: %{name}-mysql_config.patch
33Patch4: %{name}-nosymlinks-hideuidmismatch.patch
34Patch5: %{name}-auth-can-delete-pure.patch
35URL: http://www.pureftpd.org/
36%{?with_extra:BuildRequires: autoconf}
37%{?with_extra:BuildRequires: automake}
38%{?with_cap:BuildRequires: libcap-devel}
39%{?with_extra:BuildRequires: libcfg+-devel >= 0.6.2}
40%{?with_mysql:BuildRequires: mysql-devel}
41%{?with_ldap:BuildRequires: openldap-devel >= 2.3.0}
42%{?with_tls:BuildRequires: openssl-devel}
43BuildRequires: pam-devel
44%{?with_pgsql:BuildRequires: postgresql-devel}
45BuildRequires: rpmbuild(macros) >= 1.304
46Requires(post,preun): /sbin/chkconfig
47Requires: pam >= 0.79.0
48%{!?with_extra:Requires: perl-base}
49Requires: rc-scripts
50Provides: ftpserver
51Obsoletes: anonftp
52Obsoletes: bftpd
53Obsoletes: ftpd-BSD
54Obsoletes: ftpserver
55Obsoletes: glftpd
56Obsoletes: heimdal-ftpd
57Obsoletes: krb5-ftpd
58Obsoletes: linux-ftpd
59Obsoletes: muddleftpd
60Obsoletes: proftpd
61Obsoletes: proftpd-common
62Obsoletes: proftpd-inetd
63Obsoletes: proftpd-standalone
64Obsoletes: troll-ftpd
65Obsoletes: vsftpd
66Obsoletes: wu-ftpd
67Conflicts: man-pages < 1.51
68BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
69
70%define _sysconfdir /etc/ftpd
71%define _ftpdir /home/services/ftp
72%define schemadir /usr/share/openldap/schema
73
74%description
75Pure-FTPd is a fast, production-quality, standard-comformant FTP
76server, based upon Troll-FTPd. Unlike other popular FTP servers, it
77has no known security flaw, it is really trivial to set up and it is
78especially designed for modern Linux kernels (setfsuid, sendfile,
79capabilities) . Features include PAM support, IPv6, chroot()ed home
80directories, virtual domains, built-in LS, anti-warez system, bounded
81ports for passive downloads...
82
83%description -l pl.UTF-8
84Pure-FTPD to szybki, wysokiej jakości, odpowiadający standardom serwer
85FTP bazujący na Troll-FTPd. W przeciwieństwie do innych serwerów FTP
86nie ma znanych luk w bezpieczeństwie. Ponadto jest trywialny w
87konfiguracji i specjalnie zaprojektowany dla nowych kerneli Linuksa
88(setfsuid, sendfile, capabilibies). Możliwości to wsparcie dla PAM-a,
89IPv6, chroot()owanych katalogów domowych, virtualne domeny, wbudowany
90LS, system anty-warezowy, ograniczanie portów dla pasywnych
91połączeń...
92
93%package -n openldap-schema-pureftpd
94Summary: Pure-FTPd LDAP schema
95Summary(pl.UTF-8): Schemat LDAP dla Pure-FTPd
96Group: Networking/Daemons
97Requires(post,postun): sed >= 4.0
98Requires: openldap-servers
99Requires: sed >= 4.0
100
101%description -n openldap-schema-pureftpd
102This package contains an Pure-FTPd openldap schema.
103
104%description -n openldap-schema-pureftpd -l pl.UTF-8
105Ten pakiet zawiera schemat Pure-FTPd pureftpd.schema dla openldapa.
106
107%prep
108%setup -q -a 5
109%patch0 -p0
110%patch3 -p1
111%patch4 -p1
112%patch5 -p1
113%{?with_extra:%patch1 -p1}
114%{?with_extra:%patch2 -p1}
115
116%build
117# drop --without-cork for Th
118%configure \
119 --without-cork \
120 --with-boring \
121 --with-altlog \
122 --with-cookie \
123 --with-diraliases \
124 --with-extauth \
125 --with-ftpwho \
126 --with-language=english \
127 --with-largefile \
128 %{!?with_cap:--without-capabilities} \
129 %{?with_ldap:--with-ldap} \
130 %{?with_mysql:CPPFLAGS="-I%{_includedir}/mysql" --with-mysql} \
131 --with-pam \
132 --with-peruserlimits \
133 %{?with_pgsql:--with-pgsql} \
134 --with-privsep \
135 %{?with_puredb:--with-puredb} \
136 --with-quotas \
137 --with-ratios \
138 --with-throttling \
139 %{?with_tls:--with-tls --with-certfile=%{_sharedstatedir}/openssl/certs/ftpd.pem} \
140 --with-uploadscript \
141 --with-virtualchroot \
142 --with-virtualhosts
143
144%if %{with extra}
145cd pure-config
146%{__aclocal}
147%{__autoconf}
148%{__autoheader}
149%{__automake}
150%configure
151%{__make}
152%endif
153
154%install
155rm -rf $RPM_BUILD_ROOT
156install -d $RPM_BUILD_ROOT/etc/{pam.d,sysconfig,security,rc.d/init.d} \
157 $RPM_BUILD_ROOT{%{_sysconfdir}/vhosts,%{_ftpdir},%{schemadir}}
158
159%{__make} install \
160 DESTDIR=$RPM_BUILD_ROOT
161
162install %{SOURCE1} $RPM_BUILD_ROOT/etc/pam.d/%{name}
163install %{SOURCE2} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
164install %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/%{name}
165
166%{?with_ldap:install pureftpd-ldap.conf $RPM_BUILD_ROOT%{_sysconfdir}/pureftpd-ldap.conf}
167%{?with_mysql:install pureftpd-mysql.conf $RPM_BUILD_ROOT%{_sysconfdir}/pureftpd-mysql.conf}
168%{?with_pgsql:install pureftpd-pgsql.conf $RPM_BUILD_ROOT%{_sysconfdir}/pureftpd-pgsql.conf}
169install configuration-file/pure-ftpd.conf $RPM_BUILD_ROOT%{_sysconfdir}/pureftpd.conf
170%{!?with_extra:install configuration-file/pure-config.pl $RPM_BUILD_ROOT%{_sbindir}}
171install pureftpd.schema $RPM_BUILD_ROOT%{schemadir}/pureftpd.schema
172
173touch $RPM_BUILD_ROOT%{_sysconfdir}/ftpusers
174
175ln -s vhosts $RPM_BUILD_ROOT%{_sysconfdir}/pure-ftpd
176
177bzip2 -dc %{SOURCE4} | tar xf - -C $RPM_BUILD_ROOT%{_mandir}
178rm -f $RPM_BUILD_ROOT%{_mandir}/ftpusers-path.diff
179
180%if %{with extra}
181%{__make} -C pure-config install \
182 DESTDIR=$RPM_BUILD_ROOT
183%endif
184
185%clean
186rm -rf $RPM_BUILD_ROOT
187
188%post
189/sbin/chkconfig --add %{name}
190%service %{name} restart "PureFTPD daemon"
191
192%preun
193if [ "$1" = "0" ]; then
194 %service %{name} stop
195 /sbin/chkconfig --del %{name}
196fi
197
198%post -n openldap-schema-pureftpd
199%openldap_schema_register %{schemadir}/pureftpd.schema -d core
200%service -q ldap restart
201
202%postun -n openldap-schema-pureftpd
203if [ "$1" = "0" ]; then
204 %openldap_schema_unregister %{schemadir}/pureftpd.schema
205 %service -q ldap restart
206fi
207
208
209%files
210%defattr(644,root,root,755)
211%doc AUTHORS ChangeLog CONTACT COPYING FAQ HISTORY NEWS README* THANKS pure*.conf pureftpd.schema
212%attr(755,root,root) %{_bindir}/*
213%attr(755,root,root) %{_sbindir}/*
214%attr(754,root,root) /etc/rc.d/init.d/%{name}
215%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/pam.d/*
216%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/*
217%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/ftpusers
218%{?with_ldap:%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/pureftpd-ldap.conf}
219%{?with_mysql:%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/pureftpd-mysql.conf}
220%{?with_pgsql:%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/pureftpd-pgsql.conf}
221%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/pureftpd.conf
222%attr(710,root,ftp) %dir %{_sysconfdir}
223%dir %{_sysconfdir}/vhosts
224%dir %{_sysconfdir}/pure-ftpd
225%dir %{_ftpdir}
226%{_mandir}/man?/*
227%lang(ja) %{_mandir}/ja/man5/ftpusers*
228%lang(pl) %{_mandir}/pl/man5/ftpusers*
229%lang(pt_BR) %{_mandir}/pt_BR/man5/ftpusers*
230%lang(ru) %{_mandir}/ru/man5/ftpusers*
231
232%files -n openldap-schema-pureftpd
233%defattr(644,root,root,755)
234%{schemadir}/pureftpd.schema
This page took 0.059961 seconds and 4 git commands to generate.