]> git.sesse.net Git - betaftpd/blob - betaftpd.spec
Fixed a security problem where the custom snprintf() would always be used. Thanks...
[betaftpd] / betaftpd.spec
1 Summary: Single-threaded FTP daemon
2 Name: betaftpd
3 Version: 0.0.8pre17
4 Release: 1
5 Source0: http://betaftpd.sourceforge.net/downloads/betaftpd-%{version}.tar.gz
6 Group: Daemons/FTP
7 Provides: betaftpd
8 Copyright: GPL
9 Buildroot: %{_tmppath}/%{name}-%{version}
10
11 %description
12 BetaFTPD is a single-threaded FTP daemon. The single-threadedness
13 makes it faster than most other FTP daemons (contrary to common
14 belief), and makes it extremely light on memory. Although it lacks a
15 few functions (which you probably won't miss), the current version is
16 very small and has a decent amount of functionality. BetaFTPD is built
17 on the concept of heavy code reuse, which should hopefully make it
18 easier for other programmers to contribute.
19
20 %prep
21 %setup -q
22
23 %build
24 ./configure --enable-xferlog --enable-ascii --enable-fork --enable-upload --enable-dcache --enable-message --enable-shadow --with-linux-sendfile
25 make
26
27 %install
28 rm -rf %{buildroot}
29 mkdir -p %{buildroot}/usr/sbin
30 install -s -m 755 betaftpd %{buildroot}/usr/sbin
31
32 %clean
33 rm -rf %{buildroot}
34
35 %files
36 /usr/sbin/betaftpd
37
38 %changelog
39 * Wed Aug 30 2000 Steinar H. Gunderson <sgunderson@bigfoot.com>
40 - gave --with-linux-sendfile to configure (see main ChangeLog for rationale)
41
42 * Thu Aug 17 2000 Steinar H. Gunderson <sgunderson@bigfoot.com>
43 - added some flags to configure that the average user would expect
44 - increased version number again
45 - moved executable from /usr/bin to /usr/sbin
46
47 * Wed Aug 16 2000 Steinar H. Gunderson <sgunderson@bigfoot.com>
48 - included file with BetaFTPD distribution
49 - changed version number
50 - changed URL to point to SourceForge instead of xoom.com
51
52 * Wed Apr  5 2000 Sean MacLennan <seanm@netwinder.org>
53 - created initial spec file
54