From owner-svn-ports-head@freebsd.org Tue May 10 09:03:33 2016 Return-Path: Delivered-To: svn-ports-head@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 40647B33889; Tue, 10 May 2016 09:03:33 +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 0362C1BDC; Tue, 10 May 2016 09:03:32 +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 u4A93WFp051782; Tue, 10 May 2016 09:03:32 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4A93Vbn051777; Tue, 10 May 2016 09:03:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201605100903.u4A93Vbn051777@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 10 May 2016 09:03:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414930 - in head/security/chrootuid: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 May 2016 09:03:33 -0000 Author: amdmi3 Date: Tue May 10 09:03:31 2016 New Revision: 414930 URL: https://svnweb.freebsd.org/changeset/ports/414930 Log: - Add LICENSE - Switch to options helpers - Regenerate patches with `make makepatch` Modified: head/security/chrootuid/Makefile head/security/chrootuid/files/patch-Makefile head/security/chrootuid/files/patch-chrootuid.1 head/security/chrootuid/files/patch-chrootuid.c Modified: head/security/chrootuid/Makefile ============================================================================== --- head/security/chrootuid/Makefile Tue May 10 08:44:34 2016 (r414929) +++ head/security/chrootuid/Makefile Tue May 10 09:03:31 2016 (r414930) @@ -11,15 +11,20 @@ DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Simple wrapper that combines chroot(8) and su(1) into one program +LICENSE= MIT # MIT-like actually +LICENSE_FILE= ${WRKSRC}/chrootuid_license + PLIST_FILES= sbin/chrootuid man/man8/chrootuid.1.gz PORTDOCS= README OPTIONS_DEFINE= DOCS do-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} ${INSTALL_PROGRAM} ${WRKSRC}/chrootuid ${STAGEDIR}${PREFIX}/sbin/ ${INSTALL_MAN} ${WRKSRC}/chrootuid.1 ${STAGEDIR}${PREFIX}/man/man8 +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + .include Modified: head/security/chrootuid/files/patch-Makefile ============================================================================== --- head/security/chrootuid/files/patch-Makefile Tue May 10 08:44:34 2016 (r414929) +++ head/security/chrootuid/files/patch-Makefile Tue May 10 09:03:31 2016 (r414930) @@ -1,5 +1,5 @@ ---- Makefile.orig Thu Aug 12 07:09:31 1993 -+++ Makefile Sun Jun 23 15:01:35 2002 +--- Makefile.orig 1993-08-12 14:09:31 UTC ++++ Makefile @@ -1,7 +1,7 @@ # @(#) Makefile 1.2 93/08/12 16:09:29 Modified: head/security/chrootuid/files/patch-chrootuid.1 ============================================================================== --- head/security/chrootuid/files/patch-chrootuid.1 Tue May 10 08:44:34 2016 (r414929) +++ head/security/chrootuid/files/patch-chrootuid.1 Tue May 10 09:03:31 2016 (r414930) @@ -1,5 +1,5 @@ ---- chrootuid.1.orig Wed Jul 25 09:46:59 2001 -+++ chrootuid.1 Sun Jun 23 15:01:19 2002 +--- chrootuid.1.orig 2001-07-25 16:46:59 UTC ++++ chrootuid.1 @@ -1,4 +1,4 @@ -.TH CHROOTUID 1 +.TH CHROOTUID 8 Modified: head/security/chrootuid/files/patch-chrootuid.c ============================================================================== --- head/security/chrootuid/files/patch-chrootuid.c Tue May 10 08:44:34 2016 (r414929) +++ head/security/chrootuid/files/patch-chrootuid.c Tue May 10 09:03:31 2016 (r414930) @@ -1,6 +1,6 @@ ---- chrootuid.c.orig Wed Jul 25 09:47:44 2001 -+++ chrootuid.c Sun Jun 23 15:06:10 2002 -@@ -81,6 +81,10 @@ +--- chrootuid.c.orig 2001-07-25 16:47:44 UTC ++++ chrootuid.c +@@ -81,6 +81,10 @@ char **argv; syslog(LOG_ERR, "usage: %s path user command", argv[0]); return (0); }