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