blob: 2e1180c984159b647f0e4e20594bcd84d89c3dff (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: George Shapovalov <george@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-misc/host/host-991529.ebuild,v 1.3 2002/07/07 07:56:03 phoenix Exp $
S="${WORKDIR}"
DESCRIPTION="the standalone host tool, supports LOC reporting (RFC1876)"
#this is somewhat old tool, has not been changed since 1999,
#still looks like host from bind does not provide all possible functionality
#at least xtraceroute wants LOC support, which is provided by this tool
SRC_URI="ftp://ftp.ripe.net/tools/dns/${PN}.tar.Z"
HOMEPAGE="http://www.dtek.chalmers.se/~d3august/xt/"
#that's the homepage for xtraceroute, not host, but that's best I can do
#at least it is mentioned there
DEPEND="net-dns/bind-tools"
#either bind or bind-tools will do,
#but since bind-tools is just a partiall install of bind
#there is no point in introducing new use var and doing PROVIDE dance..
RDEPEND="${DEPEND}"
KEYWORDS="x86"
SLOT="0"
src_unpack() {
cd ${S}
unpack "${PN}.tar.Z"
mv Makefile Makefile-orig
sed -e "s:staff:root:" Makefile-orig > Makefile
}
src_compile() {
make || die
}
src_install () {
#ATTN!
#This util has slightly different format of output from "standard" host
#I will rename it to hostx, I hope this does not conflict with anything big
cd ${WORKDIR}
mv host hostx
mv host.1 hostx.1
dobin hostx
doman hostx.1
dodoc RE*
}
|