]> git.pld-linux.org Git - packages/arpd.git/blob - arpd.spec
- require >= dev2.8.0-4
[packages/arpd.git] / arpd.spec
1 Summary:        User-space arp daemon
2 Summary(pl):    Demon arpd
3 Name:           arpd
4 Version:        1.0.2
5 Release:        6
6 License:        GPL
7 Group:          Daemons
8 Group(de):      Server
9 Group(pl):      Serwery
10 Source0:        %{name}-%{version}.tar.gz
11 Source1:        %{name}-init
12 Patch0:         %{name}-%{version}.debian-patch
13 Patch1:         %{name}-%{version}.pld-patch
14 Patch2:         %{name}-makefile-patch
15 Patch3:         %{name}-more_tables.patch
16 Patch4:         %{name}-uid.patch
17 Prereq:         /sbin/chkconfig
18 Prereq:         rc-scripts >= 0.2.0
19 Prereq:         fileutils
20 Requires:       dev >= 2.8.0-4
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 The ARP daemon moves the management of the ARP (Address Resolution
25 Protocol) table from kernel to user space. It is useful for sites with
26 LARGE network segments (256+ systems per segment), because the kernel
27 hash tables are not optimized to handle this situation. To use the ARP
28 daemon your kernel needs to have ARPD and NETLINK support enabled. The
29 standard kernels of PLD lack this support. It shouldn't be run without
30 that!! This version can alocate 2048 entries.
31
32
33 %description -l pl
34 Demon ARP przekazuje zarz±dzanie tablic± ARP (Address Resolution
35 Protocol) z kernel'a do przestrzeni u¿ytkownika. Jest to bardzo
36 u¿yteczne dla miejsc o du¿ych segmentach sieci (256+ systemów na
37 segment), poniewa¿ tablice w j±drze nie s± zoptymalizowane na takie
38 sytuacje. Aby u¿ywaæ tego demona musisz mieæ ARPD support oraz NETLINK
39 support uaktywnione w j±drze. Uwaga! Stanadardowe j±dro PLD nie ma
40 supportu ARPD!!. Demon nie powinien byæ startowany bez tego!! Ta
41 wersja potrafi zaakceptowaæ 2048 pozycji.
42
43
44 %prep
45 %setup  -q -n %{name}-%{version}.orig
46 %patch0 -p1
47 %patch1 -p1
48 %patch2 -p1
49 %patch3
50 %patch4 -p1
51
52 %build
53 %{__make}
54
55 %install
56 rm -rf $RPM_BUILD_ROOT
57 install -d $RPM_BUILD_ROOT/{usr/sbin,etc/rc.d/init.d}
58
59 install arpd $RPM_BUILD_ROOT%{_sbindir}/arpd
60 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/arpd
61
62 gzip -9nf CHANGES
63
64
65 %post
66 /sbin/chkconfig --add arpd
67 if [ -f /var/lock/subsys/arpd ]; then
68         /etc/rc.d/init.d/arpd restart 1>&2
69 else
70         echo "Run \"/etc/rc.d/init.d/arpd start\" to start arpd daemon."
71 fi
72
73 %preun
74 /sbin/chkconfig --del arpd
75 if [ "$1" = "0" ]; then
76         if [ -f /var/lock/subsys/arpd ]; then
77                 /etc/rc.d/init.d/arpd stop 1>&2
78         fi
79         /sbin/chkconfig --del arpd
80 fi
81
82
83 %clean
84 rm -rf $RPM_BUILD_ROOT
85
86 %files
87 %defattr(644,root,root,755)
88 %doc *.gz README.html
89 %attr(754,root,root) %{_sbindir}/arpd
90 %attr(754,root,root) /etc/rc.d/init.d/arpd
This page took 0.034188 seconds and 3 git commands to generate.