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