You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/htbinit/htbinit-0.8.5-r6.ebuild

62 lines
1.6 KiB

# Copyright 1999-2014 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-r6.ebuild,v 1.4 2014/10/11 12:19:04 pacho Exp $
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
}