Gentoo Archives: gentoo-commits

From: "Sven Wegener (swegener)" <swegener@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/pdns-recursor: ChangeLog pdns-recursor-3.6.0.ebuild
Date: Sat, 21 Jun 2014 07:41:59
Message-Id: 20140621074155.DF2802004E@flycatcher.gentoo.org
1 swegener 14/06/21 07:41:55
2
3 Modified: ChangeLog
4 Added: pdns-recursor-3.6.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x64D4CF24)
9
10 Revision Changes Path
11 1.43 net-dns/pdns-recursor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/pdns-recursor/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/pdns-recursor/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/pdns-recursor/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 10 Mar 2014 21:52:43 -0000 1.42
24 +++ ChangeLog 21 Jun 2014 07:41:55 -0000 1.43
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-dns/pdns-recursor
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.42 2014/03/10 21:52:43 swegener Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.43 2014/06/21 07:41:55 swegener Exp $
30 +
31 +*pdns-recursor-3.6.0 (21 Jun 2014)
32 +
33 + 21 Jun 2014; Sven Wegener <swegener@g.o> +pdns-recursor-3.6.0.ebuild:
34 + Version bump.
35
36 *pdns-recursor-3.5.3 (10 Mar 2014)
37
38
39
40
41 1.1 net-dns/pdns-recursor/pdns-recursor-3.6.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/pdns-recursor/pdns-recursor-3.6.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/pdns-recursor/pdns-recursor-3.6.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pdns-recursor-3.6.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/pdns-recursor-3.6.0.ebuild,v 1.1 2014/06/21 07:41:55 swegener Exp $
51
52 EAPI="4"
53
54 inherit toolchain-funcs flag-o-matic eutils
55
56 DESCRIPTION="The PowerDNS Recursor"
57 HOMEPAGE="http://www.powerdns.com/"
58 SRC_URI="http://downloads.powerdns.com/releases/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="lua"
64
65 DEPEND="lua? ( >=dev-lang/lua-5.1 )"
66 RDEPEND="${DEPEND}
67 !<net-dns/pdns-2.9.20-r1"
68 DEPEND="${DEPEND}
69 >=dev-libs/boost-1.33.1"
70
71 pkg_setup() {
72 filter-flags -ftree-vectorize
73 }
74
75 src_configure() {
76 true
77 }
78
79 src_compile() {
80 emake \
81 LOCALSTATEDIR=/var/lib/powerdns \
82 CC="$(tc-getCC)" \
83 CXX="$(tc-getCXX)" \
84 OPTFLAGS="" \
85 LUA_LIBS_CONFIG="-llua" \
86 LUA_CPPFLAGS_CONFIG="" \
87 LUA="$(use lua && echo 1)"
88 }
89
90 src_install() {
91 dosbin pdns_recursor rec_control
92 doman pdns_recursor.1 rec_control.1
93
94 insinto /etc/powerdns
95 doins "${FILESDIR}"/recursor.conf
96
97 doinitd "${FILESDIR}"/precursor
98
99 # Pretty ugly, uh?
100 dodir /var/lib/powerdns/var/lib
101 dosym ../.. /var/lib/powerdns/var/lib/powerdns
102 }