diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2009-03-27 17:53:36 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2009-03-27 17:53:36 +0800 |
commit | 73d42b937c8452786a7efccc7a31a7ac4e9e7d87 (patch) | |
tree | 09eb6b336c86e513a6ff75ae2f21ba919de4cbd9 /games | |
parent | 595f2383086782bec8a14d24f1df4830c5dee5bf (diff) | |
download | freebsd-ports-gnome-73d42b937c8452786a7efccc7a31a7ac4e9e7d87.tar.gz freebsd-ports-gnome-73d42b937c8452786a7efccc7a31a7ac4e9e7d87.tar.zst freebsd-ports-gnome-73d42b937c8452786a7efccc7a31a7ac4e9e7d87.zip |
Mark MAKE_JOBS_SAFE
Diffstat (limited to 'games')
-rw-r--r-- | games/bloboats/Makefile | 1 | ||||
-rw-r--r-- | games/textmaze/Makefile | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/games/bloboats/Makefile b/games/bloboats/Makefile index d513a2dc96b7..0bc3564d5340 100644 --- a/games/bloboats/Makefile +++ b/games/bloboats/Makefile @@ -20,6 +20,7 @@ COMMENT= A boat racing game in the spirit of Elasto Mania or X-Moto USE_GMAKE= yes USE_SDL= mixer image net sdl USE_GL= yes +MAKE_JOBS_SAFE= yes MAKE_ENV+= DATADIR="${DATADIR}" diff --git a/games/textmaze/Makefile b/games/textmaze/Makefile index bb656e8571d3..b3c31b8c8f0b 100644 --- a/games/textmaze/Makefile +++ b/games/textmaze/Makefile @@ -19,10 +19,13 @@ COMMENT= Generates mazes on a text terminal and lets you traverse them RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Curses.pm:${PORTSDIR}/devel/p5-Curses USE_PERL5= yes -WRKSRC= ${WRKDIR}/TextMaze NO_BUILD= yes +MAKE_JOBS_SAFE= yes + PLIST_FILES= bin/textmaze +WRKSRC= ${WRKDIR}/TextMaze + post-patch: @${REINPLACE_CMD} -e 's|/usr/local/bin/perl|${PERL}|' \ ${WRKSRC}/${PORTNAME} |