blob: 9fe878c5d5bc007c7cd1887235d81e41d692ddd1 (
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
54
55
56
57
58
59
60
61
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MY_P=${P/-utils}
DESCRIPTION="Set of utilities to simplify various dns(sec) tasks"
HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/"
SRC_URI="http://www.nlnetlabs.nl/downloads/ldns/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
IUSE="+dane ecdsa examples gost ssl"
REQUIRED_USE="
ecdsa? ( ssl )
dane? ( ssl )
gost? ( ssl )
"
DEPEND=">=net-libs/ldns-${PV}[dane?,ecdsa?,gost?]
examples? ( net-libs/libpcap )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_configure() {
cd "${S}"/drill
econf $(use_with ssl)
if use examples; then
cd "${S}"/examples
econf \
$(use_enable dane) \
$(use_enable ecdsa) \
$(use_enable gost) \
$(use_enable ssl sha2) \
$(use_with ssl)
fi
}
src_compile() {
emake -C drill
if use examples; then
emake -C examples
fi
}
src_install() {
cd "${S}"/drill
emake DESTDIR="${D}" install
dodoc ChangeLog.22-nov-2005 README REGRESSIONS
if use examples; then
cd "${S}"/examples
emake DESTDIR="${D}" install
newdoc README README.examples
fi
}
|