1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/security/ccrypt/Makefile

47 lines
915 B
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= ccrypt
PORTVERSION= 1.10
CATEGORIES= security
MASTER_SITES= SF \
http://www.mathstat.dal.ca/~selinger/ccrypt/download/
MAINTAINER= dev2@heesakkers.info
COMMENT= Command-line utility for encrypting and decrypting files and streams
USES= gmake
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
PLIST_SUB+= NLS=""
USES+= gettext
.else
PLIST_SUB+= NLS="@comment "
USES+= perl5
USE_PERL5= build
CONFIGURE_ARGS+= --disable-nls
.endif
GNU_CONFIGURE= yes
MAN1= ccrypt.1 ccguess.1
MLINKS= ccrypt.1 ccencrypt.1 \
ccrypt.1 ccdecrypt.1 \
ccrypt.1 ccat.1
post-patch:
@${REINPLACE_CMD} -e 's|gtar|tar|g' ${WRKSRC}/configure
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.for i in ccrypt.html cypfaq01.txt
${INSTALL_DATA} ${WRKSRC}/doc/$i ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>