]> git.pld-linux.org Git - packages/pdns.git/blob - pdns.spec
- updated pdns.conf, Rel 3, STBR AC-READY,
[packages/pdns.git] / pdns.spec
1 Summary:        PowerDNS is a Versatile Database Driven Nameserver
2 Summary(pl):    PowerDNS to wielofunkcyjny serwer nazw korzystaj±cy z relacyjnych baz danych
3 Name:           pdns
4 Version:        2.9.17
5 Release:        3
6 License:        GPL
7 Group:          Networking/Daemons
8 Source0:        http://downloads.powerdns.com/releases/%{name}-%{version}.tar.gz
9 # Source0-md5:  92489391182dc40012f1de7b2005ea93
10 Source1:        http://downloads.powerdns.com/documentation/%{name}.pdf
11 # Source1-md5:  f183b5bec39e40f8c55c19afc3a3f933
12 Source2:        http://downloads.powerdns.com/documentation/%{name}.txt
13 Source3:        %{name}.init
14 Source4:        %{name}.conf
15 Source5:        %{name}.sysconfig
16 Patch0:         %{name}-configure.patch
17 #Patch1:                http://wiki.powerdns.com/projects/trac/changeset/305?format=diff
18 Patch1:         pdns-305.patch
19 #Patch2:                http://wiki.powerdns.com/projects/trac/changeset/307?format=diff
20 Patch2:         pdns-307.patch
21 URL:            http://www.powerdns.com/
22 BuildRequires:  bison
23 BuildRequires:  flex
24 BuildRequires:  libstdc++-devel
25 BuildRequires:  libpq++-devel
26 BuildRequires:  mysql-devel
27 BuildRequires:  openldap-devel
28 BuildRequires:  rpmbuild(macros) >= 1.159
29 BuildRequires:  zlib-devel
30 PreReq:         rc-scripts
31 Requires(pre):  /bin/id
32 Requires(pre):  /usr/bin/getgid
33 Requires(pre):  /usr/sbin/groupadd
34 Requires(pre):  /usr/sbin/useradd
35 Requires(post,preun):   /sbin/chkconfig
36 Requires(postun):       /usr/sbin/groupdel
37 Requires(postun):       /usr/sbin/userdel
38 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
39 Provides:       group(djbdns)
40 Provides:       nameserver
41 Provides:       user(pdns)
42 Obsoletes:      powerdns
43
44 %description
45 PowerDNS is a versatile nameserver which supports a large number of
46 different backends ranging from simple zonefiles to relational
47 databases and load balancing/failover algorithms.
48
49 %description -l pl
50 PowerDNS to wielofunkcyjny serwer nazw posiadaj±cy du¿± liczbê wtyczek
51 od prostych stref (a'la BIND) pocz±wszy, a na relacyjnych bazach
52 danych skoñczywszy oraz zawieraj±cy algorytmy zrównowa¿enia obci±¿enia
53 i prze³±czania w wypadku awarii.
54
55 %package backend-pipe
56 Summary:        PowerDNS support for custom pipe backend
57 Summary(pl):    Wsparcie PowerDNS dla w³asnego mechanizmu przechowywania stref
58 Group:          Development/Libraries
59
60 %description backend-pipe
61 This package allows creation of own backend using simple STDIN/STDOUT
62 API. Example backend script in Perl is provided in package
63 documentation.
64
65 %description backend-pipe -l pl
66 Ten pakiet pozwala na utworzenie w³asnego mechanizmu przechowywania
67 stref za pomoc¹ prostego interfejsu STDIN/STDOUT. Przyk³adowy skrypt w
68 Perlu zosta³ do³±czony do dokumentacji pakietu.
69
70 %package backend-gpgsql
71 Summary:        PowerDNS support for PostgreSQL
72 Summary(pl):    Wsparcie PowerDNS dla baz PostgresQL
73 Group:          Development/Libraries
74 Requires:       postgresql
75
76 %description backend-gpgsql
77 This package allows zone storage in PostgreSQL relational db tables.
78
79 %description backend-gpgsql -l pl
80 Ten pakiet pozwala na przechowywanie danych o strefach w tabelach
81 relacyjnej bazy danych PostgreSQL.
82
83 %package backend-gmysql
84 Summary:        PowerDNS support for MySQL
85 Summary(pl):    Wsparcie PowerDNS dla baz MySQL
86 Group:          Development/Libraries
87 Requires:       mysql
88
89 %description backend-gmysql
90 This package allows zone storage in MySQL relational db tables.
91
92 %description backend-gmysql -l pl
93 Ten pakiet pozwala na przechowywanie danych o strefach w tabelach
94 relacyjnej bazy danych MySQL.
95
96 %package backend-ldap
97 Summary:        PowerDNS support for LDAP
98 Summary(pl):    Wsparcie PowerDNS dla baz LDAP
99 Group:          Development/Libraries
100 Requires:       openldap
101
102 %description backend-ldap
103 This package allows zone storage in LDAP directory.
104
105 %description backend-ldap -l pl
106 Ten pakiet pozwala na przechowywanie danych o strefach w katalogu LDAP.
107
108 %prep
109 %setup -q
110 %patch0 -p1
111 %patch1 -p2
112 %patch2 -p2
113 cp %{SOURCE1} .
114 cp %{SOURCE2} .
115
116 %build
117 CPPFLAGS="-DHAVE_NAMESPACE_STD -DHAVE_CXX_STRING_HEADER -DDLLIMPORT=\"\""
118 %configure \
119         --libdir=%{_libdir}/%{name} \
120         --sysconfdir=%{_sysconfdir}/%{name} \
121         --with-socketdir=/var/run \
122         --with-dynmodules="gmysql gpgsql pipe ldap" \
123         --with-modules="" \
124         --enable-mysql \
125         --enable-pgsql \
126         --with-pgsql-lib=%{_libdir} \
127         --with-pgsql-includes=%{_includedir} \
128         --with-mysql-lib=%{_libdir} \
129         --with-mysql-includes=%{_includedir} \
130         --enable-ldap \
131         --disable-static
132
133 %{__make}
134
135 %install
136 rm -rf $RPM_BUILD_ROOT
137 install -d $RPM_BUILD_ROOT{%{_initrddir},%{_sysconfdir}/%{name},/etc/sysconfig}
138
139 %{__make} install \
140         DESTDIR=$RPM_BUILD_ROOT
141
142 install %{SOURCE3} $RPM_BUILD_ROOT%{_initrddir}/%{name}
143 install %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/%{name}.conf
144 install %{SOURCE5} $RPM_BUILD_ROOT/etc/sysconfig/pdns
145
146 # useless - modules are dlopened by *.so
147 rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/*.la
148
149 %clean
150 rm -rf $RPM_BUILD_ROOT
151
152 %pre
153 if [ -n "`/usr/bin/getgid djbdns`" ]; then
154         if [ "`/usr/bin/getgid djbdns`" != "32" ]; then
155                 echo "Error: group djbdns doesn't have gid=32. Correct this before installing pdns." 1>&2
156                 exit 1
157         fi
158 else
159         /usr/sbin/groupadd -g 32 djbdns
160 fi
161 if [ -n "`/bin/id -u pdns 2>/dev/null`" ]; then
162         if [ "`/bin/id -u pdns`" != "30" ]; then
163                 echo "Error: user pdns doesn't have uid=30. Correct this before installing pdns." 1>&2
164                 exit 1
165         fi
166 else
167         /usr/sbin/useradd -u 30 -d /var/lib/pdns -s /bin/false -c "pdns User" -g djbdns pdns 1>&2
168 fi
169
170 %post
171 # dirty hack so the config file is processed correctly, and server does not respawn
172 TMP=`mktemp /tmp/pdns.install-tmp.XXXXXX`
173 sed 's/^ *//g' /etc/pdns/pdns.conf > $TMP
174 cp /etc/pdns/pdns.conf /etc/pdns/pdns.conf.rpmsave
175 mv $TMP /etc/pdns/pdns.conf
176
177 /sbin/chkconfig --add pdns
178 if [ -f /var/lock/subsys/pdns ]; then
179         /etc/rc.d/init.d/pdns restart >&2
180 else
181         echo "Run \"/etc/rc.d/init.d/pdns start\" to start pdns." >&2
182 fi
183
184 %preun
185 if [ "$1" = "0" ]; then
186         if [ -f /var/lock/subsys/pdns ]; then
187                 /etc/rc.d/init.d/pdns stop
188         fi
189         /sbin/chkconfig --del pdns
190 fi
191
192 %postun
193 if [ "$1" = "0" ]; then
194         %userremove pdns
195         %groupremove djbdns
196 fi
197
198 %files
199 %defattr(644,root,root,755)
200 %doc ChangeLog HACKING INSTALL README TODO WARNING pdns.pdf pdns.txt
201 %config(noreplace) %attr(0600,root,root) %{_sysconfdir}/%{name}/%{name}.conf
202 %config(noreplace) %attr(0754,root,root) %{_initrddir}/%{name}
203 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/pdns
204 %dir %{_sysconfdir}/%{name}
205 %attr(755,root,root) %{_sbindir}/*
206 %attr(755,root,root) %{_bindir}/*
207 %{_mandir}/man8/*
208
209 %files backend-gmysql
210 %defattr(644,root,root,755)
211 %attr(755,root,root) %{_libdir}/%{name}/*mysql*.so*
212
213 %files backend-gpgsql
214 %defattr(644,root,root,755)
215 %attr(755,root,root) %{_libdir}/%{name}/*pgsql*.so*
216
217 %files backend-pipe
218 %defattr(644,root,root,755)
219 %attr(755,root,root) %{_libdir}/%{name}/*pipe*.so*
220
221 %files backend-ldap
222 %defattr(644,root,root,755)
223 %attr(755,root,root) %{_libdir}/%{name}/*ldap*.so*
This page took 0.057186 seconds and 4 git commands to generate.