diff options
author | Sven Wegener <swegener@gentoo.org> | 2014-07-20 19:22:33 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2014-07-20 19:22:33 +0000 |
commit | 017e7981ff2fa62e931d3209f56b14dc4a35ebdb (patch) | |
tree | 841f4d962ce6927b222d1b390a2148e4faa276b0 /net-dns/pdns-recursor/pdns-recursor-3.1.7.2.ebuild | |
parent | arm stable, bug #512012 (diff) | |
download | gentoo-2-017e7981ff2fa62e931d3209f56b14dc4a35ebdb.tar.gz gentoo-2-017e7981ff2fa62e931d3209f56b14dc4a35ebdb.tar.bz2 gentoo-2-017e7981ff2fa62e931d3209f56b14dc4a35ebdb.zip |
Clean old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x64D4CF24)
Diffstat (limited to 'net-dns/pdns-recursor/pdns-recursor-3.1.7.2.ebuild')
-rw-r--r-- | net-dns/pdns-recursor/pdns-recursor-3.1.7.2.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/net-dns/pdns-recursor/pdns-recursor-3.1.7.2.ebuild b/net-dns/pdns-recursor/pdns-recursor-3.1.7.2.ebuild deleted file mode 100644 index ccae667b7390..000000000000 --- a/net-dns/pdns-recursor/pdns-recursor-3.1.7.2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2010 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.7.2.ebuild,v 1.3 2010/02/01 19:46:42 maekke 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="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_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${P}-error-message.patch - - sed -i -e s:/var/run/:/var/lib/powerdns: "${S}"/config.h || die -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - CXX="$(tc-getCXX)" \ - OPTFLAGS="" \ - LUA_LIBS_CONFIG="-llua" \ - LUA_CPPFLAGS_CONFIG="" \ - LUA="$(use lua && echo 1)" \ - || 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 -} |