1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

- port requires data installation

PR:	170719
Submitted by:	maintainer, nemysis@gmx.ch
This commit is contained in:
Jason Helfman 2012-08-21 08:45:50 +00:00
parent 9c4246bd07
commit 61e223b238
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=302849

View File

@ -7,6 +7,7 @@
PORTNAME= asteroids3d
PORTVERSION= 0.5.1
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= SF/a3d/${PORTVERSION}/ \
LOCAL/madpilot/asteroids3d/:icons
@ -44,17 +45,20 @@ pre-configure:
post-patch:
@${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|g' ${WRKSRC}/autogen.sh
.include <bsd.port.options.mk>
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME:S/3d/3D/} ${PREFIX}/bin/${PORTNAME}
# Pixmaps
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png ${PREFIX}/share/pixmaps
# Data
.if !defined(NOPORTDATA)
${MKDIR} ${DATADIR}
@(cd ${WRKSRC}/src && ${COPYTREE_SHARE} "*.ub *.ppm" ${DATADIR})
.endif
# Pixmaps
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png ${PREFIX}/share/pixmaps
# Documentation
.if !defined(NOPORTDOCS)
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.html ${DOCSDIR}
.endif