summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-11-28 09:05:09 +0100
committerPetr Vaněk <arkamar@gentoo.org>2024-11-28 09:33:10 +0100
commit19295131f7d1a3218a151775e5c095611945ce22 (patch)
tree16620227b5373bd2949a791e703d44373c2447d2 /net-misc/htbinit
parentdev-db/lmdb: drop 0.9.31, 0.9.32 (diff)
downloadgentoo-19295131f7d1a3218a151775e5c095611945ce22.tar.gz
gentoo-19295131f7d1a3218a151775e5c095611945ce22.tar.bz2
gentoo-19295131f7d1a3218a151775e5c095611945ce22.zip
net-misc/htbinit: drop 0.8.5-r7
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'net-misc/htbinit')
-rw-r--r--net-misc/htbinit/htbinit-0.8.5-r7.ebuild72
1 files changed, 0 insertions, 72 deletions
diff --git a/net-misc/htbinit/htbinit-0.8.5-r7.ebuild b/net-misc/htbinit/htbinit-0.8.5-r7.ebuild
deleted file mode 100644
index 01719be53c47..000000000000
--- a/net-misc/htbinit/htbinit-0.8.5-r7.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info
-
-DESCRIPTION="Sets up Hierachical Token Bucket based traffic control (QoS) with iproute2"
-HOMEPAGE="https://sourceforge.net/projects/htbinit/"
-SRC_URI="https://downloads.sourceforge.net/htbinit/htb.init-v${PV}"
-S="${WORKDIR}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="esfq ipv6"
-
-DEPEND="sys-apps/iproute2"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/htb.init-v0.8.5_tos.patch
- "${FILESDIR}"/prio_rule.patch
- "${FILESDIR}"/timecheck_fix.patch
- "${FILESDIR}"/htb.init_find_fix.patch
-)
-
-pkg_setup() {
- local i
- 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() {
- default
-
- sed -i 's|/etc/sysconfig/htb|/etc/htb|g' "${S}"/htb.init || die
-
- use esfq && eapply "${FILESDIR}"/htb_0.8.5_esfq.patch
- use ipv6 && eapply "${FILESDIR}"/htb_0.8.5_ipv6.patch
-
- # bug #474700
- sed -i -e 's:/sbin/ip:/bin/ip:g' "${S}"/htb.init || die
-}
-
-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
-}