36f1dfc9ac
seven years... - make aesget actually work with the default keysize (initialize it!) - do not overflow the key filename buffers while parsing command-line options - break out common code into a single file - make the read()/write() loops a bit more robust - fix lots of compiler warnings - use snprintf() instead of strcpy()/strcat() - write mdoc manual pages for aescrypt(1) and aesget(1) - install the binaries and the manual pages with the correct permission mode
34 lines
718 B
Makefile
34 lines
718 B
Makefile
# New ports collection makefile for: aescrypt
|
|
# Date created: 12 December 2000
|
|
# Whom: roam@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= aescrypt
|
|
PORTVERSION= 0.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF
|
|
|
|
PATCH_SITES= http://devel.ringlet.net/security/aescrypt/patches/ \
|
|
http://people.FreeBSD.org/~roam/ports/patches/security/aescrypt/
|
|
PATCHFILES= aescrypt-0.7-roam-whopper-01.patch.gz
|
|
|
|
MAINTAINER= roam@FreeBSD.org
|
|
COMMENT= A command-line AES encryption/decryption suite
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_ENV+= BINGRP=wheel
|
|
|
|
MAN1= aescrypt.1 aesget.1
|
|
MANCOMPRESSED= yes
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.html ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|