blob: 5040573833d95978e84d6a46c85af1ca9a04b4d8 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/udns-0.0.9.ebuild,v 1.13 2009/03/21 22:32:54 nelchael Exp $
inherit multilib
DESCRIPTION="Async-capable DNS stub resolver library"
HOMEPAGE="http://www.corpit.ru/mjt/udns.html"
SRC_URI="http://www.corpit.ru/mjt/udns/${P/-/_}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 ~hppa ppc sparc x86"
IUSE="ipv6 static"
# Yes, this doesn't depend on any other library beside "system" set
DEPEND=""
RDEPEND=""
src_compile() {
# Uses non-standard configure script, econf doesn't work
./configure $(use_enable ipv6) || die "Configure failed"
emake sharedlib staticlib || die "compilation failed"
}
src_install() {
dolib.so libudns.so.0 || die "dolib.so failed"
dosym libudns.so.0 "/usr/$(get_libdir)/libudns.so" || die "dosym failed"
dolib.a libudns.a || die "dolib.a failed"
insinto /usr/include
doins udns.h || die "doins failed"
doman udns.3 || die "doman failed"
dodoc TODO NOTES || die "dodoc failed"
}
|