From owner-svn-ports-all@FreeBSD.ORG Sun Jun 22 09:22:53 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 70EC2CDF; Sun, 22 Jun 2014 09:22:53 +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 4370C24A8; Sun, 22 Jun 2014 09:22:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5M9Mrwc035739; Sun, 22 Jun 2014 09:22:53 GMT (envelope-from nobutaka@svn.freebsd.org) Received: (from nobutaka@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5M9MqEt035736; Sun, 22 Jun 2014 09:22:52 GMT (envelope-from nobutaka@svn.freebsd.org) Message-Id: <201406220922.s5M9MqEt035736@svn.freebsd.org> From: MANTANI Nobutaka Date: Sun, 22 Jun 2014 09:22:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358772 - in head/editors: apel apel-emacs21 apel-emacs22 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: Sun, 22 Jun 2014 09:22:53 -0000 Author: nobutaka Date: Sun Jun 22 09:22:52 2014 New Revision: 358772 URL: http://svnweb.freebsd.org/changeset/ports/358772 QAT: https://qat.redports.org/buildarchive/r358772/ Log: Support staging. Modified: head/editors/apel-emacs21/Makefile head/editors/apel-emacs22/Makefile head/editors/apel/Makefile Modified: head/editors/apel-emacs21/Makefile ============================================================================== --- head/editors/apel-emacs21/Makefile Sun Jun 22 09:12:30 2014 (r358771) +++ head/editors/apel-emacs21/Makefile Sun Jun 22 09:22:52 2014 (r358772) @@ -13,5 +13,4 @@ MASTERDIR= ${.CURDIR}/../../editors/apel USE_EMACS= yes EMACS_PORT_NAME= emacs21 -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/editors/apel-emacs22/Makefile ============================================================================== --- head/editors/apel-emacs22/Makefile Sun Jun 22 09:12:30 2014 (r358771) +++ head/editors/apel-emacs22/Makefile Sun Jun 22 09:22:52 2014 (r358772) @@ -13,5 +13,4 @@ MASTERDIR= ${.CURDIR}/../../editors/apel USE_EMACS= yes EMACS_PORT_NAME= emacs22 -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/editors/apel/Makefile ============================================================================== --- head/editors/apel/Makefile Sun Jun 22 09:12:30 2014 (r358771) +++ head/editors/apel/Makefile Sun Jun 22 09:22:52 2014 (r358772) @@ -27,14 +27,13 @@ DESCR= ${PKGDIR}/pkg-descr # target name for make build ALL_TARGET?= elc # environments -MAKE_ARGS+= PREFIX="${LOCALBASE}" \ - LISPDIR="${APEL_LISPDIR}" \ - VERSION_SPECIFIC_LISPDIR="${APEL_VERSION_SPECIFIC_LISPDIR}" +MAKE_ARGS+= PREFIX="${STAGEDIR}${LOCALBASE}" \ + LISPDIR="${STAGEDIR}${APEL_LISPDIR}" \ + VERSION_SPECIFIC_LISPDIR="${STAGEDIR}${APEL_VERSION_SPECIFIC_LISPDIR}" OPTIONS_DEFINE= DOCS OPTINOS_DEFAULT= DOCS -NO_STAGE= yes .include .include @@ -46,10 +45,10 @@ PLIST_SUB+= EMACS23="@comment " NOEMACS2 post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} @(cd ${WRKSRC} ; \ for i in ChangeLog README.* ; do \ - ${INSTALL_DATA} $${i} ${DOCSDIR} ; \ + ${INSTALL_DATA} $${i} ${STAGEDIR}${DOCSDIR} ; \ done) .endif