fsp/packages/redhat/fspd.spec
2019-08-24 13:57:39 +02:00

101 lines
2.6 KiB
RPMSpec

%define name fspd
%define sname fsp
Summary: File Service Protocol Daemon
Name: %{name}
Version: 2.8.1b29
Release: hsn0
Group: System Environment/Daemons
License: BSD/MIT/X
URL: http://fsp.sourceforge.net
Source0: %{sname}-%{version}.tar.bz2
Source1: fspd.init
BuildRequires: glibc-devel scons >= 3.0.0 flex
%description
FSP is a set of programs that implements a public-access
archive similar to an anonymous-FTP archive. It is not
meant to be a replacement for FTP; it is only meant to do
what anonymous-FTP does, but in a manner more acceptable
to the provider of the service and more friendly to the
clients.
FSP is UDP based and very useful on slow connections
and in a Wireless LAN.
This Package contains the fspd server program.
%prep
%setup -q -n %{sname}-%{version}
%build
scons prefix=%{buildroot}%_prefix \
sysconfdir=%_sysconfdir \
mandir=%{buildroot}%_mandir \
docdir=%{buildroot}/not-used \
without-clients=yes \
without-fspscan=yes
%install
scons prefix=%{buildroot}%_prefix \
sysconfdir=%_sysconfdir \
mandir=%{buildroot}%_mandir \
docdir=%{buildroot}/not-used \
without-clients=yes \
without-fspscan=yes \
install
# --install-sandbox=%{buildroot}
rm -rf %{buildroot}/not-used
# config file
mkdir -p %{buildroot}%{_sysconfdir}
cp -a fspd.conf %{buildroot}%{_sysconfdir}
#init script
mkdir -p %{buildroot}%{_sysconfdir}/rc.d/init.d
cp -a %{SOURCE1} %{buildroot}%{_sysconfdir}/rc.d/init.d/fspd
%post
if [ $1 = 1 ]; then
/sbin/chkconfig --add fspd
fi
%preun
if [ $1 = 0 ]; then
/sbin/service fspd stop >/dev/null 2>&1 || :
/sbin/chkconfig --del fspd
fi
%postun
if [ $1 -ge 1 ]; then
/sbin/service fspd restart >/dev/null 2>&1
fi
%files
%defattr(-, root, root)
%doc BETA.README ChangeLog fspd.conf COPYRIGHT INFO INSTALL TODO
%config(noreplace) %{_sysconfdir}/fspd.conf
%{_bindir}/fspd
%{_mandir}/man?/fspd.*
%{_sysconfdir}/rc.d/init.d/fspd
%changelog
* Sat Aug 24 2019 Radim Kolar <hsn@sendmail.cz>
- new upstream release 2.8.1b29
- tested on Centos 7
* Tue Jan 13 2004 Sven Hoexter <sven@wrack.telelev.de>
- new upstream release 2.8.1b19
* Tue Nov 18 2003 Sven Hoexter <sven@du-gehoerst-mir.de>
- new upstream release 2.8.1b17
- release should build with old flex versions
- fixed prob with condrestart in the postun scriptled
it's not supported by the init script
* Sun Oct 26 2003 Sven Hoexter <sven@du-gehoerst-mir.de>
- changed the contents and names to the Debian naming scheme
- corrected my email address
* Sun Aug 24 2003 Sven Hoexter <sven@du-gehoerst-mir.de>
- Initial build.