From owner-svn-ports-all@freebsd.org Wed Dec 7 09:00:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77F6BC68949; Wed, 7 Dec 2016 09:00:46 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 472B5117D; Wed, 7 Dec 2016 09:00:46 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB790jsk065329; Wed, 7 Dec 2016 09:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB790jsS065328; Wed, 7 Dec 2016 09:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201612070900.uB790jsS065328@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Dec 2016 09:00:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428041 - head/security/chroot_safe 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.23 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: Wed, 07 Dec 2016 09:00:46 -0000 Author: amdmi3 Date: Wed Dec 7 09:00:45 2016 New Revision: 428041 URL: https://svnweb.freebsd.org/changeset/ports/428041 Log: - Add LICENSE - Switch to USES=tar - Cosmetic fixes Modified: head/security/chroot_safe/Makefile Modified: head/security/chroot_safe/Makefile ============================================================================== --- head/security/chroot_safe/Makefile Wed Dec 7 08:26:00 2016 (r428040) +++ head/security/chroot_safe/Makefile Wed Dec 7 09:00:45 2016 (r428041) @@ -6,20 +6,22 @@ PORTVERSION= 1.4 PORTREVISION= 1 CATEGORIES= security sysutils MASTER_SITES= SF/chrootsafe/${PORTNAME}/${PORTVERSION} -EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Tool to chroot softwares easily -GNU_CONFIGURE= YES +LICENSE= MIT + +USES= tar:tgz +GNU_CONFIGURE= yes PLIST_FILES= man/man1/chroot_safe.1.gz sbin/chroot_safe libexec/chroot_safe/chroot_safe.so post-patch: - ${REINPLACE_CMD} -e 's|CXX=g++|CXX?=c++|' \ + @${REINPLACE_CMD} -e 's|CXX=g++|CXX?=c++|' \ -e 's|-o chroot_safe.so|chroot_safe.cpp -o chroot_safe.so|' \ ${WRKSRC}/Makefile.in - ${REINPLACE_CMD} 's|chroot(1)|chroot(8)|' ${WRKSRC}/chroot_safe.1.in - ${REINPLACE_CMD} 's|putenv|unsetenv|' ${WRKSRC}/chroot_safe.cpp + @${REINPLACE_CMD} 's|chroot(1)|chroot(8)|' ${WRKSRC}/chroot_safe.1.in + @${REINPLACE_CMD} 's|putenv|unsetenv|' ${WRKSRC}/chroot_safe.cpp .include