From owner-svn-ports-head@FreeBSD.ORG Fri Apr 4 19:17:38 2014 Return-Path: Delivered-To: svn-ports-head@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 076623AC; Fri, 4 Apr 2014 19:17:38 +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 E94DB6EA; Fri, 4 Apr 2014 19:17:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s34JHbNL048095; Fri, 4 Apr 2014 19:17:37 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s34JHbGV048094; Fri, 4 Apr 2014 19:17:37 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201404041917.s34JHbGV048094@svn.freebsd.org> From: Pawel Pekala Date: Fri, 4 Apr 2014 19:17:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350151 - head/editors/aee 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.17 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: Fri, 04 Apr 2014 19:17:38 -0000 Author: pawel Date: Fri Apr 4 19:17:37 2014 New Revision: 350151 URL: http://svnweb.freebsd.org/changeset/ports/350151 QAT: https://qat.redports.org/buildarchive/r350151/ Log: Add staging support Modified: head/editors/aee/Makefile Modified: head/editors/aee/Makefile ============================================================================== --- head/editors/aee/Makefile Fri Apr 4 19:06:16 2014 (r350150) +++ head/editors/aee/Makefile Fri Apr 4 19:17:37 2014 (r350151) @@ -17,11 +17,9 @@ XAE_DESC= Build X11 version 'xae' MAKE_JOBS_UNSAFE= yes -MAN1= aee.1 -PLIST_FILES= bin/aee bin/rae %%DATADIR%%/help.ae +PLIST_FILES= bin/aee bin/rae man/man1/aee.1.gz %%DATADIR%%/help.ae PLIST_DIRS= %%DATADIR%% -NO_STAGE= yes .include .if ${PORT_OPTIONS:MXAE} @@ -46,14 +44,14 @@ post-patch: .endfor do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} aee ${PREFIX}/bin) - (cd ${PREFIX}/bin && ${LN} aee rae) - (cd ${WRKSRC} && ${INSTALL_MAN} aee.1 ${MANPREFIX}/man/man1) - @${MKDIR} ${DATADIR} - (cd ${WRKSRC} && ${INSTALL_DATA} help.ae ${DATADIR}) + (cd ${WRKSRC} && ${INSTALL_PROGRAM} aee ${STAGEDIR}${PREFIX}/bin) + (cd ${STAGEDIR}${PREFIX}/bin && ${LN} aee rae) + (cd ${WRKSRC} && ${INSTALL_MAN} aee.1 ${STAGEDIR}${MANPREFIX}/man/man1) + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${INSTALL_DATA} help.ae ${STAGEDIR}${DATADIR}) .if ${PORT_OPTIONS:MXAE} - (cd ${WRKSRC} && ${INSTALL_PROGRAM} xae ${PREFIX}/bin) - (cd ${PREFIX}/bin && ${LN} xae rxae) + (cd ${WRKSRC} && ${INSTALL_PROGRAM} xae ${STAGEDIR}${PREFIX}/bin) + (cd ${STAGEDIR}${PREFIX}/bin && ${LN} xae rxae) .endif .include