summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2009-07-04 18:12:37 +0000
committerSven Wegener <swegener@gentoo.org>2009-07-04 18:12:37 +0000
commitd0099607c1d5da032909d94ab4395b68e5828874 (patch)
treeb543d48b212d7c23269fcd801145b49f2bb2865d /net-dns
parentCleanup. (diff)
downloadgentoo-2-d0099607c1d5da032909d94ab4395b68e5828874.tar.gz
gentoo-2-d0099607c1d5da032909d94ab4395b68e5828874.tar.bz2
gentoo-2-d0099607c1d5da032909d94ab4395b68e5828874.zip
Cleanup.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-dns')
-rw-r--r--net-dns/pdns-recursor/ChangeLog6
-rw-r--r--net-dns/pdns-recursor/files/pdns-recursor-3.1.6-gcc-4.3.patch12
-rw-r--r--net-dns/pdns-recursor/pdns-recursor-3.1.6.ebuild53
3 files changed, 5 insertions, 66 deletions
diff --git a/net-dns/pdns-recursor/ChangeLog b/net-dns/pdns-recursor/ChangeLog
index 715341c5b245..2b65a4443c72 100644
--- a/net-dns/pdns-recursor/ChangeLog
+++ b/net-dns/pdns-recursor/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-dns/pdns-recursor
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.28 2009/05/31 21:13:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.29 2009/07/04 18:12:37 swegener Exp $
+
+ 04 Jul 2009; Sven Wegener <swegener@gentoo.org>
+ -pdns-recursor-3.1.6.ebuild, -files/pdns-recursor-3.1.6-gcc-4.3.patch:
+ Cleanup.
31 May 2009; Markus Meier <maekke@gentoo.org> pdns-recursor-3.1.7.ebuild:
amd64 stable, bug #270627
diff --git a/net-dns/pdns-recursor/files/pdns-recursor-3.1.6-gcc-4.3.patch b/net-dns/pdns-recursor/files/pdns-recursor-3.1.6-gcc-4.3.patch
deleted file mode 100644
index f36db1503531..000000000000
--- a/net-dns/pdns-recursor/files/pdns-recursor-3.1.6-gcc-4.3.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-gcc-4.3 no longer includes this by default.
-
---- pdns-recursor-3.1.6/dns_random.cc
-+++ pdns-recursor-3.1.6/dns_random.cc
-@@ -1,6 +1,7 @@
- #include "aescpp.h"
- #include <iostream>
- #include <cstring>
-+#include <limits>
- #include <sys/types.h>
- #include <unistd.h>
- #include <sys/time.h>
diff --git a/net-dns/pdns-recursor/pdns-recursor-3.1.6.ebuild b/net-dns/pdns-recursor/pdns-recursor-3.1.6.ebuild
deleted file mode 100644
index 6a84d066517a..000000000000
--- a/net-dns/pdns-recursor/pdns-recursor-3.1.6.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/pdns-recursor-3.1.6.ebuild,v 1.6 2008/10/06 08:24:14 swegener Exp $
-
-inherit toolchain-funcs flag-o-matic eutils
-
-DESCRIPTION="The PowerDNS Recursor"
-HOMEPAGE="http://www.powerdns.com/"
-SRC_URI="http://downloads.powerdns.com/releases/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=">=dev-libs/boost-1.33.1"
-RDEPEND="${DEPEND}
- !<net-dns/pdns-2.9.20-r1"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}"/${P}-gcc-4.3.patch
- epatch "${FILESDIR}"/${PN}-3.1.7-error-message.patch
-
- sed -i -e s:/var/run/:/var/lib/powerdns: "${S}"/config.h || die
-}
-
-src_compile() {
- filter-flags -ftree-vectorize
-
- emake \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- CFLAGS="${CFLAGS}" \
- CXXFLAGS="${CXXFLAGS}" \
- || die "emake failed"
-}
-
-src_install() {
- dosbin pdns_recursor rec_control || die "dosbin failed"
- doman pdns_recursor.1 rec_control.1 || die "doman failed"
-
- insinto /etc/powerdns
- doins "${FILESDIR}"/recursor.conf || die "doins failed"
-
- doinitd "${FILESDIR}"/precursor || die "doinitd failed"
-
- # Pretty ugly, uh?
- dodir /var/lib/powerdns/var/lib
- dosym ../.. /var/lib/powerdns/var/lib/powerdns
-}