]> git.pld-linux.org Git - packages/xinetd.git/blob - xinetd.spec
- removed ipv6 conditional; release 2
[packages/xinetd.git] / xinetd.spec
1 Summary:        Secure replacement for inetd
2 Summary(pl):    Bezpieczny odpowiednik inetd
3 Name:           xinetd
4 Version:        2.3.3
5 Release:        2
6 Group:          Daemons
7 Group(de):      Server
8 Group(pl):      Serwery
9 License:        distributable (BSD-like)
10 Source0:        http://www.xinetd.org/%{name}-%{version}.tar.gz
11 Source1:        %{name}.inet.sh
12 URL:            http://www.xinetd.org/
13 BuildRequires:  libwrap-devel
14 BuildRequires:  autoconf
15 Requires:       rc-inetd
16 Prereq:         rc-scripts
17 Requires:       /etc/rc.d/init.d/rc-inetd
18 Provides:       inetdaemon
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20 Obsoletes:      inetdaemon
21 Obsoletes:      inetd
22 Obsoletes:      rlinetd
23 Obsoletes:      netkit-base
24
25 %define         _sysconfdir     /etc
26
27 %description
28 Xinetd is a secure replacement for inetd, the Internet services
29 daemon. Xinetd provides access control for all services based on the
30 address of the remote host and/or on time of access and can prevent
31 denial-of-access attacks. Xinetd provides extensive logging, has no
32 limit on the number of server arguments and you can bind specific
33 services to specific IP addresses on your host machine.
34
35 %description -l pl
36 xinetd jest bezpieczniejszym i rozbudowanym odpowiednikiem inetd.
37 Niektóre funkcje to wbudowana kontrola dostêpu (oparta o libwrap),
38 kontrola zu¿ycia zasobów i wbudowana obs³uga IPv6.
39
40 %prep
41 %setup -q
42
43 %build
44 autoconf
45 %configure  \
46         --with-libwrap \
47         --with-inet6  \
48         --with-loadavg
49 %{__make}
50 cp xinetd/xinetd xinetd/xinetd-ipv6
51 %{__make} clean
52 rm -f config.cache
53 %configure  \
54         --with-libwrap \
55         --with-loadavg
56 %{__make}
57
58 %install
59 rm -rf $RPM_BUILD_ROOT
60 install -d $RPM_BUILD_ROOT%{_sbindir} \
61         $RPM_BUILD_ROOT%{_mandir}/man{5,8} \
62         $RPM_BUILD_ROOT%{_sysconfdir}/{rc.d/init.d,sysconfig}
63
64 install xinetd/xinetd $RPM_BUILD_ROOT%{_sbindir}
65 install xinetd/xinetd-ipv6 $RPM_BUILD_ROOT%{_sbindir}
66 install xinetd/itox $RPM_BUILD_ROOT%{_sbindir}
67 install xinetd/xinetd.conf.man $RPM_BUILD_ROOT%{_mandir}/man5/xinetd.conf.5
68 install xinetd/xinetd.log.man $RPM_BUILD_ROOT%{_mandir}/man8/xinetd.log.8
69 install xinetd/xinetd.man $RPM_BUILD_ROOT%{_mandir}/man8/xinetd.8
70 install xinetd/itox.8 $RPM_BUILD_ROOT%{_mandir}/man8/itox.8
71 install %{SOURCE1} $RPM_BUILD_ROOT/etc/sysconfig/rc-inet.script
72 :> $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.conf
73
74 cp xinetd/sample.conf .
75 cp xinetd/xconv.pl .
76
77 gzip -9nf README CHANGELOG sample.conf xconv.pl
78
79 %clean
80 rm -rf $RPM_BUILD_ROOT
81
82 %post
83 if [ -f /var/lock/subsys/rc-inetd ]; then
84         /etc/rc.d/init.d/rc-inetd restart 1>&2
85 else
86         echo "Type \"/etc/rc.d/init.d/rc-inetd start\" to start xinetd" 1>&2
87 fi
88
89 %preun
90 if [ "$1" = "0" -a -f /var/lock/subsys/rc-inetd ]; then
91         /etc/rc.d/init.d/rc-inetd stop
92 fi
93
94 %files
95 %defattr(644,root,root,755)
96 %doc *.gz
97 %attr(755,root,root) %{_sbindir}/*
98 %attr(640,root,root) %ghost %{_sysconfdir}/xinetd.conf
99 %attr(640,root,root) /etc/sysconfig/rc-inet.script
100 %{_mandir}/man[158]/*
This page took 0.115318 seconds and 4 git commands to generate.