blob: ef8e27555cbd02b3967bb13ac7967baa6e548303 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/knot-0.8.1.ebuild,v 1.1 2011/12/29 11:06:56 scarabeus Exp $
EAPI=4
inherit autotools
DESCRIPTION="High-performance authoritative-only DNS server"
HOMEPAGE="http://www.knot-dns.cz/"
SRC_URI="http://public.nic.cz/files/knot-dns/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND="
dev-libs/openssl
dev-libs/userspace-rcu
"
# sys-libs/glibc
DEPEND="${RDEPEND}
sys-devel/flex
virtual/yacc
"
src_prepare() {
sed -i \
-e 's:-Werror::g' \
configure.ac || die
eautoreconf
}
src_configure() {
econf \
--sysconfdir="${EPREFIX}/etc/${PN}" \
--libexecdir="${EPREFIX}/usr/libexec/${PN}" \
--enable-recvmmsg \
$(use_enable debug debug verbose)
}
src_install() {
default
newinitd "${FILESDIR}/knot.init" knot-dns
}
|