summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-03-22 19:33:07 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-03-22 19:33:07 +0000
commitda17a667038e44ffd79d646c5688a3ab15fe8ebc (patch)
treed2e4e66d075311a4e522237e19e3468addb72332 /net-misc
parentRemove old. (diff)
downloadgentoo-2-da17a667038e44ffd79d646c5688a3ab15fe8ebc.tar.gz
gentoo-2-da17a667038e44ffd79d646c5688a3ab15fe8ebc.tar.bz2
gentoo-2-da17a667038e44ffd79d646c5688a3ab15fe8ebc.zip
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/htbinit/ChangeLog6
-rw-r--r--net-misc/htbinit/htbinit-0.8.5-r5.ebuild63
2 files changed, 5 insertions, 64 deletions
diff --git a/net-misc/htbinit/ChangeLog b/net-misc/htbinit/ChangeLog
index 501778ac27d3..824361ab55ea 100644
--- a/net-misc/htbinit/ChangeLog
+++ b/net-misc/htbinit/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/htbinit
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/htbinit/ChangeLog,v 1.25 2014/01/14 13:56:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/htbinit/ChangeLog,v 1.26 2014/03/22 19:33:07 kensington Exp $
+
+ 22 Mar 2014; Michael Palimaka <kensington@gentoo.org>
+ -htbinit-0.8.5-r5.ebuild:
+ Remove old.
14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> htbinit-0.8.5-r6.ebuild:
Stable for x86, wrt bug #495874
diff --git a/net-misc/htbinit/htbinit-0.8.5-r5.ebuild b/net-misc/htbinit/htbinit-0.8.5-r5.ebuild
deleted file mode 100644
index 67b81072a813..000000000000
--- a/net-misc/htbinit/htbinit-0.8.5-r5.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/htbinit/htbinit-0.8.5-r5.ebuild,v 1.5 2013/05/04 13:40:21 tomwij Exp $
-
-EAPI=2
-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_ROUTE ; do
- CONFIG_CHECK="${CONFIG_CHECK} ~${i}"
- eval "export WARNING_${i}='module needed at runtime!'"
- done
- use esfq && CONFIG_CHECK="${CONFIG_CHECK} ~NET_SCH_ESFQ"
- WARNING_NET_SCH_ESFQ='module needed at runtime! Available at http://fatooh.org/esfq-2.6/'
- export CONFIG_CHECK
- linux-info_pkg_setup
-}
-
-src_unpack() {
- cp "${DISTDIR}"/htb.init-v${PV} "${S}"/htb.init
-}
-
-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
-}
-
-src_compile() {
- :
-}
-
-src_install() {
- dosbin htb.init
-
- newinitd "${FILESDIR}"/htbinit.rc htbinit
-
- keepdir /etc/htb
-}
-
-pkg_postinst() {
- einfo 'Run "rc-update add htbinit default" to run htb.init at startup.'
- einfo 'Please, read carefully the htb.init documentation.'
- einfo 'new directory to store configuration /etc/htb'
-}