MD5 370e09cf7172bd4ba1f86f70ecb0cac2 ChangeLog 6251
MD5 d0dad7daa0e6d356fc35f778fed36006 metadata.xml 225
MD5 72f8396ece4332ba82d0dc4b1090c7db iproute2-2.4.7.20020116-r1.ebuild 2911
-MD5 5f9ceb25fff4909c2f695a5a0131a763 iproute2-2.6.7.20040608.ebuild 2176
MD5 bb5d2ea2e37f3ec5baf32e094810fdb4 iproute2-2.6.7.20040608-r1.ebuild 2361
MD5 ddd77e6d0215884a89ef5ad579945710 files/digest-iproute2-2.4.7.20020116-r1 169
MD5 9977add19060fbeac6a3582ce8a5e098 files/2.4.7.20020116-htb.patch 9207
MD5 d3a321fa8b70eef6df11d7343a14fd02 files/2.4.7.20020116-hfsc.patch 9507
MD5 2d163d8622e69d17eb7ba73a61ffb51e files/2.4.7.20020116-local-exploit-fix.patch 666
MD5 249c1788ee3cc7a3d55dee871076a5a1 files/2.4.7.20020116-misc-deb-fixes.patch 977
-MD5 deaba7e1316d6929cd4051724db3b885 files/digest-iproute2-2.6.7.20040608 161
MD5 d0071e387038661c76eefb2c8e6b5c46 files/2.6.7.20040608-misc-deb-fixes.patch 632
MD5 24a69d69fb222231a8d0f4358743190f files/2.6.7.20040608-misc-gentoo-fixes.patch 3970
MD5 efc13e1a9a4a7bd080305d540ff5d48d files/digest-iproute2-2.6.7.20040608-r1 75
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.9.10 (GNU/Linux)
-iD8DBQFBVP0bHTu7gpaalycRAn+2AJ96R5l8yzodi50LzbT7uDUSraRl9wCfcubo
-f125OYH4jzlFtJoF1dSw3os=
-=/HNf
+iD8DBQFBVP3HHTu7gpaalycRAl7GAJ933p1zaCFVFFcASCrQoA9g48yVSgCdHTC5
+ojWeSNEcLzG1h1SAXyScSIA=
+=XRMy
-----END PGP SIGNATURE-----
+++ /dev/null
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.6.7.20040608.ebuild,v 1.6 2004/09/15 21:29:45 vapier Exp $
-
-inherit eutils gcc
-
-MY_PV="${PV:0:5}"
-SNAP="${PV:${#PV}-6}"
-DESCRIPTION="kernel routing and traffic control utilities"
-HOMEPAGE="http://developer.osdl.org/dev/iproute2/"
-SRC_URI="http://developer.osdl.org/dev/iproute2/download/${PN}-${MY_PV}-ss${SNAP}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64"
-IUSE="atm"
-
-RDEPEND="virtual/libc
- sys-libs/db
- atm? ( net-dialup/linux-atm )"
-DEPEND="${RDEPEND}
- >=virtual/os-headers-2.4.21
- >=sys-apps/sed-4"
-
-S=${WORKDIR}/${PN}-${MY_PV}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # Enable HFSC scheduler #45274
- if [ ! -z "`grep tc_service_curve ${ROOT}/usr/include/linux/pkt_sched.h`" ] ; then
- epatch ${FILESDIR}/2.4.7.20020116-hfsc.patch
- else
- ewarn "Your linux-headers in /usr/include/linux are too old to"
- ewarn "support the HFSC scheduler. It has been disabled."
- echo
- fi
- # Disable q_delay if need be
- if [ -z "`grep tc_dly_qopt ${ROOT}/usr/include/linux/pkt_sched.h`" ] ; then
- ewarn "Your linux-headers in /usr/include/linux are too old to"
- ewarn "support the DELAY scheduler. It has been disabled."
- echo
- sed -i '/q_delay/s:.*::' tc/Makefile
- fi
-
- # Add a few debian fixes
- epatch ${FILESDIR}/${PV}-misc-deb-fixes.patch
- epatch ${FILESDIR}/${PV}-misc-gentoo-fixes.patch
-
- # Fix cflags and db code
- sed -i \
- -e 's:-I/usr/include/db3::g' \
- -e "s:-O2:${CFLAGS}:g" \
- Makefile || die "sed Makefile failed"
- sed -i 's:-ldb-4\.1:-ldb:' misc/Makefile || die "sed misc/Makefile failed"
- sed -i 's:db41/db_185:db_185:' misc/arpd.c || die "sed misc/arpd.c failed"
-
- # Enable diffserv/atm support
- if use atm ; then
- sed -i 's:=n$:=y:' Config || die "sed Config failed"
- fi
-}
-
-src_compile() {
- emake CC="$(gcc-getCC)" KERNEL_INCLUDE="${ROOT}/usr/include" || die
-}
-
-src_install() {
- make install DESTDIR=${D} DOCDIR=/usr/share/doc/${PF} || die "make install failed"
-
- into /
- dosbin ip/{ifcfg,rtpr} || die "dosbin failed"
-
- doman man/*/*
-}