mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
1e9d930012
- Trim Makefile header - Remove leading article from COMMENT - Add LICENSE (GPLv2) - Use PLIST_FILES instead of pkg-plist - NOPORTDOCS -> PORT_OPTIONS:MDOCS - Rework pkg-descr PR: ports/179156 Submitted by: nemysis <nemysis@gmx.ch> Approved by: culot / jpaetzel (mentors, implicit)
42 lines
899 B
Makefile
42 lines
899 B
Makefile
# Created by: fenner
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tcptrace
|
|
PORTVERSION= 6.6.7
|
|
CATEGORIES= net ipv6
|
|
MASTER_SITES= http://www.tcptrace.org/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= TCP dump file analysis tool
|
|
|
|
LICENSE= GPLv2
|
|
|
|
GNU_CONFIGURE= yes
|
|
ALL_TARGET= tcptrace
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
bin/xpl2gpl
|
|
|
|
MAN1= tcptrace.1
|
|
|
|
PORTDOCS= ARGS CHANGES FAQ README README.mailing_list \
|
|
README.modules README.tline_graphs README.tput_graphs \
|
|
README.version README.xpl2gpl THANKS dot_tcptracerc
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tcptrace ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/xpl2gpl ${PREFIX}/bin
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.man ${MAN1PREFIX}/man/man1/${PORTNAME}.1
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|