diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-04 23:02:35 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-04 23:02:35 (GMT) |
commit | b08ed1871d6bdc405d611592632f8ae11aed5d72 (patch) | |
tree | 7ade65b4fc6f25a953672613d0025659e5c92ca7 /abs/core-testing/iproute2/PKGBUILD | |
parent | 62af3ffd3cd796116b55834811a5a1a60230b7e0 (diff) | |
download | linhes_pkgbuild-b08ed1871d6bdc405d611592632f8ae11aed5d72.zip linhes_pkgbuild-b08ed1871d6bdc405d611592632f8ae11aed5d72.tar.gz linhes_pkgbuild-b08ed1871d6bdc405d611592632f8ae11aed5d72.tar.bz2 |
iproute2:Bumped/Updated for LinHES 7.
Diffstat (limited to 'abs/core-testing/iproute2/PKGBUILD')
-rw-r--r-- | abs/core-testing/iproute2/PKGBUILD | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/abs/core-testing/iproute2/PKGBUILD b/abs/core-testing/iproute2/PKGBUILD index ed280e5..38b5a4c 100644 --- a/abs/core-testing/iproute2/PKGBUILD +++ b/abs/core-testing/iproute2/PKGBUILD @@ -1,37 +1,44 @@ -# $Id: PKGBUILD 24415 2009-01-16 12:43:06Z ronald $ +# $Id: PKGBUILD 82589 2010-06-14 06:49:40Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Judd Vinet <jvinet@zeroflux.org> pkgname=iproute2 -pkgver=2.6.28 -pkgrel=1 +pkgver=2.6.34 +pkgrel=2 pkgdesc="IP Routing Utilities" arch=('i686' 'x86_64') license=('GPL2') url="http://www.linux-foundation.org/en/Net:Iproute2" depends=('linux-atm' 'perl') - provides=('iproute') conflicts=('iproute') replaces=('iproute') - +options=('!makeflags') backup=('etc/iproute2/ematch_map' 'etc/iproute2/rt_dsfield' 'etc/iproute2/rt_protos' \ 'etc/iproute2/rt_realms' 'etc/iproute2/rt_scopes' 'etc/iproute2/rt_tables') - -source=(http://devresources.linux-foundation.org/dev/iproute2/download/iproute2-${pkgver}.tar.bz2) -md5sums=('595f9b17320f69e8d30d2fa80f1bca14') +source=(http://devresources.linux-foundation.org/dev/iproute2/download/iproute2-${pkgver}.tar.bz2 + 'iproute2-fhs.patch' 'tc.patch') +sha1sums=('b57f98e284c68a464b9c3e132d29760de6331688' + 'ae7c4529555e1dce389fcedcbb7e0df5c726741a' + 'de7ffa44922741c1239e1715e1d81d8f4e7b04e4') build() { cd $srcdir/iproute2-${pkgver} - sed -i 's|/usr/local/lib/iptables|/usr/lib/iptables|' include/iptables.h || return 1 - sed -i 's|=/share|=/usr/share|' Makefile || return 1 - sed -i 's|=/sbin|=/usr/sbin|' Makefile || return 1 - + # set correct fhs structure + patch -Np1 -i ${srcdir}/iproute2-fhs.patch || return 1 + patch -Np0 -i ${srcdir}/tc.patch || return 1 ./configure || return 1 make || return 1 - make DESTDIR=$pkgdir install || return 1 +} -# chmod 755 $pkgdir/usr/sbin/ifcfg || return 1 +package() { + cd $srcdir/iproute2-${pkgver} + make DESTDIR=$pkgdir install || return 1 + + # libnetlink isn't installed, install it FS#19385 + install -Dm644 include/libnetlink.h ${pkgdir}/usr/include/libnetlink.h || return 1 + install -Dm644 lib/libnetlink.a ${pkgdir}/usr/lib/libnetlink.a || return 1 } + |