diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-09 01:58:31 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-09 01:58:31 +0800 |
commit | 4d81100a5f29ea08f7ab0618908c600a888c323e (patch) | |
tree | f1cbb8673b0ca7d53093b0fd14173e609b3cbaf3 /security | |
parent | 3356d16dceb2f1376f6c40865251e11bc4c82753 (diff) | |
download | freebsd-ports-gnome-4d81100a5f29ea08f7ab0618908c600a888c323e.tar.gz freebsd-ports-gnome-4d81100a5f29ea08f7ab0618908c600a888c323e.tar.zst freebsd-ports-gnome-4d81100a5f29ea08f7ab0618908c600a888c323e.zip |
Support staging and add LICENSE
Diffstat (limited to 'security')
-rw-r--r-- | security/aespipe/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/security/aespipe/Makefile b/security/aespipe/Makefile index 3d4a0208ed15..cfb718fa09ad 100644 --- a/security/aespipe/Makefile +++ b/security/aespipe/Makefile @@ -11,17 +11,17 @@ MASTER_SITES= http://loop-aes.sourceforge.net/${PORTNAME}/ \ MAINTAINER= gehm@physik.tu-berlin.de COMMENT= AES encrypting or decrypting pipe -RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg +LICENSE= GPLv2 -MAN1= aespipe.1 +RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg USE_BZIP2= yes GNU_CONFIGURE= yes -PLIST_FILES= bin/aespipe +PLIST_FILES= bin/aespipe man/man1/aespipe.1.gz -NO_STAGE= yes .include <bsd.port.pre.mk> + ALL_TARGET= .if ${ARCH} == amd64 MAKE_ARGS= amd64 @@ -33,4 +33,9 @@ MAKE_ARGS= x86 post-build: cd ${WRKSRC} && make tests + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + .include <bsd.port.post.mk> |