From owner-svn-ports-all@FreeBSD.ORG Fri Jun 6 22:23:18 2014 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE85557A; Fri, 6 Jun 2014 22:23:18 +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 9B77A265D; Fri, 6 Jun 2014 22:23:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s56MNIFm093200; Fri, 6 Jun 2014 22:23:18 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s56MNI8Y093194; Fri, 6 Jun 2014 22:23:18 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201406062223.s56MNI8Y093194@svn.freebsd.org> From: Pawel Pekala Date: Fri, 6 Jun 2014 22:23:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356860 - in head/math/emacs-calc: . 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: Fri, 06 Jun 2014 22:23:18 -0000 Author: pawel Date: Fri Jun 6 22:23:17 2014 New Revision: 356860 URL: http://svnweb.freebsd.org/changeset/ports/356860 QAT: https://qat.redports.org/buildarchive/r356860/ Log: Add staging support, allow it as normal user Modified: head/math/emacs-calc/Makefile head/math/emacs-calc/files/patch-Makefile Modified: head/math/emacs-calc/Makefile ============================================================================== --- head/math/emacs-calc/Makefile Fri Jun 6 22:22:47 2014 (r356859) +++ head/math/emacs-calc/Makefile Fri Jun 6 22:23:17 2014 (r356860) @@ -19,7 +19,6 @@ EMACS_PORT_NAME=emacs21 INFO= calc -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/Makefile Modified: head/math/emacs-calc/files/patch-Makefile ============================================================================== --- head/math/emacs-calc/files/patch-Makefile Fri Jun 6 22:22:47 2014 (r356859) +++ head/math/emacs-calc/files/patch-Makefile Fri Jun 6 22:23:17 2014 (r356860) @@ -40,16 +40,16 @@ + $(MAKE) info + +install: ${installfiles} -+ install-info ${infodir}/calc.info ${infodir}/dir ++ install-info ${DESTDIR}${infodir}/calc.info ${DESTDIR}${infodir}/dir + +.for file in ${infofiles} +${infodir}/${file}: ${file} -+ install -o root -g wheel -m 0444 $? $@ ++ ${BSD_INSTALL_DATA} $? ${DESTDIR}$@ +.endfor + +.for file in ${sitefiles} +${calcsitedir}/${file}: ${file} -+ @install -d -o root -g wheel -m 0755 ${@D} -+ install -o root -g wheel -m 0444 $? $@ ++ @install -d -m 0755 ${DESTDIR}${@D} ++ ${BSD_INSTALL_DATA} $? ${DESTDIR}$@ +.endfor