mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
73420e5027
- Remove USE_X_PREFIX - Add games/dangerdeep-data dependency
66 lines
1.7 KiB
Makefile
66 lines
1.7 KiB
Makefile
# New ports collection makefile for: dangerdeep
|
|
# Date created: 2005-10-28
|
|
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dangerdeep
|
|
PORTVERSION= 0.2.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Open source World War II German submarine simulation
|
|
|
|
BUILD_DEPENDS= scons:${PORTSDIR}/devel/scons
|
|
LIB_DEPENDS= fftw3.4:${PORTSDIR}/math/fftw3 \
|
|
execinfo.1:${PORTSDIR}/devel/libexecinfo
|
|
RUN_DEPENDS= ${LOCALBASE}/share/${PORTNAME}/maps/default.xml:${PORTSDIR}/games/dangerdeep-data
|
|
|
|
USE_GL= yes
|
|
USE_SDL= sdl mixer image net
|
|
|
|
MAKE_ENV= CC="${CC}" CXX="${CXX}"
|
|
SCONS_ARGS= installbindir=${PREFIX}/bin installdatadir=${DATADIR}
|
|
|
|
PLIST_FILES= bin/dangerdeep bin/crosssection bin/damagemodel \
|
|
bin/oceantest bin/portal bin/viewmodel
|
|
PLIST_DIRS= %%DATADIR%%
|
|
|
|
MAN6= dangerdeep.6
|
|
PORTDOCS= CREDITS README
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
IGNORE= does not build on FreeBSD 4.x
|
|
.endif
|
|
|
|
.if defined(PACKAGE_BUILDING)
|
|
SCONS_ARGS+= usex86sse=-1 # disable MMX/SSE on the build cluster
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/share/games/dangerdeep|${DATADIR}|; \
|
|
s|Linux|"Danger from the Deep"|' ${WRKSRC}/doc/man/dangerdeep.6
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} scons ${SCONS_ARGS}
|
|
|
|
do-install:
|
|
@cd ${WRKSRC}/build/freebsd && \
|
|
${INSTALL_PROGRAM} dangerdeep crosssection damagemodel oceantest \
|
|
portal viewmodel ${PREFIX}/bin
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/doc/man/dangerdeep.6 ${PREFIX}/man/man6
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|