forked from Lainports/freebsd-ports
No revision bump tool that we have cleans them up or deals with them, so we end up with duplicated lines. Instead of implementing that just clean up the 51 ports that do this. PORTREVISION and PORTEPOCH can be set to 0 explicitly instead if you need a reminder or placeholder.
24 lines
470 B
Makefile
24 lines
470 B
Makefile
# Created by: wosch
|
|
|
|
PORTNAME= socket
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 0
|
|
CATEGORIES= sysutils net
|
|
MASTER_SITES= https://wolfram.schneider.org/src/ LOCAL/wosch
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Create TCP socket and connect to stdin/out
|
|
|
|
LICENSE= GPLv1
|
|
|
|
PLIST_FILES= bin/socket man/man1/socket.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= README
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|