freebsd-ports/benchmarks/linux-unigine-heaven/Makefile
Alexey Dokuchaev 46f126d48b benchmarks/linux-unigine-{heaven,valley}: the ports had been improved (+)
- Add missing dependency for playing music: USE_LINUX+=openal-soft
- In the `do-extract', rather than changing current directory, pass it to
  tar(1) as a -C argument and don't needlessly use semi-private _DISTDIR
  variable: this makes the command shorter and avoids bogus double slash
  in the build log
- Provide more user-friendly wrapper script which anticipates potential
  problems that typically affect running this program and advises on how
  to solve them
- Spell GNU/Linux correctly in the COMMENT and port description; reformat
  the latter with `fmt -w 75' for better looks (less ragged right edge)
2021-11-22 10:31:59 +00:00

46 lines
1.4 KiB
Makefile

# Created by: Hannes Hauswedell <h2+fbsdports@fsfe.org>
PORTNAME= unigine-heaven
PORTVERSION= 4.0
PORTREVISION= 4
CATEGORIES= 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 for GNU/Linux)
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 openal-soft xorglibs
USE_LDCONFIG= yes
NO_BUILD= yes
SHEBANG_FILES= heaven
bash_CMD= ${LINUXBASE}/bin/bash
SUB_FILES= wrapper.sh
DESKTOP_ENTRIES="Unigine Heaven" "${COMMENT}" "${DATADIR}/data/launcher/icon.png" \
"${PKGNAMEPREFIX}${PORTNAME}" "Game;" false
do-extract:
@${MKDIR} ${WRKSRC}
@${TAIL} -n 1097642 ${DISTDIR}/${DISTFILES} | ${TAR} xzf - -C ${WRKSRC}
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh \
${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>