summaryrefslogtreecommitdiff
path: root/net-misc/pump
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/pump')
-rw-r--r--net-misc/pump/Manifest4
-rw-r--r--net-misc/pump/metadata.xml8
-rw-r--r--net-misc/pump/pump-0.8.24-r4.ebuild56
3 files changed, 0 insertions, 68 deletions
diff --git a/net-misc/pump/Manifest b/net-misc/pump/Manifest
deleted file mode 100644
index 795b6bf5ccb6..000000000000
--- a/net-misc/pump/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST pump_0.8.24-7.diff.gz 29280 BLAKE2B 194df4e0dd11db6c34e50ae101ae32b21cef19db8ff37785b3d2fc9d025f122a2563e109acfbe4e95878896b293ca2d3426a41df1d7c2ad16cd48396691d3cd7 SHA512 8d70bb31f9d56d79b4cb74def6d3df2a3115b62672190d8c38b7fa628ad35481ad637dd4854e8331a4c5a649fa573c58c9b867b014bbaad7fe6c8c870a02eae2
-DIST pump_0.8.24.orig.tar.gz 79790 BLAKE2B f66e61ac240acc54027558059f628d1443a42a68873388366a07f58cc65bd6c03ec3f119c2679ccd9d5ab9d97234490728d8d474db478e33ea999e9b94a42987 SHA512 b6956f0ab2a5fbcda2320efd454d21aee651816a13a55622e21dc3a29919aef7db7c9a8d71c3b37b1969f29cff37c67d313f763a17404652fb962bc54eabcb34
-EBUILD pump-0.8.24-r4.ebuild 1401 BLAKE2B 174b23b30dd1d0b84490a05b978faf91b336038cb1de1cacd8e76ba4141750c8680af4022d45f539c33d71e16d133b72706418cee937fc78d3bbf3d30820d8f1 SHA512 5b96107c27a1c63653c0e541dc9f099c02c82c12c182391bd345f0d54ca188ce4ddf947e04b9e1271c9ac7eab06b98a4a8cee1a371b532175dd285732a7704d0
-MISC metadata.xml 238 BLAKE2B 6684835e62c92f4ead14f58c403c933431aec23a181f0cd367d8c85293ee23c76b69aa65d2ba6f364878ca0e61691566e563676cb028ac8d79a1b8fd286d2ffc SHA512 852836ec4f7a56d54fcdb6f5cd189be8d15770fa64bb9ecde5b22a8e12dfc2d6f38a905a85a1f493d8100e1889283c0bb32d25521e13de98b7c00d2e45450261
diff --git a/net-misc/pump/metadata.xml b/net-misc/pump/metadata.xml
deleted file mode 100644
index ef1a6e7a5e0e..000000000000
--- a/net-misc/pump/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>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- A DHCP/BOOTP client
- </longdescription>
-</pkgmetadata>
diff --git a/net-misc/pump/pump-0.8.24-r4.ebuild b/net-misc/pump/pump-0.8.24-r4.ebuild
deleted file mode 100644
index e02eb9581e3b..000000000000
--- a/net-misc/pump/pump-0.8.24-r4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-PATCHLEVEL="7"
-
-DESCRIPTION="This is the DHCP/BOOTP client written by RedHat"
-HOMEPAGE="http://ftp.debian.org/debian/pool/main/p/pump/"
-SRC_URI="mirror://debian/pool/main/p/${PN}/${PN}_${PV}.orig.tar.gz
- mirror://debian/pool/main/p/${PN}/${PN}_${PV}-${PATCHLEVEL}.diff.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ia64 ppc sparc x86"
-IUSE=""
-
-DEPEND=">=dev-libs/popt-1.5"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- # Fix Debian patch to fit epatch logic
- sed -i \
- -e 's:/debian::g' \
- -e '/^---/s:pump-0.8.24.orig/::' \
- -e '/^+++/s:pump-0.8.24/::' \
- "${WORKDIR}/${PN}_${PV}-${PATCHLEVEL}.diff" || die "sed on ${PN}_${PV}-${PATCHLEVEL}.diff failed"
-
- # Apply Debians pump patchset - they fix things good :)
- # Debian patchset 7 include gentoo patchset too
- epatch "${WORKDIR}/${PN}_${PV}-${PATCHLEVEL}.diff"
- # Add LC_ALL workaround to make sure that patches are applied in right order(bug 471666)
- LC_ALL=C EPATCH_FORCE="yes" EPATCH_SOURCE="patches" EPATCH_SUFFIX="patch" epatch
-
- # respect AR, wrt bug #458482
- tc-export AR
-
- epatch_user
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" DEB_CFLAGS="-fPIC ${CFLAGS}" pump
-}
-
-src_install() {
- exeinto /sbin
- doexe pump
-
- doman pump.8
- dodoc changelog CREDITS
-
- dolib.a libpump.a
- doheader pump.h
-}