mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
3601797d41
- Remove LICENSE from DOCS - Use PLIST_FILES and PORTDOCS=* instead of pkg-plist PR: ports/179198 Submitted by: nemysis (self)
29 lines
611 B
Makefile
29 lines
611 B
Makefile
# Created by: George Reid <greid@ukug.uk.freebsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tcpstat
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.frenchfries.net/paul/tcpstat/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Program to report various network statistics
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/tcpstat bin/tcpprof \
|
|
man/man1/tcpprof.1.gz man/man1/tcpstat.1.gz
|
|
|
|
PORTDOCS= *
|
|
|
|
DOCS= AUTHORS ChangeLog README doc/Tips_and_Tricks.txt
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|