Fix numerous instances of,
netcat.c:241:22: error: incompatible integer to pointer conversion passing 'unsigned int' to parameter of type 'char *' [-Wint-conversion]
bail (wrote_txt, wrote_net, wrote_out);
^~~~~~~~~
While at it assume care and feeding of this port.
MFH: 2023Q2
29 lines
673 B
Makefile
29 lines
673 B
Makefile
PORTNAME= cryptcat
|
|
PORTVERSION= 1.2.1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-unix-1.2/${PORTNAME}-unix-${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}-unix-${PORTVERSION}
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= Standard netcat enhanced with twofish encryption
|
|
WWW= https://sourceforge.net/projects/cryptcat/
|
|
|
|
USES= tar
|
|
WRKSRC= ${WRKDIR}/unix
|
|
ALL_TARGET= freebsd
|
|
|
|
PLIST_FILES= bin/cryptcat
|
|
PORTDOCS= README.cryptcat
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cryptcat ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|