mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
4c96e38f5d
only port it's not known what that means. A timestamp in the selfextractor script is now a couple of hours after the previous one so it may simply be a release+facepalm+fix+rerelease. At least it is downloaded from the official site now. - Fix portlint warnings. - Add a .desktop file. - Change startup script so it runs the 64-bit version on amd64. PR: 239783 Submitted by: Hannes Hauswedell <h2+fbsdports@fsfe.org> (maintainer)
47 lines
1.5 KiB
Makefile
47 lines
1.5 KiB
Makefile
# Created by: Hannes Hauswedell <h2+fbsdports@fsfe.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= unigine-heaven
|
|
PORTVERSION= 4.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= games benchmarks linux
|
|
MASTER_SITES= https://assets.unigine.com/d/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= Unigine_Heaven-${PORTVERSION}
|
|
EXTRACT_SUFX= .run
|
|
|
|
MAINTAINER= h2+fbsdports@fsfe.org
|
|
COMMENT= Unigine Heaven Benchmark, basic version, linux binaries
|
|
|
|
LICENSE= Proprietary
|
|
LICENSE_NAME= Unigine "Basic" License
|
|
LICENSE_TEXT= Binary only, License text not available. Free-to-use + no-redistribution implied from homepage
|
|
LICENSE_PERMS= no-dist-sell no-pkg-sell no-dist-mirror no-pkg-mirror
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
USES= linux shebangfix
|
|
USE_LINUX= dri xorglibs
|
|
USE_LDCONFIG= yes
|
|
NO_BUILD= yes
|
|
|
|
SHEBANG_FILES= heaven
|
|
bash_CMD= ${LINUXBASE}/bin/bash
|
|
|
|
DESKTOP_ENTRIES="Unigine Heaven" "${COMMENT}" "${DATADIR}/data/launcher/icon.png" \
|
|
"${PKGNAMEPREFIX}${PORTNAME}" "Game;" false
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
cd ${WRKSRC} && ${TAIL} -n 1097642 ${_DISTDIR}/${DISTFILES} | ${TAR} zxf -
|
|
${PRINTF} '#!/bin/sh\ncd ${DATADIR}\nexec\
|
|
${LINUXBASE}/bin/bash ./heaven\n' > ${WRKDIR}/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PKGNAMEPREFIX}${PORTNAME}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} ./data ${STAGEDIR}${DATADIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} ./bin ${STAGEDIR}${DATADIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} ./documentation ${STAGEDIR}${DATADIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/heaven ${STAGEDIR}${DATADIR}/heaven
|
|
|
|
.include <bsd.port.mk>
|