freebsd-ports/games/crashtest/Makefile
Dmitry Marakasov 07b0efaea7 - Add games/crashtest
Crashtest simulates car crashes. This is an educational tool that
can be used to acquire much insight into this complex process. The
user can learn about the relation between speed, reaction-time and
stopping distance. Also, many physical properties can be studied.

WWW: http://www.stolk.org/crashtest/
2016-11-14 15:10:20 +00:00

47 lines
1.2 KiB
Makefile

# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
# $FreeBSD$
PORTNAME= crashtest
PORTVERSION= 1.1
CATEGORIES= games
MASTER_SITES= http://www.stolk.org/crashtest/
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Educational crash simulator
BUILD_DEPENDS= ${LOCALBASE}/lib/libode.a:devel/ode \
${LOCALBASE}/lib/libplibul.a:x11-toolkits/plib
LIB_DEPENDS= libfltk.so:x11-toolkits/fltk
USE_GL= gl glu
BUILD_WRKSRC= ${WRKSRC}/src-crashtest
PORTDOCS= *
PORTDATA= *
PLIST_FILES= bin/${PORTNAME}
DESKTOP_ENTRIES="${PORTNAME}" \
"" \
"" \
"${PORTNAME}" \
"Game;Simulation;Physics;" \
""
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' ${WRKSRC}/src-crashtest/crashtest.cxx
do-install:
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
@${MKDIR} ${STAGEDIR}${DATADIR}/models
${INSTALL_DATA} ${WRKSRC}/models-crashtest/*.3ds ${STAGEDIR}${DATADIR}/models
${INSTALL_DATA} ${WRKSRC}/models-crashtest/*.ac ${STAGEDIR}${DATADIR}/models
${INSTALL_DATA} ${WRKSRC}/models-crashtest/*.bmp ${STAGEDIR}${DATADIR}/models
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${BUILD_WRKSRC}/README ${STAGEDIR}${DOCSDIR}/
.include <bsd.port.mk>