7fe22cc1e7
NetworkInterface.cpp:138:5: error: no matching function for call to 'ndpi_set_proto_defaults' ndpi_set_proto_defaults(ndpi_struct, NTOPNG_NDPI_OS_PROTO_ID, ^~~~~~~~~~~~~~~~~~~~~~~ /usr/local/include/libndpi-1.6.0/libndpi/ndpi_main.h:120:13: note: candidate function not viable: requires 8 arguments, but 5 were provided extern void ndpi_set_proto_defaults(struct ndpi_detection_module_struct *ndpi_mod, ^ 1 error generated. Reported by: pkg-fallout
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
Makefile
# Created by: Muhammad Moinur Rahman <5u623l20@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ntopng
|
|
PORTVERSION= 1.2.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/ntop/${PORTNAME}
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Network monitoring tool with command line and web interfaces
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN= Fails to build
|
|
|
|
LIB_DEPENDS= librrd.so:${PORTSDIR}/databases/rrdtool \
|
|
libluajit-5.1.so:${PORTSDIR}/lang/luajit \
|
|
libndpi.so:${PORTSDIR}/net/ndpi \
|
|
libzmq.so:${PORTSDIR}/net/libzmq4
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_SQLITE= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= autoreconf cpe gmake libtool pathfix pkgconfig tar:tgz
|
|
SUB_FILES= ntopng-geoipupdate.sh
|
|
|
|
CPE_VENDOR= ntop
|
|
|
|
OPTIONS_DEFINE= GEOIP NLS
|
|
OPTIONS_DEFAULT= GEOIP
|
|
GEOIP_BUILD_DEPENDS= geoiplookup:${PORTSDIR}/net/GeoIP
|
|
NLS_USES= gettext
|
|
|
|
USE_RC_SUBR= ntopng
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${OSVERSION} < 900000
|
|
BROKEN= Does not build on 8.X due to *ENDIAN implementations
|
|
.endif
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -name "*~" -delete
|
|
@${RMDIR} ${WRKSRC}/httpdocs/ssl
|
|
@${RMDIR} ${WRKSRC}/httpdocs/geoip
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
cd ${WRKSRC} && ${INSTALL_MAN} ${PORTNAME}.8 ${STAGEDIR}${PREFIX}/man/man8
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/httpdocs
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/scripts
|
|
cd ${WRKSRC}/httpdocs && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/httpdocs
|
|
cd ${WRKSRC}/scripts && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/scripts
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/ntopng-geoipupdate.sh ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|