]> git.pld-linux.org Git - packages/xtables-geoip.git/blob - xtables-geoip.spec
- rel 2
[packages/xtables-geoip.git] / xtables-geoip.spec
1 Summary:        GeoIP database files for xt_geoip
2 Name:           xtables-geoip
3 Version:        20110404
4 Release:        2
5 License:        GPL, Open Data License
6 Group:          Networking/Admin
7 URL:            http://www.maxmind.com/
8 Source0:        http://geolite.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip
9 # Source0-md5:  37cf1951b9ecced2612f8ff0c0bd3eaa
10 Source1:        http://geolite.maxmind.com/download/geoip/database/GeoIPv6.csv.gz
11 # Source1-md5:  4956a5ab8ecd2dd078420faa5552f09f
12 Source2:        http://geolite.maxmind.com/download/geoip/database/LICENSE.txt
13 # Source2-md5:  a1381bd1aa0a0c91dc31b3f1e847cf4a
14 Source3:        http://xtables-addons.git.sourceforge.net/git/gitweb.cgi?p=xtables-addons/xtables-addons;a=blob_plain;f=geoip/xt_geoip_build
15 # Source3-md5:  9933235c5d9c4c7fbad965d6317f8c2f
16 BuildRequires:  perl-Text-CSV_XS >= 0.69
17 BuildRequires:  perl-base
18 BuildRequires:  unzip
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %define         dbdir   /usr/share/xt_geoip
22
23 # no debuginfo to package
24 %define         _enable_debug_packages  0
25
26 %ifarch ppc sparc ppc64 sparc64 sparcv9
27 %define         byteorder       BE
28 %else
29 %define         byteorder       LE
30 %endif
31
32 %description
33 The package contains the GeoIP definition files (which IP addresses
34 belong to which country) that are needed for Xtables-addons's xt_geoip
35 module.
36
37 %prep
38 %setup -qc
39
40 ver=$(stat -c '%y' GeoIPCountryWhois.csv | awk '{print $1}' | tr -d -)
41 if [ "$ver" != %{version} ]; then
42         exit 1
43 fi
44
45 gunzip -c %{SOURCE1} >GeoIPv6.csv
46 cp -a %{SOURCE2} .
47
48 %build
49 install -d %{byteorder}
50 %{__perl} %{SOURCE3} GeoIPCountryWhois.csv GeoIPv6.csv | tee ranges.txt
51
52 %install
53 rm -rf $RPM_BUILD_ROOT
54 install -d $RPM_BUILD_ROOT%{dbdir}/%{byteorder}
55 cp -a %{byteorder}/* $RPM_BUILD_ROOT%{dbdir}/%{byteorder}
56
57 %clean
58 rm -rf $RPM_BUILD_ROOT
59
60 %files
61 %defattr(644,root,root,755)
62 %doc LICENSE.txt ranges.txt
63 %dir %{dbdir}
64 %{dbdir}/%{byteorder}
This page took 0.038841 seconds and 4 git commands to generate.