blob: 3109e45e936e84d09e441d52aaa462158ae53796 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.12-r1.ebuild,v 1.2 2012/07/16 01:13:05 floppym Exp $
EAPI="4"
PYTHON_DEPEND="python? 2:2.5"
inherit autotools eutils python
DESCRIPTION="ldns is a library with the aim to simplify DNS programing in C"
HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/"
SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos"
IUSE="doc examples gost python ssl static-libs vim-syntax"
RESTRICT="test" # 1.6.9 has no test directory
RDEPEND="ssl? ( >=dev-libs/openssl-0.9.7 )
gost? ( >=dev-libs/openssl-1 )"
DEPEND="${RDEPEND}
python? ( dev-lang/swig )
doc? ( app-doc/doxygen )"
pkg_setup() {
use python && python_set_active_version 2
use python && python_pkg_setup
}
src_prepare() {
epatch "${FILESDIR}/1.6.12-cflags.patch"
eautoreconf
}
src_configure() {
econf \
$(use_with examples) \
$(use_enable gost) \
$(use_enable ssl sha2) \
$(use_enable static-libs static) \
$(use_with ssl) \
$(use_with python pyldns) \
$(use_with python pyldnsx) \
--with-drill \
--disable-rpath
}
src_compile() {
emake
if use doc ; then
emake doxygen
fi
}
src_install() {
emake DESTDIR="${D}" install
dodoc Changelog README*
if use python ; then
find "${ED}$(python_get_sitedir)" "(" -name "*.a" -o -name "*.la" ")" -type f -delete || die
fi
if ! use static-libs ; then
find "${ED}" -name "*.la" -type f -delete || die
fi
if use doc ; then
dohtml doc/html/*
fi
if use vim-syntax ; then
insinto /usr/share/vim/vimfiles/ftdetect
doins libdns.vim
fi
}
|