Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Feb 2014 11:30:39 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r345374 - head/misc/fortuneit
Message-ID:  <201402211130.s1LBUdYK009169@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Fri Feb 21 11:30:39 2014
New Revision: 345374
URL: http://svnweb.freebsd.org/changeset/ports/345374
QAT: https://qat.redports.org/buildarchive/r345374/

Log:
  Support staging

Modified:
  head/misc/fortuneit/Makefile

Modified: head/misc/fortuneit/Makefile
==============================================================================
--- head/misc/fortuneit/Makefile	Fri Feb 21 11:26:15 2014	(r345373)
+++ head/misc/fortuneit/Makefile	Fri Feb 21 11:30:39 2014	(r345374)
@@ -17,7 +17,6 @@ FORTUNEFILES=	adams banner computer defi
 		computer-o definizioni-o film-o italia-o jackfr-o leggi-o \
 		luttazzi-o obsc-o zuse-o
 
-NO_STAGE=	yes
 pre-build:
 .if !exists(${STRCMD})
 	@${ECHO_MSG} "Please install the games distribution"
@@ -30,10 +29,11 @@ do-build:
 .endfor
 
 do-install:
-	@${MKDIR} ${PREFIX}/share/games
-	@${MKDIR} ${PREFIX}/share/games/fortune
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/games
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune
 .for f in ${FORTUNEFILES}
-	@${INSTALL_DATA} ${WRKSRC}/testi/${f}* ${PREFIX}/share/games/fortune
+	@${INSTALL_DATA} ${WRKSRC}/testi/${f}* \
+		${STAGEDIR}${PREFIX}/share/games/fortune
 .endfor
 
 post-install:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402211130.s1LBUdYK009169>