summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-03-29 03:09:25 +0000
committerMike Frysinger <vapier@gentoo.org>2005-03-29 03:09:25 +0000
commit6cdcfef72cfab60d52ccb349f43aa8b41231a880 (patch)
tree0fd3b046a70a8a0fcf46d095f8ffb4e0528af66b /sys-apps
parenthppa fix (diff)
downloadhistorical-6cdcfef72cfab60d52ccb349f43aa8b41231a880.tar.gz
historical-6cdcfef72cfab60d52ccb349f43aa8b41231a880.tar.bz2
historical-6cdcfef72cfab60d52ccb349f43aa8b41231a880.zip
old
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/iproute2/files/digest-iproute2-2.6.11.200503101
-rw-r--r--sys-apps/iproute2/iproute2-2.6.11.20050310.ebuild75
2 files changed, 0 insertions, 76 deletions
diff --git a/sys-apps/iproute2/files/digest-iproute2-2.6.11.20050310 b/sys-apps/iproute2/files/digest-iproute2-2.6.11.20050310
deleted file mode 100644
index a358693ed666..000000000000
--- a/sys-apps/iproute2/files/digest-iproute2-2.6.11.20050310
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d7ad6748ebf980499ae6b10c2679e99a iproute2-2.6.11-050310.tar.gz 341467
diff --git a/sys-apps/iproute2/iproute2-2.6.11.20050310.ebuild b/sys-apps/iproute2/iproute2-2.6.11.20050310.ebuild
deleted file mode 100644
index 29ac5f17a386..000000000000
--- a/sys-apps/iproute2/iproute2-2.6.11.20050310.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-2.6.11.20050310.ebuild,v 1.1 2005/03/12 21:52:15 vapier Exp $
-
-inherit eutils toolchain-funcs
-
-MY_PV=${PV%.*}
-SNAP=${PV##*.}
-SNAP=${SNAP:2}
-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}-${SNAP}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="atm berkdb minimal"
-
-RDEPEND="!minimal? ( berkdb? ( sys-libs/db ) )
- atm? ( net-dialup/linux-atm )"
-DEPEND="${RDEPEND}
- >=virtual/os-headers-2.4.21"
-
-S=${WORKDIR}/${PN}-${MY_PV}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i -e "s:-O2:${CFLAGS}:" Makefile || die "sed Makefile failed"
- #68948 - esfq/wrr patches
- epatch \
- "${FILESDIR}"/2.6.9.20041106-esfq.patch \
- "${FILESDIR}"/2.6.9.20041019-wrr.patch
- # don't build arpd if USE=-berkdb #81660
- use berkdb || sed -i '/^TARGETS=/s: arpd : :' misc/Makefile
- # Multilib fixes
- sed -i 's:/usr/local:/usr:' tc/m_ipt.c
- sed -i "s:/usr/lib/tc:/usr/$(get_libdir)/tc:g" \
- tc/Makefile tc/tc.c tc/q_netem.c || die
-}
-
-src_compile() {
- echo -n 'TC_CONFIG_ATM:=' > Config
- use atm \
- && echo 'y' >> Config \
- || echo 'n' >> Config
-
- local SUBDIRS="lib ip tc misc"
- use minimal && SUBDIRS="lib tc"
- emake \
- CC="$(tc-getCC)" \
- AR="$(tc-getAR)" \
- SUBDIRS="${SUBDIRS}" \
- || die "make"
-}
-
-src_install() {
- if use minimal; then
- into /
- dosbin tc/tc || die "minimal"
- return 0
- fi
-
- make \
- DESTDIR="${D}" \
- SBINDIR=/sbin \
- DOCDIR=/usr/share/doc/${PF} \
- install \
- || die "make install failed"
- if use berkdb ; then
- # bug 47482, arpd doesn't need to be in /sbin
- dodir /usr/sbin
- mv "${D}"/sbin/arpd "${D}"/usr/sbin/
- fi
-}