blob: 1289c144e086c6bf2869aa7ffe07cab80510d563 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.2.ebuild,v 1.1 2009/11/21 01:53:32 matsuu Exp $
EAPI="2"
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"
IUSE="doc ssl vim-syntax"
RDEPEND="ssl? ( >=dev-libs/openssl-0.9.7 )"
DEPEND="${DEPEND}
doc? ( app-doc/doxygen )"
src_configure() {
econf \
$(use_enable ssl sha2) \
$(use_with ssl) \
--disable-rpath || die "econf failed"
}
src_compile() {
emake || die "emake failed"
if use doc ; then
emake doxygen || die "emake doxygen failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc Changelog README* || die "dodoc failed"
if use doc ; then
dohtml doc/html/* || die "dohtml failed"
fi
if use vim-syntax ; then
insinto /usr/share/vim/vimfiles/ftdetect
doins libdns.vim || "doins libdns.vim failed"
fi
}
|