blob: 95e4d2ed8023d16991a2105675275c7187dfd61f (
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
|
# 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.0.1.ebuild,v 1.1 2006/04/30 00:14:42 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"
src_compile() {
emake OPTFLAGS="${CFLAGS}" CC="$(tc-getCC)" CXX="$(tc-getCXX)" || 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"
}
|