summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2003-10-10 09:39:47 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2003-10-10 09:39:47 +0000
commit73baa5dae25bbbf5727d8d7193161897e72dab68 (patch)
tree0c1482f93ff412652d8aa7e981dd993bcefa2bdc /net-misc/host
parentClosing #30657 (diff)
downloadgentoo-2-73baa5dae25bbbf5727d8d7193161897e72dab68.tar.gz
gentoo-2-73baa5dae25bbbf5727d8d7193161897e72dab68.tar.bz2
gentoo-2-73baa5dae25bbbf5727d8d7193161897e72dab68.zip
address bug 30741; tidy ebuild and ChangeLog
Diffstat (limited to 'net-misc/host')
-rw-r--r--net-misc/host/ChangeLog17
-rw-r--r--net-misc/host/Manifest4
-rw-r--r--net-misc/host/host-991529.ebuild49
3 files changed, 36 insertions, 34 deletions
diff --git a/net-misc/host/ChangeLog b/net-misc/host/ChangeLog
index 2fc18724520f..fb8fcf572da0 100644
--- a/net-misc/host/ChangeLog
+++ b/net-misc/host/ChangeLog
@@ -1,17 +1,16 @@
# ChangeLog for net-misc/host
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
# Maintainer: George Shapovalov <george@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-misc/host/ChangeLog,v 1.11 2003/06/28 22:17:36 taviso Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/host/ChangeLog,v 1.12 2003/10/10 09:39:45 mr_bones_ Exp $
- 21 Jan 2003; Will Woods <wwoods@gentoo.org> : added ~alpha keyword
-
- 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
+ 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
-*host-991529 (10 May 2002)
-
01 Mar 2003; Brandon Low <lostlogic@gentoo.org> host-991529.ebuild:
Switch to emake and make use CC/CXX environment variables
@@ -21,6 +20,12 @@
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.
diff --git a/net-misc/host/Manifest b/net-misc/host/Manifest
index 6d2d099a1b79..3a68b095042c 100644
--- a/net-misc/host/Manifest
+++ b/net-misc/host/Manifest
@@ -1,3 +1,3 @@
-MD5 b958625875bfd88ef3fe04948cf929a1 ChangeLog 1054
-MD5 99a51c851e3eea4758b5850538ea66c6 host-991529.ebuild 1394
+MD5 29db3bc3a67f23d4a1d2a6d046ec838f ChangeLog 1326
+MD5 c8d5212ec0026574bba3d1128f74f53d host-991529.ebuild 1365
MD5 586f7c1bda4293414da89b60cc866e69 files/digest-host-991529 55
diff --git a/net-misc/host/host-991529.ebuild b/net-misc/host/host-991529.ebuild
index e556c980bcc2..35f82e3cdc6c 100644
--- a/net-misc/host/host-991529.ebuild
+++ b/net-misc/host/host-991529.ebuild
@@ -1,48 +1,45 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/host/host-991529.ebuild,v 1.17 2003/10/09 16:20:40 mholzer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/host/host-991529.ebuild,v 1.18 2003/10/10 09:39:45 mr_bones_ Exp $
S="${WORKDIR}"
+# 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.
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"
+# This is the homepage for xtraceroute, not host, but that's best I can do -
+# at least it is mentioned there.
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..
-
+SRC_URI="ftp://ftp.ripe.net/tools/dns/${PN}.tar.Z"
-SLOT="0"
-LICENSE="as-is"
KEYWORDS="x86 ppc sparc alpha mips hppa"
+LICENSE="as-is"
+SLOT="0"
+
+DEPEND=">=sys-apps/sed-4"
src_unpack() {
cd ${S}
unpack ${A}
- sed -e "s:staff:root:" Makefile
+ sed -i -e "s:staff:root:" Makefile || \
+ die "sed Makefile failed"
}
src_compile() {
- emake CC="${CC}" CXX="${CXX}" || die
+ emake CC="${CC}" 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 () {
- #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*
+ dobin hostx || die "dobin failed"
+ doman hostx.1 || die "doman failed"
+ dodoc RE* || die "dodoc failed"
}