ports/net/cryptcat/Makefile
Cy Schubert 18bba8441a net/cryptcat: Fix numerous LLVM15 build errors
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
2023-05-25 02:09:03 -07:00

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>