blob: 48cb6ff4d28986deb7bd807097a0299679188b6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Ports collection makefile for: cryptcat
# Date created: 20 Dec 2000
# Whom: Roman Shterenzon <roman@xpert.com>
#
# $FreeBSD$
#
PORTNAME= cryptcat
PORTVERSION= 20031202
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GENTOO}
MASTER_SITE_SUBDIR= distfiles
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= ports@oven.org
COMMENT= Standard netcat enhanced with twofish encryption
ALL_TARGET= freebsd
PLIST_FILES= bin/cryptcat
PORTDOCS= README.cryptcat
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cryptcat ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|