diff options
Diffstat (limited to 'main/iptraf/APKBUILD')
-rw-r--r-- | main/iptraf/APKBUILD | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/main/iptraf/APKBUILD b/main/iptraf/APKBUILD index 4d1149d1c..d4e4b2339 100644 --- a/main/iptraf/APKBUILD +++ b/main/iptraf/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Leonardo Arena <rnalrd@gmail.com> pkgname=iptraf pkgver=3.0.0 -pkgrel=0 +pkgrel=1 pkgdesc="IP Network Monitoring Software" url="http://iptraf.seoul.org" license="GPL" @@ -10,10 +10,12 @@ depends= makedepends="ncurses-dev" install= subpackages="$pkgname-doc" -source="ftp://iptraf.seul.org/pub/$pkgname/$pkgname-$pkgver.tar.gz" +source="ftp://iptraf.seul.org/pub/$pkgname/$pkgname-$pkgver.tar.gz + iptraf-3.0.0-vlan.patch" build() { cd "$srcdir/$pkgname-$pkgver/src" + patch -p1 -i "$srcdir"/iptraf-3.0.0-vlan.patch || return 1 sed -i -e s:/var/local/iptraf:/var/lib/iptraf: \ -e s:/usr/local/bin:/usr/sbin: dirs.h @@ -34,4 +36,5 @@ build() { done } -md5sums="377371c28ee3c21a76f7024920649ea8 iptraf-3.0.0.tar.gz" +md5sums="377371c28ee3c21a76f7024920649ea8 iptraf-3.0.0.tar.gz +4136483b9e41c8789c629c42f9a67d07 iptraf-3.0.0-vlan.patch" |