diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-08-06 19:54:40 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-08-06 19:54:40 +0000 |
commit | 4a4b5e4725294643af1844ccd266bec313cfeeb1 (patch) | |
tree | ac4b206140e112fb5b86e9530381379a5d5139c4 /games/battleball/Makefile | |
parent | Update to 1.3. (diff) |
o make it PTHREAD_{LIBS,CFLAGS} safe
o some Makefile style files: use DOCSDIR and extraneous space
removals
o support NOPORTDOCS
PR: 29482
Submitted by: Patrick Li <pat@databits.net>
Notes
Notes:
svn path=/head/; revision=45895
Diffstat (limited to 'games/battleball/Makefile')
-rw-r--r-- | games/battleball/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/battleball/Makefile b/games/battleball/Makefile index a3a5e6e1307d..83edce5b6ddd 100644 --- a/games/battleball/Makefile +++ b/games/battleball/Makefile @@ -17,15 +17,17 @@ MAINTAINER= ports@FreeBSD.org USE_X_PREFIX= yes USE_MESA= yes WRKSRC= ${WRKDIR}/battleball-2.1-src +MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" \ + PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" do-install: @ ${INSTALL_PROGRAM} ${WRKSRC}/battleball ${PREFIX}/bin post-install: .if !defined(NOPORTDOCS) - @ ${MKDIR} ${PREFIX}/share/doc/battleball + @${MKDIR} ${DOCSDIR} .for file in CHANGELOG README - @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/battleball + @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif |