summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-02-20 19:31:32 +0100
committerPacho Ramos <pacho@gentoo.org>2016-02-20 19:31:32 +0100
commit031ceb4bc4a53dca5c20906459ff08b8c48f7c5e (patch)
treeee1b081d58989215ab12530f6cd38e58277a1649 /net-dns
parentRemove masked for removal packages (diff)
downloadgentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.tar.gz
gentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.tar.bz2
gentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.zip
Remove masked for removal packages
Diffstat (limited to 'net-dns')
-rw-r--r--net-dns/host/Manifest1
-rw-r--r--net-dns/host/files/host-20070128-Makefile.patch62
-rw-r--r--net-dns/host/host-20070128-r1.ebuild42
-rw-r--r--net-dns/host/metadata.xml7
4 files changed, 0 insertions, 112 deletions
diff --git a/net-dns/host/Manifest b/net-dns/host/Manifest
deleted file mode 100644
index 44d34daa540a..000000000000
--- a/net-dns/host/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST host-20070128.tar.gz 152347 SHA256 a2a56ab236f9e8549366175a3055e0dc7758dafd46658ed8bea58d87de39bd9f SHA512 80f4d4878af40c93f33cc6c43d19b01415e66b3939b157544b4921b9f0b83ef1baa9ce0e151d951417be92973c4b038df80efae974be4bca2bbce43299db65fc WHIRLPOOL 7072f75f1f39b25375f38387625ced95469f7baeeed069429718a5cb438ee0751a612e3ac0f76e91af9ca653ebe97487476dac2cdaeb1d1fc21a49d67ba62527
diff --git a/net-dns/host/files/host-20070128-Makefile.patch b/net-dns/host/files/host-20070128-Makefile.patch
deleted file mode 100644
index 931c4389db1d..000000000000
--- a/net-dns/host/files/host-20070128-Makefile.patch
+++ /dev/null
@@ -1,62 +0,0 @@
---- Makefile.orig 2003-06-05 03:01:45.000000000 +0200
-+++ Makefile 2010-03-12 18:53:17.000000000 +0100
-@@ -117,16 +117,11 @@
- # Compilation definitions.
- # ----------------------------------------------------------------------
-
--DEBUGDEFS = -DDEBUG
-
- DEFS = $(CONFIGDEFS) $(DEBUGDEFS) $(SYSDEFS) $(INCLUDES)
-
--COPTS = -pipe
-
--COPTIM = -O2
--COPTIM = -O
-
--CDEBUG = -g
-
- # GCC lint-like warnings -- any warnings are likely bugs in the
- # platform headers or in gcc itself....
-@@ -139,7 +134,6 @@
- -Wswitch \
- -Wcomment \
- -Wcast-qual \
-- -Wid-clash-30 \
- -Wpointer-arith \
- -Wshadow
- #endif
-@@ -147,7 +141,6 @@
- #if $(__GNULD__) >= 1
- GNULDWARNFLAGS = -W \
- -Wall \
-- -Wid-clash-30
- #endif
-
- #if $(__GNUC__) >= 2
-@@ -169,7 +162,7 @@
- #endif
-
- CPPFLAGS = $(DEFS)
--CFLAGS = $(COPTS) $(CDEBUG) $(COPTIM) $(GCCWARNFLAGS) $(GCC2WARNFLAGS) $(GCC3WARNFLAGS)
-+CFLAGS += $(GCCWARNFLAGS) $(GCC2WARNFLAGS) $(GCC3WARNFLAGS)
-
- # Select your favorite compiler if make doesn't already know it...
- #if defined(next)
-@@ -250,7 +243,7 @@
- # Unfortunately SunOS-5.9 has only libresolv.so !!!
- #
- #if defined(NEED_LIBRESOLV) && !defined(sunos5.x) && !(BIND-8.4.x)
--LDFLAGS = -static $(GNULDWARNFLAGS)
-+LDFLAGS += $(GNULDWARNFLAGS)
- #else
- #LDFLAGS = $(GNULDWARNFLAGS)
- #endif
-@@ -294,7 +287,7 @@
- # ----------------------------------------------------------------------
-
- BINOWN = root
--BINGRP = staff
-+BINGRP = root
- BINMODE = 755
- #STRIPFLAG = -s
-
diff --git a/net-dns/host/host-20070128-r1.ebuild b/net-dns/host/host-20070128-r1.ebuild
deleted file mode 100644
index 8673e8e03813..000000000000
--- a/net-dns/host/host-20070128-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-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="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86"
-IUSE="debug"
-
-# Bug 91515
-RESTRICT="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-Makefile.patch"
- sed -i -e "s:^\(# if defined(__alpha).*\):\1 || defined(__x86_64__):" \
- port.h || die "sed failed"
-}
-
-src_compile() {
- use debug && export DEBUGDEFS="-DDEBUG"
- emake CC="$(tc-getCC)" RES_LIB=/usr/$(get_libdir)/libresolv.a || 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/metadata.xml b/net-dns/host/metadata.xml
deleted file mode 100644
index 4edfd402d267..000000000000
--- a/net-dns/host/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>george@gentoo.org</email>
- </maintainer>
-</pkgmetadata>