diff options
author | Sven Wegener <swegener@gentoo.org> | 2008-09-04 10:52:51 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2008-09-04 10:52:51 +0000 |
commit | 92006cfa3d38b766189b0d419f83e641a52faf71 (patch) | |
tree | e256d80bb545f41625b2a662bd9c37408beb0d27 /net-dns | |
parent | Cleanup. (diff) | |
download | gentoo-2-92006cfa3d38b766189b0d419f83e641a52faf71.tar.gz gentoo-2-92006cfa3d38b766189b0d419f83e641a52faf71.tar.bz2 gentoo-2-92006cfa3d38b766189b0d419f83e641a52faf71.zip |
Cleanup.
(Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc5 x86_64)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/pdns-recursor/ChangeLog | 6 | ||||
-rw-r--r-- | net-dns/pdns-recursor/pdns-recursor-3.1.5.ebuild | 49 |
2 files changed, 5 insertions, 50 deletions
diff --git a/net-dns/pdns-recursor/ChangeLog b/net-dns/pdns-recursor/ChangeLog index 8561e32a4753..4947105e879a 100644 --- a/net-dns/pdns-recursor/ChangeLog +++ b/net-dns/pdns-recursor/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dns/pdns-recursor # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.23 2008/08/04 19:03:18 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/ChangeLog,v 1.24 2008/09/04 10:52:51 swegener Exp $ + + 04 Sep 2008; Sven Wegener <swegener@gentoo.org> + -pdns-recursor-3.1.5.ebuild: + Cleanup. 04 Aug 2008; Markus Meier <maekke@gentoo.org> pdns-recursor-3.1.6.ebuild: amd64 stable, bug #231335 diff --git a/net-dns/pdns-recursor/pdns-recursor-3.1.5.ebuild b/net-dns/pdns-recursor/pdns-recursor-3.1.5.ebuild deleted file mode 100644 index 0f04bc78cded..000000000000 --- a/net-dns/pdns-recursor/pdns-recursor-3.1.5.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# 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.5.ebuild,v 1.3 2008/04/06 23:34:25 swegener Exp $ - -inherit toolchain-funcs flag-o-matic - -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} - - 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 -} |