]> git.pld-linux.org Git - packages/dhcpcd.git/blob - dhcpcd.spec
8885f2356c58a1abf7013c50bb9711fbe5c6006d
[packages/dhcpcd.git] / dhcpcd.spec
1 Summary:        DHCP Client Daemon
2 Summary(de):    DHCPC-Dämon
3 Summary(es):    Cliente (daemon) DHCP
4 Summary(fr):    Démon DHCPC
5 Summary(pl):    Klient (daemon) DHCP
6 Summary(pt_BR): Servidor DHCPC
7 Summary(tr):    DHCPC sunucu süreçi (daemon)
8 Name:           dhcpcd
9 Version:        2.0.1
10 Release:        1
11 License:        GPL v2
12 Group:          Networking/Daemons
13 Source0:        http://download.berlios.de/dhcpcd/%{name}-%{version}.tar.bz2
14 # Source0-md5:  c5766aafd51f581c2b2c8620b26f5e02
15 Patch0:         %{name}-ntpdrift-66136.patch
16 Patch1:         %{name}-paths_fixes.patch
17 URL:            http://developer.berlios.de/projects/dhcpcd/
18 BuildRequires:  automake
19 BuildRequires:  autoconf
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %define         _sbindir        /sbin
23
24 %description
25 dhcpcd is an implementation of the DHCP client specified in
26 draft-ietf-dhc-dhcp-09 (when -r option is not specified) and RFC1541
27 (when -r option is specified).
28
29 It gets the host information (IP address, netmask, broadcast address,
30 etc.) from a DHCP server and configures the network interface of the
31 machine on which it is running. It also tries to renew the lease time
32 according to RFC1541 or draft-ietf-dhc-dhcp-09.
33
34 %description -l de
35 dhcpcd ist eine Implementierung des DHCP-Client, spezifiziert in
36 draft-ietf-dhc-dhcp-09 (wenn -r option nicht angegeben) und RFC1541
37 (wenn -r option angegeben).
38
39 Es bezieht die Host-Infos (IP-Adresse, Netmask, Broadcast-Adresse,
40 usw.) von einem DHCP-Server und konfiguriert die Netzschnittstelle des
41 Computers, auf dem es läuft Es versucht, die Verleihzeit gemäß RFC1541
42 bzw. draft-ietf-dhc-dhcp-09 zu verlängern.
43
44 %description -l es
45 dhcpcd es una implementación del cliente DHCP especificado en
46 draft-ietf-dhc-dhcp-09 (cuando la opción -r no está especificada) y
47 RFC1541 (cuando la opción -r está especificada). Captura la
48 información del host (dirección IP, máscara de red, dirección de
49 broadcast, etc.) de un servidor DHCP y configura la interface de red
50 de la máquina donde esté ejecutando. También intenta renovar el tiempo
51 de alquiler de los direcciones de acuerdo con RFC1541 o
52 draft-ietf-dhc-dhcp-09.
53
54 %description -l fr
55 dhcpcd est une implantation du client DHCP spécifié dans les
56 draft-ietf-dhc-dhcp-09 (sans l'option -r) et RFC1541 (avec l'option -r).
57
58 Il obtient l'information sur l'hôte (adresse IP, masque réseau,
59 adresse de diffusion, etc.) à partir d'un serveur DHCP et configure
60 l'interface réseau de la machine sur laquelle il tourne. Il essaie
61 aussi de renouveler le « lease time » selon les RFC1541 ou
62 draft-ietf-dhc-dhcp-09.
63
64 %description -l pl
65 dhcpd jest implementacja klienta DHCP, opisan± w
66 draft-ietf-dhc-dhcp-09 (kiedy nie podaje siê opcji -r) oraz RFC1544
67 (kiedy podaje siê opcjê -r).
68
69 Pobiera on informacjê o komputerze (adres IP, maska sieci, adres
70 rozg³oszeniowy itd.) i konfiguruje interfejs sieciowy maszyny, na
71 której jest uruchomiony. Próbuje równie¿ od¶wie¿yæ czas przestoju
72 zgodnie z RFC1541 oraz draft-ietf-dhc-dhcp-09.
73
74 %description -l pt_BR
75 dhcpcd é uma implementação do cliente DHCP especificado em
76 draft-ietf-dhc-dhcp-09 (quando a opção -r não é especificada) e
77 RFC1541 (quando a opção -r é especificada). Ele captura a informação
78 do host (endereço IP, máscara de rede, endereço de broadcast, etc.) de
79 um servidor DHCP e configura a interface de rede da máquina em que
80 está rodando. Ele também tenta renovar o tempo de aluguel dos
81 endereços de acordo com RFC1541 ou draft-ietf-dhc-dhcp-09.
82
83 %description -l tr
84 Makina bilgilerini (IP adresi, að maskesi, yayýn adresi, vb.) bir DHCP
85 sunucusundan alýr ve üzerinde çalýþtýðý makinanýn að arayüzünü
86 ayarlar. Ayrýca RFC1541 veya draft-ietf-dhc-dhcp-09'a uygun olarak,
87 kira zamanýný (lease time) yenilemeye çalýþýr.
88
89 %prep
90 %setup -q
91 %patch0 -p0
92 %patch1 -p0
93
94 %build
95 rm -f missing
96 %{__aclocal}
97 %{__autoconf}
98 %{__automake}
99 %configure
100 %{__make} all \
101         mandir=%{_mandir} \
102         sbindir=%{_sbindir}
103
104 %install
105 rm -rf $RPM_BUILD_ROOT
106 install -d $RPM_BUILD_ROOT%{_var}/lib/dhcpc
107
108 %{__make} install \
109         DESTDIR=$RPM_BUILD_ROOT \
110         mandir=%{_mandir} \
111         sbindir=%{_sbindir}
112
113 %clean
114 rm -rf $RPM_BUILD_ROOT
115
116 %files
117 %defattr(644,root,root,755)
118 %doc README AUTHORS ChangeLog NEWS
119 %attr(755,root,root) %{_sbindir}/dhcpcd
120 %dir %{_var}/lib/dhcpc
121 %{_mandir}/man8/dhcpcd.8*
This page took 0.086433 seconds and 3 git commands to generate.