]> git.pld-linux.org Git - packages/ipv6calc.git/blob - ipv6calc.spec
- updated to 0.97.3, ip2location support on bcond
[packages/ipv6calc.git] / ipv6calc.spec
1 #
2 # Conditional build:
3 %bcond_without  geoip           # GeoIP support
4 %bcond_with     ip2location     # IP2Location support
5 #
6 Summary:        IPv6 address format change and calculation utility
7 Summary(pl.UTF-8):      Narzędzie do zmiany formatu i przeliczania adresów IPv6
8 Name:           ipv6calc
9 Version:        0.97.3
10 Release:        1
11 License:        GPL v2
12 Group:          Networking/Utilities
13 Source0:        ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/%{name}-%{version}.tar.gz
14 # Source0-md5:  1fc9c1a14802638f21e59408faa721a6
15 URL:            http://www.deepspace6.net/projects/ipv6calc.html
16 %{?with_geoip:BuildRequires:    GeoIP-devel >= 1.4.1}
17 %{?with_ip2location:BuildRequires:      ip2location-c-devel}
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 ipv6calc is a small utility which formats and calculates IPv6
22 addresses in different ways.
23
24 Install this package, if you want to extend the existing address
25 detection on IPv6 initscript setup or make life easier in adding
26 reverse IPv6 zones to DNS or using in DNS queries like nslookup -q=ANY
27 `ipv6calc -r 3ffe:400:100:f101::1/48` See also here for more details:
28 <http://www.bieringer.de/linux/IPv6/ipv6calc/>.
29
30 %description -l pl.UTF-8
31 ipv6calc to niewielkie narzędzie formatujące i przeliczające adresy
32 IPv6 na różne sposoby. Ułatwia życie przy dodawaniu stref odwrotnych
33 IPv6 do DNS lub odpytywaniu w rodzaju nslookup -q=ANY `ipv6calc -r
34 3ffe:400:100:f101::1/48`. Więcej szczegółów pod adresem
35 <http://www.bieringer.de/linux/IPv6/ipv6calc/>.
36
37 %prep
38 %setup -q
39
40 %build
41 %configure \
42         %{?with_geoip:--enable-geoip} \
43         %{?with_ip2location:--enable-ip2location --with-ip2location-dyn-lib=libIP2Location.so.1}
44
45 %{__make}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49 %{__make} install \
50     DESTDIR=$RPM_BUILD_ROOT
51
52 %clean
53 rm -rf $RPM_BUILD_ROOT
54
55 %files
56 %defattr(644,root,root,755)
57 %doc ChangeLog README CREDITS TODO doc/ipv6calc.html ipv6calcweb/ipv6calcweb.cgi
58 %attr(755,root,root) %{_bindir}/ipv6calc
59 %attr(755,root,root) %{_bindir}/ipv6loganon
60 %attr(755,root,root) %{_bindir}/ipv6logconv
61 %attr(755,root,root) %{_bindir}/ipv6logstats
62 %{_mandir}/man8/ipv6calc.8*
63 %{_mandir}/man8/ipv6loganon.8*
64 %{_mandir}/man8/ipv6logconv.8*
65 %{_mandir}/man8/ipv6logstats.8*
This page took 0.50483 seconds and 3 git commands to generate.