]> git.pld-linux.org Git - packages/dnsutl.git/blob - dnsutl.spec
- up to 1.11
[packages/dnsutl.git] / dnsutl.spec
1 Summary:        Collection of tools to make administering DNS easier
2 Summary(pl.UTF-8):      Zestaw narzędzi ułatwiających administrowanie DNS-em
3 Name:           dnsutl
4 Version:        1.11
5 Release:        1
6 License:        GPL v2
7 Group:          Applications
8 Source0:        http://dl.sourceforge.net/dnsutl/%{name}-%{version}.tar.gz
9 # Source0-md5:  6de57b9589e6210a64703af29a1522af
10 URL:            http://dnsutl.sourceforge.net/
11 BuildRequires:  bison
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %define         _bindir %{_prefix}/sbin
15
16 %description
17 The dnsutl package is a collection tools to make administering DNS
18 easier.
19
20 These include:
21 - dns-rev: Take the forward DNS mapping and generate the reverse
22   mapping. This is useful for producing a self-consistent DNS
23   configuration.
24 - dns-ethers: By using a bogus record type, you can keep the MAC
25   address with the IP address, and generate the /etc/ethers file.
26 - dns-hosts: Take the forward DNS mapping and generate the /etc/hosts
27   file.
28 - dns-bootp: Using the MAC and IP information, you can generate the
29   /etc/bootptab file.
30 - dns-ng: Take the forward DNS mapping and generate the /etc/netgroup
31   file.
32 - dns-bootparams: Using the MAC and IP information, you can generate
33   the Sun /etc/bootparams file.
34 - dns-boot-check: Check your named(8) configuration for self-
35   consistency.
36 - dns-hosts-import: Turn your /etc/hosts file into a DNS forward map,
37   as a first step to configuring your DNS server.
38 - dns-dhcp: Using the MAC and IP information, you can generate the
39   /etc/dhcp.conf file.
40
41 All of these programs are both faster than shell scripts, and more
42 robust when faced with all the peculiar semantics of DNS resource
43 files. They even understand the $include directive.
44
45 %description -l pl.UTF-8
46 Pakiet dnsutl to zestaw narzędzi ułatwiających administrowanie DNS-em.
47 Zawiera:
48 - dns-rev - generowanie odwrotnych odwzorowań DNS na podstawie
49   prostych; przydatne do tworzenia samodzielnej konfiguracji DNS.
50 - dns-ethers - używając fałszywego rodzaju rekordu można przechowywać
51   adresy MAC wraz z adresami IP i generować plik /etc/ethers.
52 - dns-hosts - pobieranie prostego odwzorowania DNS i generowanie pliku
53   /etc/hosts.
54 - dns-bootp - generowanie pliku /etc/bootptab na podstawie informacji
55   o adresach MAC i IP.
56 - dns-ng - pobieranie prostego odwzorowania DNS i generowanie pliku
57   /etc/netgroup.
58 - dns-bootparams - przy użyciu informacji o adresach MAC i IP pozwala
59   generować plik /etc/bootparams dla Suna.
60 - dns-boot-check - sprawdzanie konfiguracji serwera named(8) pod kątem
61   samodzielności.
62 - dns-hosts-import - zamiana pliku /etc/hosts na odwzorowanie proste
63   DNS jako pierwszy krok do konfiguracji serwera DNS.
64 - dns-dhcp - przy użyciu informacji o adresach MAC i IP pozwala
65   generować plik /etc/dhcp.conf.
66
67 Wszystkie te programy są szybsze niż skrypty powłoki i przydatniejsze
68 w połączeniu ze szczególną semantyką plików zasobów DNS. Rozumieją
69 nawet dyrektywę $include.
70
71 %prep
72 %setup -q
73
74 %build
75 %configure
76 %{__make} -j1
77
78 %install
79 rm -rf $RPM_BUILD_ROOT
80 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
81 %{__make} install -j1 \
82         DESTDIR=$RPM_BUILD_ROOT
83
84 %clean
85 rm -rf $RPM_BUILD_ROOT
86
87 %files
88 %defattr(644,root,root,755)
89 %doc README
90 %attr(755,root,root) %{_bindir}/dns-boot-check
91 %attr(755,root,root) %{_bindir}/dns-bootp
92 %attr(755,root,root) %{_bindir}/dns-bootparams
93 %attr(755,root,root) %{_bindir}/dns-dhcp
94 %attr(755,root,root) %{_bindir}/dns-ethers
95 %attr(755,root,root) %{_bindir}/dns-ethers-import
96 %attr(755,root,root) %{_bindir}/dns-filter
97 %attr(755,root,root) %{_bindir}/dns-hosts
98 %attr(755,root,root) %{_bindir}/dns-hosts-import
99 %attr(755,root,root) %{_bindir}/dns-ng
100 %attr(755,root,root) %{_bindir}/dns-rev
101 %{_mandir}/man1/dns-boot-check.1*
102 %{_mandir}/man1/dns-bootp.1*
103 %{_mandir}/man1/dns-bootparams.1*
104 %{_mandir}/man1/dns-dhcp.1*
105 %{_mandir}/man1/dns-ethers-import.1*
106 %{_mandir}/man1/dns-ethers.1*
107 %{_mandir}/man1/dns-filter.1*
108 %{_mandir}/man1/dns-hosts-import.1*
109 %{_mandir}/man1/dns-hosts.1*
110 %{_mandir}/man1/dns-license.1*
111 %{_mandir}/man1/dns-ng.1*
112 %{_mandir}/man1/dns-rev.1*
This page took 0.151514 seconds and 3 git commands to generate.