Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 May 2015 18:04:59 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r386455 - head/security/ncrypt
Message-ID:  <201505151804.t4FI4xeD087040@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Fri May 15 18:04:58 2015
New Revision: 386455
URL: https://svnweb.freebsd.org/changeset/ports/386455

Log:
  - Add LICENSE
  - Strip binary executable
  - Use USES=tar:tgz
  - Use post-patch: instead of post-configure:
  - Update pkg-descr
  - Bump PORTREVISION for package change

Modified:
  head/security/ncrypt/Makefile
  head/security/ncrypt/pkg-descr

Modified: head/security/ncrypt/Makefile
==============================================================================
--- head/security/ncrypt/Makefile	Fri May 15 18:04:53 2015	(r386454)
+++ head/security/ncrypt/Makefile	Fri May 15 18:04:58 2015	(r386455)
@@ -3,20 +3,22 @@
 
 PORTNAME=	ncrypt
 PORTVERSION=	0.7.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	security
-MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-0.7/${PORTNAME}-${PORTVERSION}
-EXTRACT_SUFX=	.tgz
+MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION}
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Advanced AES file encryption tool
 
+LICENSE=	GPLv2
+
 GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+USES=		tar:tgz
 
 PLIST_FILES=	bin/ncrypt bin/nrm
 
-post-configure:
-	@${REINPLACE_CMD} -E 's,^(CC|CFLAGS) =,\1 \?=,g' \
-		${WRKSRC}/Makefile
+post-patch:
+	@${REINPLACE_CMD} -E 's,^(CC|CFLAGS) =,\1 \?=,g' ${WRKSRC}/Makefile.in
 
 .include <bsd.port.mk>

Modified: head/security/ncrypt/pkg-descr
==============================================================================
--- head/security/ncrypt/pkg-descr	Fri May 15 18:04:53 2015	(r386454)
+++ head/security/ncrypt/pkg-descr	Fri May 15 18:04:58 2015	(r386455)
@@ -1,7 +1,12 @@
-NCrypt is intended to give you security in an insecure environment.
-If you are wanting to encrypt files (particularly on a multi-user
-system where you don't have root), wishing to hide your activites
-from prying eyes, and want to "cover your tracks", then NCrypt is
-for you.
+NCrypt is intended to give you security in an insecure environment. If you are
+wanting to encrypt files (particularly on a multi-user system where you don't
+have root), wishing to hide your activites from prying eyes, and want to "cover
+your tracks", then NCrypt is for you. It is a symmetrical file
+encryptor/decryptor that gives you the choice of the top three candidates for
+AES as the encryption algorithm (Rijndael, Serpent, Twofish), tries to minimize
+exposure of the plaintext password in memory, and can safely erase the plaintext
+version from the hard drive. It compiles without any extra crypto libraries,
+making it ideal for systems where you just have a compiler and basic libraries
+(such as an ISP's shell server).
 
 WWW: http://ncrypt.sourceforge.net/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505151804.t4FI4xeD087040>