mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
2d67b80b71
* fstrm_capture: Perform output file rotation when a SIGUSR1 signal is received. This allows fstrm_capture's output file to be rotated by logrotate or a similar external utility. (Output rotation is suppressed if fstrm_capture is writing to stdout.) PR: 241256 Reviewed by: swills (tested build) Approved by: freebsd@dns.company (maintainer timeout, 4 weeks) Sponsored by: Farsight Security, Inc.
35 lines
729 B
Makefile
35 lines
729 B
Makefile
# Created by: Leo Vandewoestijne <freebsd@dns.company>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fstrm
|
|
PORTVERSION= 0.6.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= freebsd@dns.company
|
|
COMMENT= Implementation of the Frame Streams data transport protocol in C
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libevent.so:devel/libevent
|
|
|
|
USES= autoreconf gmake libtool pkgconfig
|
|
USE_GITHUB= yes
|
|
USE_LDCONFIG= yes
|
|
GH_ACCOUNT= farsightsec
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
OPTIONS_DEFINE= DOXYGEN DOCS
|
|
DOXYGEN_DESC= Use doxygen for docs
|
|
DOXYGEN_IMPLIES= DOCS
|
|
DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen
|
|
DOXYGEN_ALL_TARGET= html-local
|
|
|
|
PORTDOCS= *
|
|
|
|
.include <bsd.port.mk>
|