50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# Created by: Jean-Yves Lefort <jylefort@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= virtual-jay-peak
|
|
PORTVERSION= 1.1a
|
|
CATEGORIES= games linux
|
|
MASTER_SITES= http://www.soulride.com/products/images/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= virtual_jay_peak_linux_1_1a
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A simulation of snowboarding at the Jay Peak resort in Vermont
|
|
|
|
WRKSRC= ${WRKDIR}/soulride
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_LINUX= yes
|
|
USE_LINUX_APPS= xorglibs
|
|
NO_BUILD= yes
|
|
SUB_FILES= virtual-jay-peak
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/virtual-jay-peak ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/soulride-static ${PREFIX}/libexec
|
|
|
|
${MKDIR} ${DATADIR}
|
|
.for d in Recordings data
|
|
${CP} -R ${WRKSRC}/${d} ${DATADIR}
|
|
.endfor
|
|
|
|
-${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR}/*
|
|
${FIND} ${DATADIR}/* -type f -exec ${CHMOD} ${SHAREMODE} {} \;
|
|
${FIND} ${DATADIR}/* -type d -exec ${CHMOD} ${BINMODE} {} \;
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in readme-jay_peak.txt readme-linux.txt
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_NVIDIA_GL)
|
|
RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver
|
|
.else
|
|
USE_LINUX_APPS+=dri
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|