27 lines
514 B
Makefile
27 lines
514 B
Makefile
COMMENT = run SQL queries directly on PCAP files
|
|
|
|
DISTNAME = packetq-1.7.1
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = https://www.dns-oarc.net/tools/packetq
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} c m maxminddb z
|
|
|
|
MASTER_SITES = https://www.dns-oarc.net/files/packetq/
|
|
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
LIB_DEPENDS = net/libmaxminddb
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/packetq
|
|
cp -r ${WRKSRC}/html ${PREFIX}/share/examples/packetq
|
|
|
|
.include <bsd.port.mk>
|