2010-02-23 22:09:12 +00:00
|
|
|
# Template file for 'iproute2'
|
|
|
|
pkgname=iproute2
|
2011-07-21 17:09:36 +00:00
|
|
|
version=2.6.39
|
2011-02-03 18:11:43 +00:00
|
|
|
patch_args="-Np1"
|
2011-07-21 17:09:36 +00:00
|
|
|
distfiles="http://devresources.linux-foundation.org/dev/iproute2/download/iproute2-$version.tar.gz"
|
2011-06-05 08:22:37 +00:00
|
|
|
build_style=custom-install
|
2010-02-23 22:09:12 +00:00
|
|
|
short_desc="IP Routing Utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-05 08:22:37 +00:00
|
|
|
homepage="http://www.linux-foundation.org/en/Net:Iproute2"
|
|
|
|
license="GPL-2"
|
2011-07-21 17:09:36 +00:00
|
|
|
checksum=939df14f3eef81f22719e4db59e3b16b89c644d2d85ce7453c069baecf21bdbf
|
2010-02-23 22:09:12 +00:00
|
|
|
long_desc="
|
|
|
|
Iproute2 is a collection of utilities for controlling TCP/IP networking
|
|
|
|
and traffic control in Linux."
|
|
|
|
|
|
|
|
conf_files="
|
|
|
|
/etc/iproute2/ematch_map
|
|
|
|
/etc/iproute2/rt_dsfield
|
|
|
|
/etc/iproute2/rt_protos
|
|
|
|
/etc/iproute2/rt_realms
|
|
|
|
/etc/iproute2/rt_scopes
|
|
|
|
/etc/iproute2/rt_tables"
|
|
|
|
|
|
|
|
Add_dependency run glibc
|
2010-12-11 01:28:30 +00:00
|
|
|
Add_dependency run libdb
|
2010-04-24 15:36:50 +00:00
|
|
|
Add_dependency run iptables
|
2011-06-05 08:22:37 +00:00
|
|
|
|
|
|
|
Add_dependency build perl ">=0"
|
2010-02-23 22:09:12 +00:00
|
|
|
Add_dependency build db-devel
|
2010-04-24 15:36:50 +00:00
|
|
|
Add_dependency build iptables-devel
|
2011-06-27 10:03:47 +00:00
|
|
|
Add_dependency build bison
|
|
|
|
Add_dependency build flex
|
2011-06-05 08:22:37 +00:00
|
|
|
|
|
|
|
do_build()
|
|
|
|
{
|
|
|
|
sed -i -e "s|\/usr\/local\/lib|\/usr\/libexec|g" configure
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
|
|
|
|
# Remove tex and sgml files.
|
|
|
|
rm -f ${DESTDIR}/usr/share/doc/iproute2/*.{tex,sgml}
|
|
|
|
# Remove devel manpages.
|
|
|
|
rm -rf ${DESTDIR}/usr/share/man/man3
|
|
|
|
|
|
|
|
# OpenRC expects this in /sbin.
|
|
|
|
install -d ${DESTDIR}/sbin
|
|
|
|
mv ${DESTDIR}/usr/sbin/ip ${DESTDIR}/sbin
|
|
|
|
}
|