From owner-svn-ports-all@FreeBSD.ORG Fri May 15 18:04:59 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACD6A3DA; Fri, 15 May 2015 18:04:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8378F1E39; Fri, 15 May 2015 18:04:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4FI4xnA087042; Fri, 15 May 2015 18:04:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4FI4xeD087040; Fri, 15 May 2015 18:04:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201505151804.t4FI4xeD087040@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 15 May 2015 18:04:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386455 - head/security/ncrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 May 2015 18:04:59 -0000 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 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/