diff options
Diffstat (limited to 'community/ntop/PKGBUILD')
-rw-r--r-- | community/ntop/PKGBUILD | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/community/ntop/PKGBUILD b/community/ntop/PKGBUILD index ef13c23d1..7bc68c282 100644 --- a/community/ntop/PKGBUILD +++ b/community/ntop/PKGBUILD @@ -1,35 +1,31 @@ -# $Id: PKGBUILD 75300 2012-08-18 10:30:18Z lfleischer $ +# $Id: PKGBUILD 79619 2012-11-08 23:54:27Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Douglas Soares de Andrade <douglas@archlinux.org> pkgname=ntop -pkgver=5.0 -pkgrel=2 +pkgver=5.0.1 +pkgrel=1 pkgdesc='A network traffic probe that shows the network usage.' arch=('i686' 'x86_64') url='http://www.ntop.org/' license=('GPL') depends=('libevent' 'libpcap' 'gd' 'glibc' 'libxml2' 'openssl' 'rrdtool' 'pcre' 'geoip' 'lua') -makedepends=('subversion' 'ca-certificates') +makedepends=('subversion' 'wget' 'ca-certificates') options=('!libtool' '!makeflags') install='ntop.install' source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/Stable/${pkgname}-${pkgver}.tar.gz" 'ntop' 'ntop.conf.d' 'ntop.service') -md5sums=('e4115a6609fd2def2dce177772f9a789' +md5sums=('01710b6925a8a5ffe1a41b8b512ebd69' '7b0d7bb57432e768ff387e9f7236f87c' '6a9371de1dcf31d8ef13a4cf349c02b3' - 'bcb2bcfb4b573babdee7d9321591e3e3') + '0e149d20f881600e8387d850ac268483') build() { cd "${srcdir}/${pkgname}-${pkgver}" - echo 't' | svn export -r 5614 'https://svn.ntop.org/svn/ntop/trunk/nDPI/' - tar -czvf nDPI-svn5614.tar.gz nDPI - - ./autogen.sh --noconfig - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-snmp + ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-snmp make } |