net-misc/htbinit: remove old version
authorAustin English <wizardedit@gentoo.org>
Tue, 3 May 2016 23:34:58 +0000 (18:34 -0500)
committerAustin English <wizardedit@gentoo.org>
Wed, 4 May 2016 00:08:37 +0000 (19:08 -0500)
Package-Manager: portage-2.2.26

net-misc/htbinit/htbinit-0.8.5-r6.ebuild [deleted file]

diff --git a/net-misc/htbinit/htbinit-0.8.5-r6.ebuild b/net-misc/htbinit/htbinit-0.8.5-r6.ebuild
deleted file mode 100644 (file)
index 134522d..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils linux-info
-
-DESCRIPTION="Sets up Hierachical Token Bucket based traffic control (QoS) with iproute2"
-HOMEPAGE="http://www.sourceforge.net/projects/htbinit"
-SRC_URI="mirror://sourceforge/htbinit/htb.init-v${PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="ipv6 esfq"
-
-DEPEND="sys-apps/iproute2"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}
-
-pkg_setup() {
-       for i in NET_SCH_HTB NET_SCH_SFQ NET_CLS_FW NET_CLS_U32 NET_CLS_ROUTE4 ; do
-               CONFIG_CHECK="${CONFIG_CHECK} ~${i}"
-       done
-       use esfq && CONFIG_CHECK="${CONFIG_CHECK} ~NET_SCH_ESFQ"
-       linux-info_pkg_setup
-}
-
-src_unpack() {
-       cp "${DISTDIR}"/htb.init-v${PV} "${S}"/htb.init || die
-}
-
-src_prepare() {
-       sed -i 's|/etc/sysconfig/htb|/etc/htb|g' "${S}"/htb.init
-       epatch "${FILESDIR}"/htb.init-v0.8.5_tos.patch
-       use ipv6 && epatch "${FILESDIR}"/htb_0.8.5_ipv6.diff
-       use esfq && epatch "${FILESDIR}"/htb_0.8.5_esfq.diff
-       epatch "${FILESDIR}"/prio_rule.patch
-       epatch "${FILESDIR}"/timecheck_fix.patch
-       epatch "${FILESDIR}"/htb.init_find_fix.patch
-       sed -i -e 's:/sbin/ip:/bin/ip:g' "${S}"/htb.init # bug #474700
-}
-
-src_compile() {
-       :
-}
-
-src_install() {
-       dosbin htb.init
-       newinitd "${FILESDIR}"/htbinit.rc htbinit
-       keepdir /etc/htb
-}
-
-pkg_postinst() {
-       if [[ -z ${REPLACING_VERSIONS} ]] ; then
-               elog 'Run "rc-update add htbinit default" to run htb.init at startup.'
-               elog 'Please, read carefully the htb.init documentation.'
-               elog 'New directory to store configuration is /etc/htb.'
-       fi
-}