diff options
author | root <root@rshg054.dnsready.net> | 2012-02-01 23:14:54 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-01 23:14:54 +0000 |
commit | ac5ada660240f37d7347e42123071990f616e418 (patch) | |
tree | 31ac2c7efc492f2c67069b60f1a6ea7ff102ae94 /core/iptables | |
parent | c34f78dd37c2a2015d43de5d89748a2f8147ba1b (diff) |
Wed Feb 1 23:14:54 UTC 2012
Diffstat (limited to 'core/iptables')
-rw-r--r-- | core/iptables/PKGBUILD | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/core/iptables/PKGBUILD b/core/iptables/PKGBUILD index 8da7cbee6..b065622ff 100644 --- a/core/iptables/PKGBUILD +++ b/core/iptables/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 142199 2011-11-06 05:47:47Z bisson $ +# $Id: PKGBUILD 148436 2012-01-31 20:35:00Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Thomas Baechler <thomas@archlinux.org> pkgname=iptables -pkgver=1.4.12.1 -pkgrel=2 +pkgver=1.4.12.2 +pkgrel=1 pkgdesc='Linux kernel packet control tool' arch=('i686' 'x86_64') license=('GPL2') @@ -24,7 +24,7 @@ source=("http://www.iptables.org/projects/iptables/files/${pkgname}-${pkgver}.ta empty-raw.rules empty-security.rules) backup=(etc/conf.d/iptables) -sha1sums=('86022c3b5129ad7105f5087ec1349e99cc5a9728' +sha1sums=('4dc8cdf1b711b23ed88eaaaa0e0e157d2bf2d81c' '5bb6fa526665cdd728c26f0f282f5a51f220cf88' '2db68906b603e5268736f48c8e251f3a49da1d75' '83b3363878e3660ce23b2ad325b53cbd6c796ecf' @@ -49,13 +49,19 @@ build() { ./configure --prefix=/usr \ --libexecdir=/usr/lib/iptables --sysconfdir=/etc \ --with-xtlibdir=/usr/lib/iptables \ - --enable-devel --enable-libipq + --enable-devel --enable-libipq \ + --enable-shared --enable-static +# build fails when not enabling static, see if we can remove it on next build make } package() { cd "${srcdir}/${pkgname}-${pkgver}" + + unset CFLAGS + unset LDFLAGS + make DESTDIR="${pkgdir}" install cd "${srcdir}" |