]> git.pld-linux.org Git - packages/ffingerd.git/blob - ffingerd.spec
s-/usr/sbin-%{_sbindir}-
[packages/ffingerd.git] / ffingerd.spec
1 Summary:        secure finger daemon
2 Summary(pl):    bezpieczny serwer finger
3 Name:           ffingerd
4 Version:        1.21
5 Release:        1
6 Group:          Networking/Daemons
7 Group(pl):      Sieciowe/Demony
8 Copyright:      GPL
9 Source:         ftp://ftp.fu-berlin.de/pub/unix/security/ffingerd/%{name}-%{version}.tar.gz
10 BuildPrereq:    autoconf >= 2.13-8
11 Requires:       inetd
12 Provides:       fingerd
13 Obsoletes:      finger
14 BuildRoot:      /tmp/%{name}-%{version}-root
15
16 %description
17 The ffingerd program is a drop-in replacement for the standard fingerd
18 daemon. Ffingerd is invoked by inetd and it runs as nobody. Ffingerd does 
19 not allow global finger queries (finger @host), indirect finger queries 
20 (finger foo@host.a@host.b), it does not give away valuable information like 
21 the shell, login directory and time of last login, and users can put 
22 a ".nofinger" file in  their homes and then ffingerd will respond with 
23 "That user does not want to be fingered".
24
25 %description -l pl
26 Program ffingerd jest zamiennikiem dla standardowego demona fingered.
27 Jest uruchamiany przez inetd i pracuje jako u¿ytkownik nobody. 
28 Ffingerd nie pozwala na zapytania globalne (finger @host), zapytania 
29 po¶rednie (finger foo@host.a@host.b), nie wy¶wietla informacji o pow³oce
30 u¿ytkownika, jego katalogu domowym i czasie ostatniego zalogowania,
31 umo¿liwia u¿ytkownikom stworzenie w katalogu domowym pliku ".nofinger".
32
33 %prep
34 %setup -q
35
36 %build
37 autoconf
38 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
39 ./configure \
40         --target=%{_target_patform} \
41         --host=%{_host} \
42         --prefix=/usr \
43         --exec_prefix=/usr
44 make
45
46 %install
47 rm -rf $RPM_BUILD_ROOT
48
49 make exec_prefix=$RPM_BUILD_ROOT/usr \
50         prefix=$RPM_BUILD_ROOT/usr install
51
52 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man8/* \
53         README NEWS TODO
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc {README,NEWS,TODO}.gz
61 %attr(755,root,root) %{_sbindir}/*
62
63 %{_mandir}/man8/*
64
65 %changelog
66 * Thu May 13 1999 Piotr Czerwiñski <pius@pld.org.pl>
67   [1.21-1]
68 - initial rpm release.
This page took 0.172425 seconds and 3 git commands to generate.