]> git.pld-linux.org Git - packages/ftpd-BSD.git/blob - ftpd-BSD.spec
- spec adapterized.
[packages/ftpd-BSD.git] / ftpd-BSD.spec
1 Summary:        OpenBSD's ftpd ported to Linux (with IPv6 support)
2 Name:           ftpd-BSD
3 Version:        0.3.1
4 Release:        2
5 License:        BSD-like
6 Group:          Networking/Daemons
7 Group(pl):      Sieciowe/Serwery
8 Source0:        ftp://quatramaran.ens.fr/pub/madore/ftpd-BSD/%{name}-%{version}.tar.gz
9 Source1:        %{name}.inetd
10 Source2:        %{name}.pamd
11 Source3:        %{name}-ftpusers
12 Buildrequires:  libwrap-devel
13 Buildrequires:  pam-devel
14 Requires:       rc-inetd
15 Requires:       inetdaemon
16 Requires:       anonftp
17 Provides:       ftpserver
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19 Obsoletes:      wu-ftpd
20 Obsoletes:      proftpd
21 Obsoletes:      heimdal-ftpd
22
23 %description
24 This is a Linux port of the BSD ftp server (ftpd). It doesn't have all
25 the bells and whistles of wu-ftpd, but it is also probably less buggy
26 and more secure (at least, it was certainly so before I ported it, and
27 I hope I didn't mess things up *too* much).
28
29 The source code was taken from the OpenBSD CVS as of 2000/01/23 (this
30 is between releases 2.6 and 2.7). The ftpd version number is 6.4 and
31 this port's version number is 0.3.0.
32
33 %description -l pl
34 Pakiet ten zawiera linuksowy port serwera ftp BSD (ftpd). Nie zawiera
35 on wszystkich wymy¶lnych elementów wu-ftpd, jest jednak
36 prawdopodobniej mniej zapluskwiony i bardziej bezpieczny (w kazdym
37 razie by³ takim zanim go przenios³em na Linuksa, i mam nadziejê, ¿e
38 nie naba³agani³em *za bardzo*). Kod ¼ród³owy pochodzi z repozytorium
39 CVS OpenBSD z dnia 2000/01/23 (tj. miêdzy wersj± 2.6 a 2.7). Numer
40 wersji ftpd to 6.4, za¶ numer wersji tego portu to 0.3.0.
41
42 %prep
43 %setup -q
44
45 %build
46 ( cd ftpd ; make )
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50 install -d $RPM_BUILD_ROOT/{%{_sbindir},%{_mandir}/man8,etc/{pam.d,sysconfig/rc-inetd}}
51
52 install -s ftpd/ftpd $RPM_BUILD_ROOT%{_sbindir}/ftpd-BSD
53 install ftpd/ftpd.8 $RPM_BUILD_ROOT%{_mandir}/man8/
54 install %{SOURCE1} $RPM_BUILD_ROOT/etc/sysconfig/rc-inetd/ftpd
55 install %{SOURCE2} $RPM_BUILD_ROOT/etc/pam.d/ftp
56 install %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/ftpusers
57
58 gzip -9nf README $RPM_BUILD_ROOT%{_mandir}/man8/*
59
60 %post
61 if [ -f /var/lock/subsys/rc-inetd ]; then
62         /etc/rc.d/init.d/rc-inetd reload 1>&2
63 else
64         echo "Type \"/etc/rc.d/init.d/rc-inetd start\" to start inet sever" 1>&2
65 fi
66
67 %postun
68 if [ -f /var/lock/subsys/rc-inetd ]; then
69         /etc/rc.d/init.d/rc-inetd reload
70 fi
71
72 %clean
73 rm -rf $RPM_BUILD_ROOT
74
75 %files
76 %defattr(644,root,root,755)
77 %doc README.gz
78 %attr(755,root,root) %{_sbindir}/ftpd-BSD
79 %attr(640,root,root) %{_mandir}/man8/*
80 %attr(640,root,root) %config %verify(not size mtime md5) /etc/pam.d/ftp
81 %attr(640,root,root) %{_sysconfdir}/ftpusers
82 %attr(640,root,root) /etc/sysconfig/rc-inetd/ftpd
This page took 0.050897 seconds and 4 git commands to generate.