]> git.pld-linux.org Git - packages/dhcp.git/blob - dhcp.spec
- updated to 3.0pl2: security fix.
[packages/dhcp.git] / dhcp.spec
1 Summary:        DHCP Server
2 Summary(es):    Servidor DHCP (Protocolo de configuración dinámica de hosts)
3 Summary(pl):    Serwer DHCP
4 Summary(pt_BR): Servidor DHCP (Protocolo de configuração dinâmica de hosts)
5 Name:           dhcp
6 Version:        3.0pl2
7 Release:        1
8 Epoch:          2
9 Vendor:         ISC
10 License:        distributable
11 Group:          Networking/Daemons
12 Source0:        ftp://ftp.isc.org/isc/dhcp/%{name}-%{version}.tar.gz
13 Source1:        %{name}.init
14 Source2:        %{name}-relay.init
15 Source3:        %{name}-relay.sysconfig
16 Source4:        %{name}d.conf.sample
17 Source5:        %{name}.sysconfig
18 Patch0:         %{name}-sh.patch
19 BuildRequires:  groff
20 PreReq:         rc-scripts >= 0.2.0
21 Requires(post,preun):   /sbin/chkconfig
22 Requires(post): fileutils
23 Provides:       dhcpd
24 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
25
26 %description
27 DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
28 individual devices on an IP network to get their own network
29 configuration information (IP address, subnetmask, broadcast address,
30 etc.) from a DHCP server. The overall purpose of DHCP is to make it
31 easier to administer a large network.
32
33 %description -l es
34 DHCP permite que hosts en una red TCP/IP soliciten y tengan sus
35 direcciones IP alocadas dinámicamente, permite también descubrir
36 información sobre la red en que están conectados. BOOTP provee una
37 funcionalidad similar, con ciertas restricciones. Este servidor
38 también las atiende. Esta versión aún está considerada como un
39 software BETA.
40
41 %description -l pl
42 Serwer DHCP (Dynamic Host Configuration Protocol).
43
44 DHCP to protokó³ pozwalaj±cy urz±dzeniom pracuj±cym w sieci IP na
45 pobieranie ich konfiguracji IP (adresu, maski podsieci, adresu
46 rozg³oszeniowego itp.) z serwera DHCP. U³atwia on administrowanie
47 du¿ymi sieciami IP.
48
49 %description -l pt_BR
50 DHCP permite que hosts numa rede TCP/IP requisitem e tenham seus
51 endereços IP alocados dinamicamente, permite também descobrir
52 informações sobre a rede em que estão conectados. BOOTP provê uma
53 funcionalidade similar, com certas restrições. Este servidor também
54 atende aquelas requisições. Esta versão é ainda considerada um
55 software BETA.
56
57 %package client
58 Summary:        DHCP Client
59 Summary(pl):    Klient DHCP
60 Group:          Networking/Daemons
61 Requires(post): fileutils
62 Obsoletes:      pump
63
64 %description client
65 Dynamic Host Configuration Protocol Client.
66
67 %description client -l pl
68 Klient DHCP (Dynamic Host Configuration Protocol).
69
70 %package relay
71 Summary:        DHCP Relay Agent
72 Summary(pl):    Agent przekazywania informacji DHCP
73 Group:          Networking/Daemons
74 PreReq:         rc-scripts >= 0.2.0
75 Requires(post,preun):   /sbin/chkconfig
76 Requires(post): fileutils
77
78 %description relay
79 Dhcp relay is a relay agent for DHCP packets. It is used on a subnet
80 with DHCP clients to "relay" their requests to a subnet that has a
81 DHCP server on it. Because DHCP packets can be broadcast, they will
82 not be routed off of the local subnet. The DHCP relay takes care of
83 this for the client.
84
85 %description relay -l pl
86 Agent przekazywania DHCP (Dynamic Host Configuration Protocol) miêdzy
87 podsieciami. Poniewa¿ komunikaty DHCP mog± byæ przekazywane w formie
88 rozg³oszeniowej, bez tego agenta nie zostan± przerutowane do innej
89 podsieci.
90
91 %package devel
92 Summary:        DHCP development includes and libs
93 Summary(pl):    Pliki nag³ówkowe i biblioteki dla oprogramowania DHCP
94 Group:          Development/Libraries
95
96 %description devel
97 Includes OMAPI and dhcptl libraries.
98
99 OMAPI is an programming layer designed for controlling remote
100 applications, and for querying them for their state. It is currently
101 used by the ISC DHCP server.
102
103 The dhcpctl set of functions provide an API that can be used to
104 communicate with and manipulate a running ISC DHCP server.
105
106 %description devel -l pl
107 Zawiera biblioteki OMAPI oraz dhcpctl.
108
109 OMAPI to warstwa programowa stworzona do kontroli zdalnych aplikacji i
110 odpytywania o ich stan. Aktualnie jest u¿ywana przez serwer ISC DHCP.
111
112 dhcpctl to zbiór funkcji tworz±cych API, które mo¿e byæ u¿ywane do
113 komunikacji z dzia³aj±cym serwerem ISC DHCP i jego kontroli.
114
115 %prep
116 %setup -q
117 %patch0 -p1
118 install %{SOURCE4} .
119
120 %build
121 # Notice: this is not autoconf configure!!!!!!!
122 #         do not change it to %%configure
123 ./configure
124
125 %{__make} COPTS="%{rpmcflags} \
126         -D_PATH_DHCPD_DB=\\\"/var/lib/%{name}/dhcpd.leases\\\" \
127         -D_PATH_DHCLIENT_DB=\\\"/var/lib/%{name}/dhclient.leases\\\"" \
128         DEBUG="" VARDB="/var/lib/%{name}"
129
130 %install
131 rm -rf $RPM_BUILD_ROOT
132 install -d $RPM_BUILD_ROOT{/sbin,%{_sbindir},%{_bindir},%{_mandir}/man{5,8}} \
133         $RPM_BUILD_ROOT{/var/lib/%{name},%{_sysconfdir}/{rc.d/init.d,sysconfig}}
134
135 %{__make} install \
136         DESTDIR="$RPM_BUILD_ROOT" \
137         CLIENTBINDIR="/sbin" \
138         BINDIR="%{_sbindir}" \
139         LIBDIR="%{_libdir}" \
140         INCDIR="%{_includedir}" \
141         ADMMANDIR="%{_mandir}/man8" \
142         ADMMANEXT=.8 \
143         FFMANDIR="%{_mandir}/man5" \
144         LIBMANDIR="%{_mandir}/man3" \
145         LIBMANEXT=.3 \
146         USRMANDIR="%{_mandir}/man1" \
147         USRMANEXT=.1 \
148         VARDB="/var/lib/%{name}" \
149         FFMANEXT=.5
150
151 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/dhcpd
152 install %{SOURCE2} $RPM_BUILD_ROOT/etc/rc.d/init.d/dhcp-relay
153 install %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/dhcp-relay
154 install %{SOURCE5} $RPM_BUILD_ROOT/etc/sysconfig/dhcpd
155
156 mv $RPM_BUILD_ROOT%{_mandir}/man3/omshell.3 \
157         $RPM_BUILD_ROOT%{_mandir}/man1/omshell.1
158
159 install client/scripts/linux $RPM_BUILD_ROOT%{_sbindir}/dhclient-script
160
161 touch $RPM_BUILD_ROOT/var/lib/%{name}/{dhcpd,dhclient}.leases
162
163 %clean
164 rm -rf $RPM_BUILD_ROOT
165
166 %post
167 /sbin/chkconfig --add dhcpd
168 touch /var/lib/%{name}/dhcpd.leases
169
170 if [ ! -d /var/lib/dhcp ]; then
171         install -d /var/lib/dhcp
172 fi
173
174 if [ -f /var/lock/subsys/dhcpd ]; then
175         /etc/rc.d/init.d/dhcpd restart >&2
176 else
177         echo "Run \"/etc/rc.d/init.d/dhcpd start\" to start dhcpd daemon."
178 fi
179
180 %preun
181 if [ "$1" = "0" ];then
182         if [ -f /var/lock/subsys/dhcpd ]; then
183                 /etc/rc.d/init.d/dhcpd stop >&2
184         fi
185         /sbin/chkconfig --del dhcpd
186 fi
187
188 %post client
189 if [ -d /var/lib/dhcp ]; then
190         install -d /var/lib/dhcp
191 fi
192
193 %post relay
194 /sbin/chkconfig --add dhcp-relay
195 if [ -f /var/lock/subsys/dhcrelay ]; then
196         mv -f /var/lock/subsys/dhcrelay /var/lock/subsys/dhcp-relay
197 fi
198 if [ -f /var/lock/subsys/dhcp-relay ]; then
199         /etc/rc.d/init.d/dhcp-relay restart >&2
200 else
201         echo "Run \"/etc/rc.d/init.d/dhcp-relay start\" to start dhcrelay daemon."
202 fi
203
204 %preun relay
205 if [ "$1" = "0" ];then
206         if [ -f /var/lock/subsys/dhcp-relay ]; then
207                 /etc/rc.d/init.d/dhcp-relay stop >&2
208         fi
209         /sbin/chkconfig --del dhcp-relay
210 fi
211
212 %triggerpostun -- dhcp < 3.0
213 if [ `grep ddns-update-style /etc/dhcpd.conf` = "" ]; then
214         umask 027
215         echo "ddns-update-style none;" > /etc/dhcpd.conf.tmp
216         echo "" >> /etc/dhcpd.conf.tmp
217         cat /etc/dhcpd.conf >>/etc/dhcpd.conf.tmp
218         mv -f /etc/dhcpd.conf.tmp /etc/dhcpd.conf
219 fi
220
221 %files
222 %defattr(644,root,root,755)
223 %doc doc/* README RELNOTES dhcpd.conf.sample
224 %{_mandir}/man1/*
225 %{_mandir}/man5/dhcp*
226 %{_mandir}/man8/dhcp*
227 %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/dhcpd
228 %attr(755,root,root) %{_bindir}/*
229 %attr(755,root,root) %{_sbindir}/dhcpd
230 %attr(754,root,root) /etc/rc.d/init.d/dhcpd
231 %attr(750,root,root) %dir /var/lib/%{name}
232 %ghost /var/lib/%{name}/dhcpd.leases
233
234 %files client
235 %defattr(644,root,root,755)
236 %attr(755,root,root) /sbin/dhclient
237 %attr(755,root,root) /sbin/dhclient-script
238 %{_mandir}/man[58]/dhclient*
239 %ghost /var/lib/%{name}/dhclient.leases
240
241 %files relay
242 %defattr(644,root,root,755)
243 %{_mandir}/man8/dhcrelay*
244 %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/dhcp-relay
245 %attr(755,root,root) %{_sbindir}/dhcrelay
246 %attr(754,root,root) /etc/rc.d/init.d/dhcp-relay
247
248 %files devel
249 %defattr(644,root,root,755)
250 %{_mandir}/man3/*
251 %{_libdir}/*.a
252 %{_includedir}/*
This page took 0.088976 seconds and 3 git commands to generate.