diff options
author | Steve Price <steve@FreeBSD.org> | 1999-06-22 17:58:23 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-06-22 17:58:23 +0000 |
commit | 3c014fdf9c281aee36641e1f246cf473d3800900 (patch) | |
tree | 5a96a0a22d1608a65390c1af34e43513dd7dca87 /games/rocksndiamonds/Makefile | |
parent | 3e94dbb52b0f3a289ea4457530370fff5a6fa1e8 (diff) | |
download | ports-3c014fdf9c281aee36641e1f246cf473d3800900.tar.gz ports-3c014fdf9c281aee36641e1f246cf473d3800900.zip |
Disable sound and joystick support on the Alpha.
Notes
Notes:
svn path=/head/; revision=19684
Diffstat (limited to 'games/rocksndiamonds/Makefile')
-rw-r--r-- | games/rocksndiamonds/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/games/rocksndiamonds/Makefile b/games/rocksndiamonds/Makefile index 9835ff2ecbb0..06f270f06fce 100644 --- a/games/rocksndiamonds/Makefile +++ b/games/rocksndiamonds/Makefile @@ -3,7 +3,7 @@ # Date created: 27 May 1999 # Whom: Thomas Gellekum <tg@FreeBSD.ORG> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1999/05/27 13:53:02 tg Exp $ # DISTNAME= rocksndiamonds-1.2.0 @@ -15,7 +15,10 @@ MAINTAINER= ports@FreeBSD.ORG USE_XLIB= yes USE_GMAKE= yes -MAKE_ENV= GAME_DIR=${GAME_DIR} X11_PATH=${X11BASE} OPTIONS="${CFLAGS}" +MAKE_ENV+= GAME_DIR=${GAME_DIR} X11_PATH=${X11BASE} OPTIONS="${CFLAGS}" +.if ${MACHINE_ARCH} == "alpha" +MAKE_ENV+= SOUNDS="-DNO_SOUNDS" JOYSTICK="-DNO_JOYSTICK" +.endif GAME_DIR=${PREFIX}/share/rocksndiamonds DOC_DIR=${PREFIX}/share/doc/rocksndiamonds |