blob: 2ff1d5d8bd15b1ffb81ecaf498ffa67fa25169e9 (
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
|
# Copyright 2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
RESTRICT="mirror"
inherit toolchain-funcs multilib
DESCRIPTION="A powerful command-line DNS query and test tool"
HOMEPAGE="http://www.weird.com/~woods/projects/host.html"
SRC_URI="ftp://ftp.weird.com/pub/Planix/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86"
IUSE="debug"
# Bug 91515
RESTRICT="${RESTRICT} test"
RDEPEND=""
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_prepare() {
eapply -p0 "${FILESDIR}/${P}-Makefile.patch"
sed -i -e "s:^\(# if defined(__alpha).*\):\1 || defined(__x86_64__):" \
port.h || die "sed failed"
eapply_user
}
src_compile() {
use debug && export DEBUGDEFS="-DDEBUG"
emake CC="$(tc-getCC)" RES_LIB="/usr/$(get_libdir)/libresolv.a"
}
src_install () {
# This tool has slightly different format of output from "standard" host.
# Renaming it to host-woods, hopefully this does not conflict with anything.
newbin host host-woods || die "newbin failed"
newman host.1 host-woods.1 || die "newman failed"
dodoc RELEASE_NOTES ToDo || die "dodoc failed"
}
|