mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
36 lines
862 B
Makefile
36 lines
862 B
Makefile
# Created by: Jose M. Alcaide <jose@we.lc.ehu.es>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tcpflow
|
|
PORTVERSION= 1.4.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.digitalcorpora.org/downloads/${PORTNAME}/
|
|
|
|
MAINTAINER= antoine@FreeBSD.org
|
|
COMMENT= Program that captures data transmitted as part of TCP connections
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/boost/icl/interval.hpp:${PORTSDIR}/devel/boost-libs
|
|
LIB_DEPENDS= libcairo.so:${PORTSDIR}/graphics/cairo
|
|
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/tcpflow man/man1/tcpflow.1.gz
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|