blob: 7c95309ff4178d88a561c76e3e10ff0943a69c10 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-libs/adns/adns-1.0.ebuild,v 1.2 2002/07/11 06:30:47 drobbins Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Advanced, easy to use, asynchronous-capable DNS client library and utilities"
SRC_URI="ftp://ftp.chiark.greenend.org.uk/users/ian/adns/${A}"
HOMEPAGE="http://www.chiark.greenend.org.uk/~ian/adns/"
src_compile() {
./configure --prefix=/usr --host=${CHOST} || die
make || die
}
src_install () {
dodir /usr/{include,bin,lib}
make prefix=${D}/usr install || die
dodoc README GPL-vs-LGPL COPYING TODO
docinto html
dodoc *.html
}
|