blob: 8f370925070c6543b8dcb84ab87ad634633ceeb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "ntop is network top"
SECTION = "network"
PRIORITY = "optional"
SRC_URI = "${SOURCEFORGE_MIRROR}/ntop/ntop-${PV}.tgz \
file://${FILESDIR}/libtool-shut-up.patch;patch=1"
inherit autotools
do_configure_prepend() {
find . -name "acinclude.m4"|xargs rm -f
find . -name "aclocal.m4" |xargs rm -f
find . -name "config.h.in"|xargs rm -f
find . -name "Makefile.in"|xargs rm -f
find . -name "configure"|xargs rm -f
}
export NTOPAUTOREBUILD=yes
export NTOPCONFIGDEBUG=yes
|