summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2006-06-26 20:42:11 +0000
committerSven Wegener <swegener@gentoo.org>2006-06-26 20:42:11 +0000
commita61b07812112f51f6f9b426b065199d2156a5952 (patch)
tree0fc7d9d0cb3cd16d36216cc63cf812c6597e86a2 /net-dns/pdns-recursor
parentStable on sparc (diff)
downloadgentoo-2-a61b07812112f51f6f9b426b065199d2156a5952.tar.gz
gentoo-2-a61b07812112f51f6f9b426b065199d2156a5952.tar.bz2
gentoo-2-a61b07812112f51f6f9b426b065199d2156a5952.zip
Version bump.
(Portage version: 2.1.1_pre1-r1)
Diffstat (limited to 'net-dns/pdns-recursor')
-rw-r--r--net-dns/pdns-recursor/ChangeLog8
-rw-r--r--net-dns/pdns-recursor/files/digest-pdns-recursor-3.1.23
-rw-r--r--net-dns/pdns-recursor/pdns-recursor-3.1.2.ebuild37
3 files changed, 47 insertions, 1 deletions
diff --git a/net-dns/pdns-recursor/ChangeLog b/net-dns/pdns-recursor/ChangeLog
index 001784465342..539ad878357b 100644
--- a/net-dns/pdns-recursor/ChangeLog
+++ b/net-dns/pdns-recursor/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-dns/pdns-recursor
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.5 2006/06/18 17:10:24 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.6 2006/06/26 20:42:11 swegener Exp $
+
+*pdns-recursor-3.1.2 (26 Jun 2006)
+
+ 26 Jun 2006; Sven Wegener <swegener@gentoo.org>
+ +pdns-recursor-3.1.2.ebuild:
+ Version bump.
18 Jun 2006; Sven Wegener <swegener@gentoo.org>
pdns-recursor-3.1.1.ebuild:
diff --git a/net-dns/pdns-recursor/files/digest-pdns-recursor-3.1.2 b/net-dns/pdns-recursor/files/digest-pdns-recursor-3.1.2
new file mode 100644
index 000000000000..0d5c0047e986
--- /dev/null
+++ b/net-dns/pdns-recursor/files/digest-pdns-recursor-3.1.2
@@ -0,0 +1,3 @@
+MD5 624f31c188f2f2ba643de3819ee39a74 pdns-recursor-3.1.2.tar.bz2 138043
+RMD160 52464a1fb630654019a010551a41b69dace6d1f0 pdns-recursor-3.1.2.tar.bz2 138043
+SHA256 19bf001c1baccfd854b38ee61485d95bbde07896ca1c394c2f4863c0cd4027f6 pdns-recursor-3.1.2.tar.bz2 138043
diff --git a/net-dns/pdns-recursor/pdns-recursor-3.1.2.ebuild b/net-dns/pdns-recursor/pdns-recursor-3.1.2.ebuild
new file mode 100644
index 000000000000..bb742d14cffa
--- /dev/null
+++ b/net-dns/pdns-recursor/pdns-recursor-3.1.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2006 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.2.ebuild,v 1.1 2006/06/26 20:42:11 swegener Exp $
+
+inherit toolchain-funcs
+
+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="~x86"
+IUSE=""
+
+DEPEND=">=dev-libs/boost-1.33.1"
+RDEPEND="${DEPEND}
+ !<net-dns/pdns-2.9.20-r1"
+
+src_compile() {
+ 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 "doina failed"
+
+ doinitd "${FILESDIR}"/precursor || die "doinitd failed"
+}