blob: 6a84d066517ae00f1e605f85b3a755c1d1d4e44e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# 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
}
|