diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-15 10:55:52 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-15 10:55:52 +0100 |
commit | 1f8bbc40bc42f162b7b62e0dca5176ba3d0b39a4 (patch) | |
tree | b19a7be5f8a23cdf854c9694f968a531244204d2 /core/iptables | |
parent | 2e3ca4b49391dc8484dd6064828ee42cbe66ed03 (diff) | |
parent | eebfa6ebe1522831767019e496b0c094b2e15a5c (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/audex/PKGBUILD
community/gimp-ufraw/PKGBUILD
community/ogmrip/PKGBUILD
community/oss/PKGBUILD
community/ruby-gtk2/PKGBUILD
community/soundkonverter/PKGBUILD
core/iptables/PKGBUILD
core/libffi/PKGBUILD
extra/clamav/PKGBUILD
extra/ecasound/PKGBUILD
extra/mariadb/PKGBUILD
extra/mesa/PKGBUILD
Diffstat (limited to 'core/iptables')
-rw-r--r-- | core/iptables/PKGBUILD | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/core/iptables/PKGBUILD b/core/iptables/PKGBUILD index f3345c08e..e852b87fa 100644 --- a/core/iptables/PKGBUILD +++ b/core/iptables/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 174851 2013-01-07 21:57:24Z ronald $ +# $Id: PKGBUILD 180028 2013-03-14 20:45:48Z foutrelis $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Thomas Baechler <thomas@archlinux.org> pkgname=iptables -pkgver=1.4.16.3 +pkgver=1.4.18 pkgrel=1 pkgdesc='Linux kernel packet control tool' arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url='http://www.netfilter.org/projects/iptables/index.html' depends=('glibc' 'bash') -makedepends=('linux-api-headers') +makedepends=('linux-api-headers' 'chrpath') options=('!libtool') -source=("http://www.iptables.org/projects/iptables/files/${pkgname}-${pkgver}.tar.bz2" +source=("http://www.netfilter.org/projects/iptables/files/${pkgname}-${pkgver}.tar.bz2" iptables ip6tables empty.rules @@ -28,7 +28,7 @@ source=("http://www.iptables.org/projects/iptables/files/${pkgname}-${pkgver}.ta ip6tables.service iptables-flush) backup=(etc/conf.d/iptables) -sha1sums=('819949fdf4276a04c5061b82898b515f139b0117' +sha1sums=('34bf627c8755a61caf3635a998d2a5279f664f9e' '5bb6fa526665cdd728c26f0f282f5a51f220cf88' '2db68906b603e5268736f48c8e251f3a49da1d75' '83b3363878e3660ce23b2ad325b53cbd6c796ecf' @@ -52,14 +52,10 @@ build() { patch -Np1 -i ${srcdir}/0503-extension_cppflags.patch - [ "$CARCH" = "mips64el" ] || extra="--enable-libipq" - ./configure --prefix=/usr \ --libexecdir=/usr/lib/iptables --sysconfdir=/etc \ --with-xtlibdir=/usr/lib/iptables \ - --enable-devel $extra \ - --enable-shared - + --enable-devel --enable-shared make } @@ -68,6 +64,10 @@ package() { make DESTDIR="${pkgdir}" install + # Remove RPATH from iptables libraries + # http://www.spinics.net/lists/netfilter-devel/msg24969.html + chrpath --delete "${pkgdir}"/usr/lib/iptables/*.so + cd "${srcdir}" install -D -m755 iptables "${pkgdir}"/etc/rc.d/iptables install -D -m755 ip6tables "${pkgdir}"/etc/rc.d/ip6tables |