summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2012-10-06 16:03:24 +0000
committerJeroen Roovers <jer@gentoo.org>2012-10-06 16:03:24 +0000
commitd9ded50570298ad29b1675ba97b274e34180d853 (patch)
tree002e0cdbc37297371863e9fc2701cd41a0ead472 /net-dns/host
parentMask =sys-apps/grep-2.13 (diff)
downloadgentoo-2-d9ded50570298ad29b1675ba97b274e34180d853.tar.gz
gentoo-2-d9ded50570298ad29b1675ba97b274e34180d853.tar.bz2
gentoo-2-d9ded50570298ad29b1675ba97b274e34180d853.zip
Old.
(Portage version: 2.2.0_alpha135/cvs/Linux x86_64)
Diffstat (limited to 'net-dns/host')
-rw-r--r--net-dns/host/ChangeLog6
-rw-r--r--net-dns/host/host-20070128.ebuild54
-rw-r--r--net-dns/host/host-991529.ebuild52
3 files changed, 5 insertions, 107 deletions
diff --git a/net-dns/host/ChangeLog b/net-dns/host/ChangeLog
index 11614659ea9e..2138625e4c91 100644
--- a/net-dns/host/ChangeLog
+++ b/net-dns/host/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-dns/host
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/host/ChangeLog,v 1.22 2012/10/05 18:06:24 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/host/ChangeLog,v 1.23 2012/10/06 16:03:24 jer Exp $
+
+ 06 Oct 2012; Jeroen Roovers <jer@gentoo.org> -host-991529.ebuild,
+ -host-20070128.ebuild:
+ Old.
05 Oct 2012; Brent Baude <ranger@gentoo.org> host-20070128-r1.ebuild:
Marking host-20070128-r1 ppc64 for bug 434036
diff --git a/net-dns/host/host-20070128.ebuild b/net-dns/host/host-20070128.ebuild
deleted file mode 100644
index de23d59b3dc1..000000000000
--- a/net-dns/host/host-20070128.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/host/host-20070128.ebuild,v 1.8 2012/09/05 17:44:21 jer Exp $
-
-inherit eutils toolchain-funcs multilib
-
-DESCRIPTION="A powerful command-line DNS query and test tool implementing many additional protocols"
-HOMEPAGE="http://www.weird.com/~woods/projects/host.html"
-SRC_URI="ftp://ftp.weird.com/pub/Planix/${P}.tar.gz"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ~ppc ~sparc ~x86"
-IUSE="debug"
-
-RESTRICT="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- if ! use debug; then
- sed -i -e "/^CDEBUG/d" \
- -e "/^DEBUGDEFS/d" \
- Makefile || die "src_unpack failed"
- fi
-
- sed -i -e "/id-clash-30/d" \
- -e "/^COPT/d" \
- -e "s:^\(LDFLAGS = \)\(-static \)\(.*\):\1\3:" \
- -e "s:^#\(RES_LIB = \)-lresolv:\1/usr/$(get_libdir)/libresolv.a:" \
- -e "s:staff:root:" \
- Makefile || die "src_unpack failed"
-
- sed -i -e "s:^\(# if defined(__alpha).*\):\1 || defined(__x86_64__):" \
- port.h || die "src_unpack failed"
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" COPTS="${CFLAGS}" || die "emake failed"
-}
-
-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"
-}
diff --git a/net-dns/host/host-991529.ebuild b/net-dns/host/host-991529.ebuild
deleted file mode 100644
index 016264e6cc90..000000000000
--- a/net-dns/host/host-991529.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/host/host-991529.ebuild,v 1.3 2011/02/06 08:09:22 leio 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 the 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=""
-
-RESTRICT="test"
-
-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*
-}