pkgsrc/games/rocksndiamonds/options.mk
adam 89607e2002 Changes 3.1.1:
- added tutorial level set created by Aaron Davidson
- added editor element descriptions written by Aaron Davidson
- added native game engine for Emerald Mine (Club) levels
- added level skipping functionality to main menu
- added support for dumping small-sized level sketches from editor
- added use of "editorsetup.conf" for different level sets
- lots of bugfixes and internal engine changes (see ChangeLog)
2005-08-16 15:35:51 +00:00

28 lines
655 B
Makefile

# $NetBSD: options.mk,v 1.1 2005/08/16 15:35:51 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.rocksndiamonds
PKG_SUPPORTED_OPTIONS= sdl x11
PKG_SUGGESTED_OPTIONS= sdl
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Msdl)
.if ${OPSYS} == "Solaris"
BUILD_TARGET= solaris-sdl
.else
BUILD_TARGET= sdl
.endif
.include "../../audio/SDL_mixer/buildlink3.mk"
.include "../../graphics/SDL_image/buildlink3.mk"
.include "../../net/SDL_net/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mx11)
.if ${OPSYS} == "Solaris"
BUILD_TARGET= solaris
.else
BUILD_TARGET= x11
.endif
.include "../../mk/ossaudio.buildlink3.mk"
.include "../../mk/x11.buildlink3.mk"
.endif