mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
da3162c7c9
Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
57 lines
1.2 KiB
Makefile
57 lines
1.2 KiB
Makefile
# Created by: alepulver
|
|
|
|
PORTNAME= nehquake
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 9
|
|
CATEGORIES= games
|
|
MASTER_SITES= LOCAL/alepulver
|
|
DISTNAME= NehQuake-bjp-bin-src.linux
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Quake engine designed for playing Nehahra
|
|
|
|
BROKEN_FreeBSD_13= ld: error: duplicate symbol: sb_lines
|
|
BROKEN_FreeBSD_14= ld: error: duplicate symbol: sb_lines
|
|
|
|
USES= gl gmake dos2unix tar:bzip2 xorg
|
|
USE_GL= gl
|
|
USE_XORG= xxf86dga xxf86vm
|
|
|
|
OPTIONS_DEFINE= OPTIMIZED_CFLAGS SDL
|
|
OPTIONS_DEFINE_amd64= X86_ASM
|
|
OPTIONS_DEFINE_i386= X86_ASM
|
|
OPTIONS_DEFAULT= OPTIMIZED_CFLAGS SDL
|
|
OPTIONS_DEFAULT_amd64= X86_ASM
|
|
OPTIONS_DEFAULT_i386= X86_ASM
|
|
OPTIONS_SUB= yes
|
|
|
|
SDL_USES= sdl
|
|
SDL_USE= SDL=sdl
|
|
SDL_MAKE_ENV= BUILD_SDL=YES
|
|
|
|
X86_ASM_DESC= Enable x86 assembly code
|
|
|
|
ALL_TARGET= release
|
|
SUB_FILES= pkg-message
|
|
|
|
.include "${.CURDIR}/../quake-data/Makefile.include"
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.for f in OPTIMIZED_CFLAGS X86_ASM
|
|
. if ${PORT_OPTIONS:M${f}}
|
|
MAKE_ENV+= USE_${f}=YES
|
|
. else
|
|
MAKE_ENV+= USE_${f}=NO
|
|
. endif
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/release/nehahra ${STAGEDIR}${PREFIX}/bin
|
|
.if ${PORT_OPTIONS:MSDL}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/release/nehahra-sdl ${STAGEDIR}${PREFIX}/bin
|
|
.endif
|
|
@${MKDIR} ${STAGEDIR}${Q1DIR}/nehahra
|
|
|
|
.include <bsd.port.mk>
|