Search
j0ke.net Open Build Service
>
Projects
>
home:opeter
:
powerdns33_centos6
>
powerdns
> pdns.spec
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File pdns.spec of Package powerdns (Revision 8)
Currently displaying revision
8
,
show latest
Summary: PowerDNS is a Versatile Database Driven Nameserver Name: pdns Version: 3.3 Release: 2%{dist} Epoch: 0 License: GPL Group: System/Servers URL: http://www.powerdns.com/ Source0: http://downloads.powerdns.com/releases/pdns-%{version}.tar.gz #Patch0: pdns-init.patch Patch1: pdns-slavedb.patch Patch2: pdns-allow-axfr-from.patch Patch3: pdns-cname-wildcard-select.patch Source1: http://downloads.powerdns.com/documentation/html.tar.gz BuildRequires: autoconf automake make ragel BuildRequires: gcc gcc-c++ BuildRequires: zlib-devel BuildRequires: lua-devel #BuildRequires: lua-static BuildRequires: lua-static BuildRequires: Percona-Server-devel-55 Percona-Server-shared-55 %if 0%{?rhel_version} < 600 || 0%{?centos_version} < 600 #BuildRequires: boost-static >= 1.34.0 BuildRequires: boost-devel >= 1.34.0 #BuildRequires: mysql-devel >= 5.0.0 %else #BuildRequires: boost-static >= 1.4 BuildRequires: boost-devel >= 1.4 #BuildRequires: mysql-devel >= 5.1.0 %endif Requires: lua %if 0%{?rhel_version} < 600 || 0%{?centos_version} < 600 Requires: boost-serialization >= 1.34.0 Requires: boost-program-options >= 1.34.0 %else Requires: boost-serialization >= 1.41.0 Requires: boost-program-options >= 1.41.0 %endif Provides: nameserver pdns-server powerdns = %{version}-%{release} BuildRoot: %{_tmppath}/%{name}-%{version}-root %description PowerDNS is a versatile nameserver which supports a large number of different backends ranging from simple zonefiles to relational databases and load balancing/failover algorithms. This RPM comes with support for MySQL backend. %package tools Summary: DNS tools for %{name} Group: System/Servers Requires: %{name} = %{version} %description tools This package contains the DNS tools for the PowerDNS nameserver. %package devel Summary: Development headers and libraries for %{name} Group: System/Servers Requires: %{name} = %{version} %description devel Development headers and libraries for %{name} %prep %setup -q -n pdns-%{version} -a1 #%patch0 -p0 -b .init %patch1 -p0 %patch2 -p0 #%patch3 -p0 %build %configure \ --sysconfdir=%{_sysconfdir}/pdns \ --libdir=%{_libdir}/%{name} \ --libdir=%{_libdir} \ --with-mysql-lib=%{_libdir}/mysql \ --with-socketdir=/var/run/pdns-server \ --with-modules="gmysql geo pipe" # --enable-static-binaries %{__make} %install [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_sysconfdir}/pdns/ install -d $RPM_BUILD_ROOT%{_localstatedir}/run/pdns-server %{__make} %{?_smp_mflags} DESTDIR=$RPM_BUILD_ROOT install # fix the config mv $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/pdns.conf-dist $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/pdns.conf cat >> $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/pdns.conf << EOF module-dir=%{_libdir} socket-dir=/var/run/pdns-server setuid=pdns setgid=pdns EOF chmod 600 $RPM_BUILD_ROOT%{_sysconfdir}/pdns/pdns.conf # install sysv scripts install -d $RPM_BUILD_ROOT%{_initrddir} install -m755 pdns/pdns $RPM_BUILD_ROOT%{_initrddir}/pdns %clean [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT %pre if [ -z "`/usr/bin/id -g pdns 2>/dev/null`" ]; then /usr/sbin/groupadd -g 25 -r -f pdns 2>&1 || : fi if [ -z "`/usr/bin/id -u pdns 2>/dev/null`" ]; then /usr/sbin/useradd -u 25 -r -M -d /tmp -s /sbin/nologin -c "PowerDNS" -g pdns pdns 2>&1 || : fi %post /sbin/chkconfig --add pdns %preun if [ $1 -eq 0 ]; then /sbin/service pdns stop >/dev/null 2>&1 || : /sbin/chkconfig --del pdns if [ -d /var/run/pdns-server ]; then rm -rf /var/run/pdns-server/* fi fi %postun if [ $1 -eq 0 ]; then rm -rf %{_localstatedir}/run/pdns-server/ /usr/sbin/userdel pdns 2>/dev/null || : /usr/sbin/groupdel pdns 2>/dev/null || : fi %files %defattr(-,root,root) %doc HACKING INSTALL README TODO html %config(noreplace) %attr(0600,root,root) %{_sysconfdir}/pdns/pdns.conf %config(noreplace) %attr(0755,root,root) %{_initrddir}/pdns %dir %{_sysconfdir}/pdns %dir %attr(0755,pdns,pdns) /var/run/pdns-server %{_bindir}/pdns_control %{_bindir}/pdnssec %{_sbindir}/pdns_server %{_mandir}/man8/pdns_control.8* %{_mandir}/man8/pdns_server.8* %{_libdir}/libgeobackend.so %{_libdir}/libgmysqlbackend.so %{_libdir}/libpipebackend.so %files tools %defattr(-,root,root) %{_bindir}/dnsreplay %{_bindir}/zone2json %{_bindir}/zone2ldap %{_bindir}/zone2sql %{_mandir}/man8/zone2sql.8* %{_mandir}/man8/dnsreplay.8* %{_mandir}/man8/dnsscope.8* %{_mandir}/man8/dnswasher.8* %{_mandir}/man8/pdnssec.8* %{_mandir}/man8/zone2ldap.8* %files devel %defattr(-,root,root) %{_libdir}/*.la %{_libdir}/*.a %changelog * Fri May 03 2013 Oliver Peter <oliver.peter@internetx.de> - Added new allow-axfr-from patch (requires domainmetadata) - Preparing to go live (RC1) * Mon Sep 10 2012 Oliver Peter <oliver.peter@internetx.de> 3.1-2 - Applied SlaveDB Patch - Pimped SPEC File (no dynamic modules, geobackend) * Fri May 04 2012 Kees Monshouwer <km|monshouwer_com> 3.1-1 - Update to 3.1 * Sun Jan 08 2012 Kees Monshouwer <km|monshouwer_com> 3.0.1-1 - Update to 3.0.1 * Mon Jul 22 2011 Kees Monshouwer <km@monshouwer.com> 3.0-1 - Initial build for PowerDNS 3.0