diff options
author | George Shapovalov <george@gentoo.org> | 2002-05-11 18:40:29 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-05-11 18:40:29 +0000 |
commit | 159253af7247bda90a44c293121b05d9f5d80c76 (patch) | |
tree | 2ae41be8fe111db43912b3fb714fd20f59a3c8a3 /net-misc/host | |
parent | New version, now maintained by Debian. (diff) | |
download | gentoo-2-159253af7247bda90a44c293121b05d9f5d80c76.tar.gz gentoo-2-159253af7247bda90a44c293121b05d9f5d80c76.tar.bz2 gentoo-2-159253af7247bda90a44c293121b05d9f5d80c76.zip |
new package
Diffstat (limited to 'net-misc/host')
-rw-r--r-- | net-misc/host/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/host/files/digest-host-991529 | 1 | ||||
-rw-r--r-- | net-misc/host/host-991529.ebuild | 47 |
3 files changed, 57 insertions, 0 deletions
diff --git a/net-misc/host/ChangeLog b/net-misc/host/ChangeLog new file mode 100644 index 000000000000..2ef4018f171d --- /dev/null +++ b/net-misc/host/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-text/hd2u +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-misc/host/ChangeLog,v 1.1 2002/05/11 18:40:29 george Exp $ + +*host-991529, (10 May 2002) + + 11 May 2002; G Shapovalov <george@gentoo.org> ChangeLog : + + initial release diff --git a/net-misc/host/files/digest-host-991529 b/net-misc/host/files/digest-host-991529 new file mode 100644 index 000000000000..975255880ddc --- /dev/null +++ b/net-misc/host/files/digest-host-991529 @@ -0,0 +1 @@ +MD5 f3c5589cbe168a49581e856fe26b4808 host.tar.Z 184455 diff --git a/net-misc/host/host-991529.ebuild b/net-misc/host/host-991529.ebuild new file mode 100644 index 000000000000..dada642a5022 --- /dev/null +++ b/net-misc/host/host-991529.ebuild @@ -0,0 +1,47 @@ +# 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> +# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.4 2002/03/12 16:05:09 tod 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="x11-base/xfree + x11-libs/gtk+ + net-misc/traceroute + x11-libs/gtkglarea + media-libs/gdk-pixbuf + net-misc/host" + +RDEPEND="${DEPEND}" + +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 + #I will make it to install into /usr/local (both tool and man page) + #to let it coexist with host from bind + export DESTTREE=/usr/local/ + dobin host + doman host.1 +} |