1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00
freebsd-ports/net/tcplog_dumper/Makefile
Olivier Cochard 21f8dd2525 net/tcplog_dumper: Enable build on all 64-bit platforms
Reported by:	tuexen
Sponsored by:	Netflix
2021-06-29 17:56:50 +02:00

33 lines
853 B
Makefile

PORTNAME= tcplog_dumper
PORTVERSION= 0.1.1
DISTVERSIONPREFIX= v
CATEGORIES= net
MAINTAINER= olivier@FreeBSD.org
COMMENT= Dump data from the tcp_log device
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
ONLY_FOR_ARCHS= aarch64 amd64 mips64 mips64el mips64elhf mips64hf powerpc64 powerpc64le riscv64 riscv64sf
ONLY_FOR_ARCHS_REASON= Only 64-bit platforms are supported
USE_GITHUB= yes
GH_ACCOUNT= Netflix
PLIST_FILES= sbin/tcplog_dumper \
man/man1/tcplog_dumper.1.gz
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1300076
IGNORE= builds only on FreeBSD 13-head with minimum revision 356414
.endif
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/sbin
${INSTALL_PROGRAM} ${WRKSRC}/tcplog_dumper ${STAGEDIR}${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/tcplog_dumper.1.gz ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>