freebsd-ports/games/dangerdeep/Makefile
Ion-Mihai Tetcu 3a32999175 Update to 0.1.1
New Changes in dangerdeep:
- new SSE intrinsic code for x86/64 and x86/32
- new sky rendering
- MSVC compile fixes
- new font and some gui changes
- display per torpedo info
- sensor detection code once per second, not once per frame, improves performance
- convoy fixes (position simulation)
- added mission editor
- added Kennebac class tanker
- fixed widget bugs
- more data per model (country etc.)
- fixed some models
- new panel (smaller), new message display (nicer)
- fixes for popups
- new popup: rangefinder card
- shader fixes
- new vessel preview
- added doxygen documentation
- improved model format (with relations)
- fixes for compatibility with newer drivers and OpenGL2.0
- improved water rendering (mirror distorsion effect)
- TDC improvements
- Parallax angle computation and display
- new faulthandler for debugging segfaults
- load/save format changed to xml based data
- better perlin noise generation
- new sounds and music
- new background images for menues

PR:		ports/95767
Submitted by:	Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> (maintainer)
Approved by:	lawrance (mentor)
2006-05-09 10:04:21 +00:00

75 lines
2 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.1.1
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= dangerdeep
MAINTAINER= acardenas@bsd.org.pe
COMMENT= Open source World War II German submarine simulation
BUILD_DEPENDS= scons:${PORTSDIR}/devel/scons
LIB_DEPENDS= fftw3.3:${PORTSDIR}/math/fftw3 \
execinfo.1:${PORTSDIR}/devel/libexecinfo
USE_X_PREFIX= yes
USE_GL= yes
USE_SDL= sdl mixer image net
MAKE_ENV= CC="${CC}" CXX="${CXX}"
SCONS_ARGS= installbindir=${PREFIX}/bin installdatadir=${DATADIR}
PLIST= ${WRKDIR}/pkg-plist
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}
pre-install:
@${RM} -f ${PLIST}
@cd ${WRKSRC}/data && \
${FIND} * -type f | ${SORT} | ${SED} -e 's|^|%%DATADIR%%/|' >> ${PLIST} && \
${FIND} * -type d | ${SORT} -r | ${SED} -e 's|^|@dirrm %%DATADIR%%/|' >> ${PLIST}
do-install:
@cd ${WRKSRC}/build/freebsd && \
${INSTALL_PROGRAM} dangerdeep crosssection damagemodel oceantest \
portal viewmodel ${PREFIX}/bin
cd ${WRKSRC}/data && \
${FIND} * -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \
${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \;
${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>