diff options
author | 2005-07-15 11:52:51 +0000 | |
---|---|---|
committer | 2005-07-15 11:52:51 +0000 | |
commit | 4bbbb52101599ede785e0c9a89d848d7886fc7ba (patch) | |
tree | a5363a4096dcf4a05478bde39bdbff55c15d0ca4 /net-misc | |
parent | Dep/Style fixes (diff) | |
download | historical-4bbbb52101599ede785e0c9a89d848d7886fc7ba.tar.gz historical-4bbbb52101599ede785e0c9a89d848d7886fc7ba.tar.bz2 historical-4bbbb52101599ede785e0c9a89d848d7886fc7ba.zip |
removing this package as it was moved under net-dns
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/host/ChangeLog | 46 | ||||
-rw-r--r-- | net-misc/host/Manifest | 4 | ||||
-rw-r--r-- | net-misc/host/files/digest-host-991529 | 1 | ||||
-rw-r--r-- | net-misc/host/host-991529.ebuild | 50 | ||||
-rw-r--r-- | net-misc/host/metadata.xml | 8 |
5 files changed, 0 insertions, 109 deletions
diff --git a/net-misc/host/ChangeLog b/net-misc/host/ChangeLog deleted file mode 100644 index daf827fb1197..000000000000 --- a/net-misc/host/ChangeLog +++ /dev/null @@ -1,46 +0,0 @@ -# ChangeLog for net-misc/host -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/host/ChangeLog,v 1.18 2004/10/02 15:35:10 swegener Exp $ - - 02 Oct 2004; Sven Wegener <swegener@gentoo.org> +metadata.xml: - Moved maintainer from ChangeLog to metadata.xml. - - 02 Mar 2004; Tom Gall <tgall@gentoo.org> host-991529.ebuild: - stable on ppc64 - - 13 Jan 2004; Chuck Short <zul@gentoo.org> host-991529.ebuild: - Marked stable on amd64, closes #37063. - - 24 Dec 2003; Chuck Short <zul@gentoo.org> host-991529.ebuild: - Added ~amd64 keyword, closes #35854. - - 10 Oct 2003; Michael Sterrett <mr_bones_@gentoo.org> host-991529.ebuild: - remove DEPEND on bind-tools; The whole point of this ebuild is that it - supplies an independent host command; use sed >= 4; more error messages; - tidy Prompted by bug 30741 - - 28 Jun 2003; Tavis Ormandy <taviso@gentoo.org> host-991529.ebuild: - stable on alpha - - 01 Mar 2003; Brandon Low <lostlogic@gentoo.org> host-991529.ebuild: - Switch to emake and make use CC/CXX environment variables - - 27 Feb 2003; Guy Martin <gmsoft@gentoo.org> host-991529.ebuild : - Added hppa to keywords. - - 24 Feb 2003; Nicholas Wourms <dragon@gentoo.org> host-991529.ebuild : - Added stable mips keyword to the ebuild. - - 21 Jan 2003; Will Woods <wwoods@gentoo.org> host-991529.ebuild : - added ~alpha keyword - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> host-991529.ebuild : - changed sparc ~sparc keywords - - 06 Jul 2002; phoen][x <phoenix@gentoo.org> host-991529.ebuild : - Added KEYWORDS, LICENSE, SLOT. - - 11 May 2002; G Shapovalov <george@gentoo.org> host-991529.ebuild : - initial release - -*host-991529 (11 May 2002) diff --git a/net-misc/host/Manifest b/net-misc/host/Manifest deleted file mode 100644 index eb49c3e2cb8d..000000000000 --- a/net-misc/host/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -MD5 2fb798132385ff7050bd1eae6a8bf7b4 ChangeLog 1701 -MD5 203688ebfd01bac03d2620dece2d390a host-991529.ebuild 1356 -MD5 020e94cd5c2e398f06c7d2b062b25190 metadata.xml 240 -MD5 586f7c1bda4293414da89b60cc866e69 files/digest-host-991529 55 diff --git a/net-misc/host/files/digest-host-991529 b/net-misc/host/files/digest-host-991529 deleted file mode 100644 index 975255880ddc..000000000000 --- a/net-misc/host/files/digest-host-991529 +++ /dev/null @@ -1 +0,0 @@ -MD5 f3c5589cbe168a49581e856fe26b4808 host.tar.Z 184455 diff --git a/net-misc/host/host-991529.ebuild b/net-misc/host/host-991529.ebuild deleted file mode 100644 index 46061da8c2b6..000000000000 --- a/net-misc/host/host-991529.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/host/host-991529.ebuild,v 1.24 2004/10/26 14:23:13 vapier Exp $ - -# 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. - -# This is the homepage for xtraceroute, not host, but that's best I can do - -# at least it is mentioned there. - -inherit toolchain-funcs - -DESCRIPTION="the standalone host tool, supports LOC reporting (RFC1876)" -HOMEPAGE="http://www.dtek.chalmers.se/~d3august/xt/" -SRC_URI="ftp://ftp.ripe.net/tools/dns/${PN}.tar.Z" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="alpha amd64 hppa mips ppc ppc64 sparc x86" -IUSE="" - -DEPEND=">=sys-apps/sed-4" - -S="${WORKDIR}" - -src_unpack() { - cd ${S} - unpack ${A} - - sed -i -e "s:staff:root:" Makefile \ - || die "sed Makefile failed" -} - -src_compile() { - emake CC="$(tc-getCC)" COPTS="${CFLAGS}" \ - || die "emake failed" - # ATTN! - # This util has slightly different format of output from "standard" host - # rename it to hostx, hopefully this does not conflict with anything. - mv host hostx - mv host.1 hostx.1 -} - -src_install () { - cd ${WORKDIR} - dobin hostx || die "dobin failed" - doman hostx.1 - dodoc RE* -} diff --git a/net-misc/host/metadata.xml b/net-misc/host/metadata.xml deleted file mode 100644 index 1b8cc1e5ef28..000000000000 --- a/net-misc/host/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>no-herd</herd> - <maintainer> - <email>george@gentoo.org</email> - </maintainer> -</pkgmetadata> |