mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
1d9d5c3917
PR: 203970
35 lines
967 B
Makefile
35 lines
967 B
Makefile
# Created by: Jose M. Alcaide <jose@we.lc.ehu.es>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tcpflow
|
|
PORTVERSION= 1.4.5
|
|
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
|
|
CONFIGURE_ENV= ac_cv_lib_md_MD5=no \
|
|
ac_cv_header_tre_tre_h=no ac_cv_lib_tre_tre_regcomp=no \
|
|
ac_cv_header_sqlite3_h=no ac_cv_lib_sqlite3_sqlite3_libversion=no
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/tcpflow man/man1/tcpflow.1.gz
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|