blob: 99ba42dcd46f66972324bffe64a1b425e2e034a7 (
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
|
# Copyright 1999-2008 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.10 2008/11/02 12:41:39 maekke 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=""
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"
}
|