diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-21 11:30:39 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-21 11:30:39 +0000 |
commit | 1ffeb794cce26ab8e6d6114d24173442fccde276 (patch) | |
tree | 790c79b101ae02ca9ef6f02e617fd33c115a01a1 /misc/fortuneit | |
parent | 5d888a186c5fc0e55d435d170e7f6ce7d1b17fdf (diff) | |
download | ports-1ffeb794cce26ab8e6d6114d24173442fccde276.tar.gz ports-1ffeb794cce26ab8e6d6114d24173442fccde276.zip |
Support staging
Notes
Notes:
svn path=/head/; revision=345374
Diffstat (limited to 'misc/fortuneit')
-rw-r--r-- | misc/fortuneit/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/fortuneit/Makefile b/misc/fortuneit/Makefile index bb9f47a71118..355906fe41b1 100644 --- a/misc/fortuneit/Makefile +++ b/misc/fortuneit/Makefile @@ -17,7 +17,6 @@ FORTUNEFILES= adams banner computer definizioni formiche italia itatrek \ 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: |