mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
a9f015d155
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= solarwolf
|
|
PORTVERSION= 1.5
|
|
PORTREVISION= 12
|
|
CATEGORIES= games
|
|
MASTER_SITES= https://www.pygame.org/shredwheat/solarwolf/
|
|
|
|
MAINTAINER= mail@maxlor.com
|
|
COMMENT= Action/arcade game originally based of SolarFox on the Atari 2600
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/lgpl.txt
|
|
|
|
RUN_DEPENDS= ${PYGAME}
|
|
|
|
USES= python:2.7 shebangfix
|
|
SHEBANG_FILES= solarwolf.py
|
|
|
|
DESKTOP_ENTRIES= "SolarWolf" "${COMMENT}" "solarwolf" \
|
|
"solarwolf" "Game;ArcadeGame;" false
|
|
|
|
do-build:
|
|
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/solarwolf
|
|
(cd ${WRKSRC}; tar -cf - --exclude ".xvpics" --exclude "dist" .) | \
|
|
(cd ${STAGEDIR}${PREFIX}/share/solarwolf; tar --unlink -xf -)
|
|
${PRINTF} "#!/bin/sh\nexec ${PYTHON_CMD} ${PREFIX}/share/solarwolf/solarwolf.py\n" \
|
|
> ${STAGEDIR}${PREFIX}/bin/solarwolf
|
|
${CP} ${WRKSRC}/dist/solarwolf.6.gz ${STAGEDIR}${MAN6PREFIX}/man/man6/
|
|
${CP} ${WRKSRC}/dist/solarwolf.png ${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
.include <bsd.port.mk>
|