]> git.pld-linux.org Git - packages/dnshistory.git/blob - dnshistory.spec
- Changed default database location
[packages/dnshistory.git] / dnshistory.spec
1 # TODO:
2 # - move man_fix patch to ac/am automatic generation, based on configure option 
3 Summary:        dnshistory - storing a history of DNS/Name changes
4 Name:           dnshistory
5 %define         _beta   beta1
6 Version:        1.3
7 Release:        0.5
8 License:        GPL v2+
9 Group:          Applications/Networking
10 Source0:        http://www.stedee.id.au/files/%{name}-%{version}-%{_beta}.tar.gz
11 # Source0-md5:  c9843e87412c1bdf8fb2ec5983f0c9c4
12 Patch0:         %{name}-man_fix.patch
13 URL:            http://www.stedee.id.au/dnshistory/
14 BuildRequires:  db-devel
15 BuildRequires:  pcre-devel
16 BuildRequires:  zlib-devel
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %define         _databasedir    /var/lib/%{name}
20 %define         _dbfile         %{name}.db
21
22 %description
23 dnshistory provides a means for storing a history of DNS/Name changes
24 for the IP Addresses extracted from web log files. The major target
25 being that multiple analyses of older log files do not require
26 re-lookups of IP Address to FQDNs, and additionally maintain the
27 accuracy of the lookup as it was then and not as it is now.
28
29 %prep
30 %setup -q -n %{name}-%{version}-%{_beta}
31 %patch0 -p1
32
33 %build
34 %configure \
35         --enable-database-dir=%{_databasedir} \
36         --enable-database-name=%{_dbfile}
37 %{__make}
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41 install -d $RPM_BUILD_ROOT/%{_databasedir}
42
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 touch $RPM_BUILD_ROOT/%{_databasedir}/%{_dbfile}
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(644,root,root,755)
53 %doc AUTHORS ChangeLog NEWS
54 %attr(755,root,root) %{_bindir}/%{name}
55 %attr(755,stats,stats) %dir %{_databasedir}
56 %ghost %{_databasedir}/%{_dbfile}
57 %{_mandir}/man1/*.1*
This page took 0.065783 seconds and 3 git commands to generate.