From owner-svn-ports-all@FreeBSD.ORG Tue Jun 10 15:24:39 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8D805E7; Tue, 10 Jun 2014 15:24:39 +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 ABBD12243; Tue, 10 Jun 2014 15:24:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5AFOdn0061174; Tue, 10 Jun 2014 15:24:39 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5AFOdsL061172; Tue, 10 Jun 2014 15:24:39 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406101524.s5AFOdsL061172@svn.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Jun 2014 15:24:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357335 - in head/security/chroot_safe: . 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-all@freebsd.org X-Mailman-Version: 2.1.18 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: Tue, 10 Jun 2014 15:24:39 -0000 Author: vanilla Date: Tue Jun 10 15:24:38 2014 New Revision: 357335 URL: http://svnweb.freebsd.org/changeset/ports/357335 QAT: https://qat.redports.org/buildarchive/r357335/ Log: Stagify. Added: head/security/chroot_safe/files/ head/security/chroot_safe/files/patch-Makefile.in (contents, props changed) Modified: head/security/chroot_safe/Makefile Modified: head/security/chroot_safe/Makefile ============================================================================== --- head/security/chroot_safe/Makefile Tue Jun 10 15:22:12 2014 (r357334) +++ head/security/chroot_safe/Makefile Tue Jun 10 15:24:38 2014 (r357335) @@ -13,11 +13,9 @@ COMMENT= Tool to chroot softwares easily GNU_CONFIGURE= YES -MAN1= chroot_safe.1 -PLIST_FILES= sbin/chroot_safe libexec/chroot_safe/chroot_safe.so +PLIST_FILES= man/man1/chroot_safe.1.gz sbin/chroot_safe libexec/chroot_safe/chroot_safe.so PLIST_DIRS= libexec/chroot_safe -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's|CXX=g++|CXX?=c++|' \ -e 's|-o chroot_safe.so|chroot_safe.cpp -o chroot_safe.so|' \ Added: head/security/chroot_safe/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/chroot_safe/files/patch-Makefile.in Tue Jun 10 15:24:38 2014 (r357335) @@ -0,0 +1,21 @@ +--- Makefile.in.orig 2014-06-10 23:22:42.806836167 +0800 ++++ Makefile.in 2014-06-10 23:23:07.477835933 +0800 +@@ -18,12 +18,12 @@ clean: + rm -f *.o *.so *~ + + install: all +- $(install) -m 0755 -d $(libexec) +- $(install) -m 0755 -s chroot_safe.so $(libexec)/chroot_safe.so +- $(install) -m 0755 -d $(sbin) +- $(install) -m 0750 chroot_safe $(sbin)/chroot_safe +- $(install) -m 0755 -d $(man) +- $(install) -m 0444 chroot_safe.1 $(man)/chroot_safe.1 ++ $(install) -m 0755 -d $(DESTDIR)$(libexec) ++ $(install) -m 0755 -s chroot_safe.so $(DESTDIR)$(libexec)/chroot_safe.so ++ $(install) -m 0755 -d $(DESTDIR)$(sbin) ++ $(install) -m 0750 chroot_safe $(DESTDIR)$(sbin)/chroot_safe ++ $(install) -m 0755 -d $(DESTDIR)$(man) ++ $(install) -m 0444 chroot_safe.1 $(DESTDIR)$(man)/chroot_safe.1 + + distclean: clean + rm -f chroot_safe config.log config.status Makefile chroot_safe.1