From owner-svn-ports-head@FreeBSD.ORG Sat Oct 26 16:06:23 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 12689898; Sat, 26 Oct 2013 16:06:23 +0000 (UTC) (envelope-from danilo@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA06824D7; Sat, 26 Oct 2013 16:06:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9QG6MYl030815; Sat, 26 Oct 2013 16:06:22 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9QG6M28030814; Sat, 26 Oct 2013 16:06:22 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201310261606.r9QG6M28030814@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sat, 26 Oct 2013 16:06:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331708 - head/emulators/spim 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.14 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: Sat, 26 Oct 2013 16:06:23 -0000 Author: danilo Date: Sat Oct 26 16:06:22 2013 New Revision: 331708 URL: http://svnweb.freebsd.org/changeset/ports/331708 Log: - Add stage support Modified: head/emulators/spim/Makefile Modified: head/emulators/spim/Makefile ============================================================================== --- head/emulators/spim/Makefile Sat Oct 26 16:00:45 2013 (r331707) +++ head/emulators/spim/Makefile Sat Oct 26 16:06:22 2013 (r331708) @@ -17,20 +17,17 @@ INSTALL_WRKSRC= ${WRKSRC}/${PORTNAME} ALL_TARGET= ${PORTNAME} -MAN1= spim.1 -MANCOMPRESSED= no PORTDOCS= cycle.ps.gz spim.ps.gz SPIM.html -PLIST_FILES= bin/spim %%DATADIR%%/exceptions.s +PLIST_FILES= bin/spim %%DATADIR%%/exceptions.s \ + man/man1/spim.1.gz PLIST_DIRS= %%DATADIR%% -NO_STAGE= yes .include .if ${PORT_OPTIONS:MGUI} USE_XORG= x11 xaw USES+= imake:env -PLIST_FILES+= bin/xspim -MAN1+= xspim.1 +PLIST_FILES+= bin/xspim man/man1/xspim.1.gz .endif post-build: @@ -40,20 +37,18 @@ post-build: .endif do-install: - ${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/spim ${PREFIX}/bin/spim - ${INSTALL_MAN} ${WRKSRC}/Documentation/spim.man ${MANPREFIX}/man/man1/spim.1 - ${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/CPU/exceptions.s ${DATADIR}/exceptions.s + ${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/spim ${STAGEDIR}${PREFIX}/bin/spim + ${INSTALL_MAN} ${WRKSRC}/Documentation/spim.man ${STAGEDIR}${MANPREFIX}/man/man1/spim.1 + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/CPU/exceptions.s ${STAGEDIR}${DATADIR}/exceptions.s .if ${PORT_OPTIONS:MGUI} - ${INSTALL_PROGRAM} ${WRKSRC}/xspim/xspim ${PREFIX}/bin/xspim - ${INSTALL_MAN} ${WRKSRC}/Documentation/xspim.man ${MANPREFIX}/man/man1/xspim.1 -.endif -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/Documentation/TeX/cycle.ps ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/Documentation/TeX/spim.ps ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/Documentation/SPIM.html ${DOCSDIR} - ${GZIP_CMD} ${DOCSDIR}/cycle.ps ${DOCSDIR}/spim.ps + ${INSTALL_PROGRAM} ${WRKSRC}/xspim/xspim ${STAGEDIR}${PREFIX}/bin/xspim + ${INSTALL_MAN} ${WRKSRC}/Documentation/xspim.man ${STAGEDIR}${MANPREFIX}/man/man1/xspim.1 .endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Documentation/TeX/cycle.ps ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Documentation/TeX/spim.ps ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Documentation/SPIM.html ${STAGEDIR}${DOCSDIR} + ${GZIP_CMD} ${STAGEDIR}${DOCSDIR}/cycle.ps ${STAGEDIR}${DOCSDIR}/spim.ps .include