2010-02-23 23:09:12 +01:00
|
|
|
# Template file for 'iproute2'
|
|
|
|
pkgname=iproute2
|
2012-01-10 10:02:19 +01:00
|
|
|
version=3.2.0
|
2011-02-03 19:11:43 +01:00
|
|
|
patch_args="-Np1"
|
2012-01-05 10:38:36 +01:00
|
|
|
distfiles="${KERNEL_SITE}/utils/net/$pkgname/$pkgname-$version.tar.xz"
|
2010-02-23 23:09:12 +01:00
|
|
|
short_desc="IP Routing Utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-05 10:22:37 +02:00
|
|
|
homepage="http://www.linux-foundation.org/en/Net:Iproute2"
|
|
|
|
license="GPL-2"
|
2012-01-10 10:02:19 +01:00
|
|
|
checksum=59bc1c67a18653f989792a31eda5607a87689b9e6041f2d47ea8b5fe4842cb4d
|
2010-02-23 23:09:12 +01: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"
|
|
|
|
|
2012-01-10 10:02:19 +01:00
|
|
|
Add_dependency build pkg-config
|
2011-06-05 10:22:37 +02:00
|
|
|
Add_dependency build perl ">=0"
|
2010-02-23 23:09:12 +01:00
|
|
|
Add_dependency build db-devel
|
2011-06-27 12:03:47 +02:00
|
|
|
Add_dependency build bison
|
|
|
|
Add_dependency build flex
|
2012-01-10 10:02:19 +01:00
|
|
|
Add_dependency build libnl-devel
|
|
|
|
Add_dependency build iptables-devel
|
2011-06-05 10:22:37 +02:00
|
|
|
|
2011-11-14 21:31:47 +01:00
|
|
|
do_build() {
|
2011-06-05 10:22:37 +02:00
|
|
|
sed -i -e "s|\/usr\/local\/lib|\/usr\/libexec|g" configure
|
2011-11-14 21:31:47 +01:00
|
|
|
./configure ${CONFIGURE_SHARED_ARGS}
|
2011-06-05 10:22:37 +02:00
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
2011-11-14 21:31:47 +01:00
|
|
|
do_install() {
|
2011-06-05 10:22:37 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
install -d ${DESTDIR}/sbin
|
|
|
|
mv ${DESTDIR}/usr/sbin/ip ${DESTDIR}/sbin
|
|
|
|
}
|