]> git.pld-linux.org Git - packages/arpd.git/blob - arpd.spec
af8f7bf7d59ffed249367b40b5759c7311c15e83
[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:        7
6 License:        GPL
7 Group:          Daemons
8 #Source0:       http://www.loran.com/~layes/arpd/%{name}-%{version}.tar.gz  (origin, but 404)
9 Source0:        ftp://ftp.slackware.org:/pub/slackware/slackware-4.0/source/n/tcpip1/%{name}-%{version}.tar.gz
10 Source1:        %{name}-init
11 Patch0:         %{name}-%{version}.debian-patch
12 Patch1:         %{name}-%{version}.pld-patch
13 Patch2:         %{name}-makefile-patch
14 Patch3:         %{name}-more_tables.patch
15 Patch4:         %{name}-uid.patch
16 #URL:           http://www.loran.com/~layes/arpd/
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 4096 entries.
31
32 %description -l pl
33 Demon ARP przekazuje zarz±dzanie tablic± ARP (Address Resolution
34 Protocol) z kernel'a do przestrzeni u¿ytkownika. Jest to bardzo
35 u¿yteczne dla miejsc o du¿ych segmentach sieci (256+ systemów na
36 segment), poniewa¿ tablice w j±drze nie s± zoptymalizowane na takie
37 sytuacje. Aby u¿ywaæ tego demona musisz mieæ ARPD support oraz NETLINK
38 support uaktywnione w j±drze. Uwaga! Stanadardowe j±dro PLD nie ma
39 supportu ARPD. Demon nie powinien byæ startowany bez tego! Ta wersja
40 potrafi zaakceptowaæ 4096 pozycji.
41
42 %prep
43 %setup  -q -n %{name}-%{version}.orig
44 %patch0 -p1
45 %patch1 -p1
46 %patch2 -p1
47 %patch3
48 %patch4 -p1
49
50 %build
51 %{__make}
52
53 %install
54 rm -rf $RPM_BUILD_ROOT
55 install -d $RPM_BUILD_ROOT/{usr/sbin,etc/rc.d/init.d}
56
57 install arpd $RPM_BUILD_ROOT%{_sbindir}/arpd
58 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/arpd
59
60 gzip -9nf CHANGES
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
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 if [ "$1" = "0" ]; then
75         if [ -f /var/lock/subsys/arpd ]; then
76                 /etc/rc.d/init.d/arpd stop 1>&2
77         fi
78         /sbin/chkconfig --del arpd
79 fi
80
81
82 %files
83 %defattr(644,root,root,755)
84 %doc *.gz README.html
85 %attr(754,root,root) %{_sbindir}/arpd
86 %attr(754,root,root) /etc/rc.d/init.d/arpd
This page took 0.051727 seconds and 2 git commands to generate.