675ac19f85
Changes: * Model animation/movement interpolation (r_lerpmodels, r_lerpmove cvars) * SDL video/input/sound target, now default for MacOS instead of X11. * sndio sound target for OpenBSD (thanks Tony Spets/Jacob Meuser) * Support for BJP1/2/3 and FITZ(666) network/demo protocols * Support for Darkplaces and RMQ style BSP2/2PSB file formats * Work around buggy timers on some windows systems/drivers (thanks MH!) * Removed vid_win dependency on SciTech MGL (thanks MH!) * Netmasks can be used with qwsv's addip/removeip; e.g. "addip 192.168.0.0/24" * Fixed remote screenshots from QWSV * Improved build system including new OSX, Win64, SDL targets * Lots more code sharing between NQ/QW * Use non-power-of-two OpenGL textures when extension is available * New cvar "m_freelook" to replace need for manual editing "+mlook" in config
35 lines
974 B
Makefile
35 lines
974 B
Makefile
# $NetBSD: Makefile,v 1.11 2019/07/03 19:02:59 nia Exp $
|
|
|
|
DISTNAME= tyrquake-0.62
|
|
CATEGORIES= games x11
|
|
MASTER_SITES= https://disenchant.net/files/engine/
|
|
|
|
MAINTAINER= snj@NetBSD.org
|
|
HOMEPAGE= https://disenchant.net/tyrquake/
|
|
COMMENT= Conservative branch of Quake
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_TOOLS+= gmake
|
|
|
|
WRKSRC= ${WRKDIR}/tyrutils-${PKGVERSION_NOREV}
|
|
|
|
LDFLAGS+= ${LIBOSSAUDIO}
|
|
|
|
SUBST_CLASSES+= audio
|
|
SUBST_STAGE.audio= pre-configure
|
|
SUBST_MESSAGE.audio= Fixing path to the audio device.
|
|
SUBST_FILES.audio= common/snd_oss.c
|
|
SUBST_SED.audio= -e "s|/dev/dsp|${DEVOSSAUDIO}|"
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/tyr-* ${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/libXxf86dga/buildlink3.mk"
|
|
.include "../../x11/libXxf86vm/buildlink3.mk"
|
|
.include "../../x11/xorgproto/buildlink3.mk"
|
|
.include "../../mk/oss.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|