CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Fixed major update for Arch-Maintainer's email (all ports)
[crossrootfs.git] / iproute2 / Pkgfile
1 # Description: A collection of utilites for controlling TCP/IP networking and traffic in Linux
2 # URL: http://linux-net.osdl.org/index.php/Iproute2
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: db
6
7 name=iproute2
8 version=2.6.33
9 release=1
10 source=(http://developer.osdl.org/dev/iproute2/download/$name-$version.tar.bz2 \
11 net.iproute2)
12
13 build() {
14 cd $name-$version
15
16 sed -i "s|local/lib/iptables|lib/xtables|" include/iptables.h
17 sed -i "s|gcc |$CC $CFLAGS|g" configure
18
19 make DBM_INCLUDE="$CLFS/usr/include" CC="$CC $CFLAGS"
20 make MANDIR=/usr/man DESTDIR=$PKG install
21
22 rm -r $PKG/{share,usr/lib}
23 install -D -m 0755 $SRC/net.iproute2 $PKG/etc/rc.d/net
24 }