core/iproute2/Pkgfile

21 lines
742 B
Plaintext
Raw Normal View History

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
name=iproute2
2010-05-27 12:03:32 +02:00
version=2.6.34
release=2
2009-12-30 18:04:52 +01:00
source=(http://devresources.linuxfoundation.org/dev/iproute2/download/$name-$version.tar.bz2 \
net.iproute2 iproute2-tc_install.patch)
build() {
2008-09-19 12:09:41 +02:00
cd $name-$version
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
}