diff options
author | Sven Wegener <swegener@gentoo.org> | 2014-12-09 20:01:31 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2014-12-09 20:01:31 +0000 |
commit | 4ea53474107d4ba1d16b178934cc3542e32c1bee (patch) | |
tree | 1a97a0515f2e268e63b732a458f3e70c205c8a26 /net-dns | |
parent | Version bump. (diff) | |
download | gentoo-2-4ea53474107d4ba1d16b178934cc3542e32c1bee.tar.gz gentoo-2-4ea53474107d4ba1d16b178934cc3542e32c1bee.tar.bz2 gentoo-2-4ea53474107d4ba1d16b178934cc3542e32c1bee.zip |
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x64D4CF24)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/pdns-recursor/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/pdns-recursor/pdns-recursor-3.6.2.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/net-dns/pdns-recursor/ChangeLog b/net-dns/pdns-recursor/ChangeLog index e98368b1bcd0..c278e3631faf 100644 --- a/net-dns/pdns-recursor/ChangeLog +++ b/net-dns/pdns-recursor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dns/pdns-recursor # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.50 2014/10/23 10:15:45 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.51 2014/12/09 20:01:31 swegener Exp $ + +*pdns-recursor-3.6.2 (09 Dec 2014) + + 09 Dec 2014; Sven Wegener <swegener@gentoo.org> +pdns-recursor-3.6.2.ebuild: + Version bump. 23 Oct 2014; Sven Wegener <swegener@gentoo.org> -pdns-recursor-3.6.0.ebuild: Remove vulnerable version. diff --git a/net-dns/pdns-recursor/pdns-recursor-3.6.2.ebuild b/net-dns/pdns-recursor/pdns-recursor-3.6.2.ebuild new file mode 100644 index 000000000000..64bfd5d9ca9f --- /dev/null +++ b/net-dns/pdns-recursor/pdns-recursor-3.6.2.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2014 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.6.2.ebuild,v 1.1 2014/12/09 20:01:31 swegener Exp $ + +EAPI="4" + +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="lua" + +DEPEND="lua? ( >=dev-lang/lua-5.1 )" +RDEPEND="${DEPEND} + !<net-dns/pdns-2.9.20-r1" +DEPEND="${DEPEND} + >=dev-libs/boost-1.33.1" + +pkg_setup() { + filter-flags -ftree-vectorize +} + +src_configure() { + true +} + +src_compile() { + emake \ + LOCALSTATEDIR=/var/lib/powerdns \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + OPTFLAGS="" \ + LUA_LIBS_CONFIG="-llua" \ + LUA_CPPFLAGS_CONFIG="" \ + LUA="$(use lua && echo 1)" +} + +src_install() { + dosbin pdns_recursor rec_control + doman pdns_recursor.1 rec_control.1 + + insinto /etc/powerdns + doins "${FILESDIR}"/recursor.conf + + doinitd "${FILESDIR}"/precursor + + # Pretty ugly, uh? + dodir /var/lib/powerdns/var/lib + dosym ../.. /var/lib/powerdns/var/lib/powerdns +} |