diff options
Diffstat (limited to 'main/ebtables/APKBUILD')
-rw-r--r-- | main/ebtables/APKBUILD | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/main/ebtables/APKBUILD b/main/ebtables/APKBUILD index c7ae555f26..184081cc7b 100644 --- a/main/ebtables/APKBUILD +++ b/main/ebtables/APKBUILD @@ -1,9 +1,9 @@ # Contributor: Andrew Manison <amanison@anselsystems.com> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=ebtables -pkgver=2.0.9.1 -_realver=v2.0.9-1 -pkgrel=3 +pkgver=2.0.10.2 +_realver=v${pkgver%.[0-9]}-${pkgver##*.} +pkgrel=0 pkgdesc="Ethernet bridge tables - Linux Ethernet filter for the Linux bridge." url="http://ebtables.sourceforge.net/" arch="all" @@ -13,27 +13,23 @@ makedepends= install= subpackages="$pkgname-doc" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$_realver.tar.gz - 0001-link-with-gcc.patch ebtables.initd ebtables.confd" prepare() { cd "$srcdir"/$pkgname-$_realver # patches - for i in ../*.patch; do - msg "Applying $i" - if ! patch --verbose -p1 -i $i; then - error "$i failed" - return 1 - fi + for i in $source; do + case "$i" in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac done - sed -i -e "s,^MANDIR:=.*,MANDIR:=/usr/share/man," \ -e "s,^BINDIR:=.*,BINDIR:=/sbin," \ -e "s,^INITDIR:=.*,INITDIR:=/usr/share/doc/ebtables," \ -e "s,^SYSCONFIGDIR:=.*,SYSCONFIGDIR:=/usr/share/doc/ebtables,"\ -e "s,^LIBDIR:=.*,LIBDIR:=/usr/lib/\$(PROGNAME)," \ - -e "s/^CFLAGS:=/CFLAGS+=/" \ + -e "s/^CFLAGS:=/CFLAGS?=/" \ -e "s,^CC:=,CC?=," Makefile } @@ -43,7 +39,7 @@ build() { # This package uses _init functions to initialise extensions. With # --as-needed this will not work. export LDFLAGS="$LDFLAGS -Wl,--no-as-needed" - make || return 1 + make CFLAGS="$CFLAGS" || return 1 } package() { @@ -53,7 +49,6 @@ package() { install -D -m644 ../ebtables.confd "$pkgdir"/etc/conf.d/ebtables } -md5sums="0e0c20adf2bba6d91dbd0b74a1a38c33 ebtables-v2.0.9-1.tar.gz -91a565a5906dc1fd4103f03c6a88e0e1 0001-link-with-gcc.patch +md5sums="c5ae7fb75810fd936a5445239e853fd8 ebtables-v2.0.10-2.tar.gz 92e13b3bc1d47d7c00636ebb78c905d5 ebtables.initd 285089ba2d846e72e321a12e3da3cc96 ebtables.confd" |