Commit | Line | Data |
---|---|---|
6dca1d21 JB |
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 | |
5725466d | 4 | # Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org |
6dca1d21 JB |
5 | # Depends on: db |
6 | ||
7 | name=iproute2 | |
8 | version=2.6.28 | |
9 | release=2 | |
10 | source=(http://developer.osdl.org/dev/iproute2/download/$name-$version.tar.bz2 \ | |
11 | net.iproute2) | |
12 | ||
13 | build() { | |
14 | cd $name-$version | |
15 | sed -i "s|local/lib/iptables|lib/xtables|" include/iptables.h | |
16 | make DBM_INCLUDE="$CLFS/usr/include" CC="$CC" | |
17 | make MANDIR=/usr/man DESTDIR=$PKG install | |
18 | rm -r $PKG/{share,usr/lib} | |
19 | install -D -m 0755 $SRC/net.iproute2 $PKG/etc/rc.d/net | |
20 | } |