2008-09-19 12:09:41 +02:00
|
|
|
# Description: A collection of utilites for controlling TCP/IP networking and traffic in Linux
|
2009-12-30 18:04:52 +01:00
|
|
|
# URL: http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2
|
2008-09-19 12:09:41 +02:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
# Depends on: db
|
2006-12-19 14:45:51 -06:00
|
|
|
|
|
|
|
name=iproute2
|
2010-05-27 12:03:32 +02:00
|
|
|
version=2.6.34
|
2010-06-03 11:39:55 +02:00
|
|
|
release=2
|
2009-12-30 18:04:52 +01:00
|
|
|
source=(http://devresources.linuxfoundation.org/dev/iproute2/download/$name-$version.tar.bz2 \
|
2010-06-03 11:39:55 +02:00
|
|
|
net.iproute2 iproute2-tc_install.patch)
|
2006-12-19 14:45:51 -06:00
|
|
|
|
|
|
|
build() {
|
2008-09-19 12:09:41 +02:00
|
|
|
cd $name-$version
|
2010-06-03 11:39:55 +02:00
|
|
|
patch -p1 -i $SRC/iproute2-tc_install.patch
|
2009-12-30 18:04:52 +01:00
|
|
|
sed -i "s|-O2|$CFLAGS -DIPT_LIB_DIR=\\\\\"/usr/lib/xtables\\\\\"|" Makefile
|
2008-09-19 12:09:41 +02:00
|
|
|
make
|
2009-01-21 10:12:02 +01:00
|
|
|
make MANDIR=/usr/man DESTDIR=$PKG install
|
2010-05-27 12:03:32 +02:00
|
|
|
rm -r $PKG/share
|
2008-09-19 12:09:41 +02:00
|
|
|
install -D -m 0755 $SRC/net.iproute2 $PKG/etc/rc.d/net
|
2006-12-19 14:45:51 -06:00
|
|
|
}
|