1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00
freebsd-ports/games/golly/Makefile
Nuno Teixeira 6bdfe8cb0f games/golly: Update to 4.2
- Switch to DISTVERSION
- Define LICENSE_FILE
- Take maintainership

Changes: https://golly.sourceforge.io/Help/changes.html
2023-07-15 21:35:09 +01:00

53 lines
1.3 KiB
Makefile

PORTNAME= golly
DISTVERSION= 4.2
DISTVERSIONSUFFIX= -src
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= eduardo@FreeBSD.org
COMMENT= Conway's Game of Life and other cellular automata
WWW= http://golly.sourceforge.net/
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/../docs/License.html
USES= gl gmake localbase python sdl
USE_GL= gl
USE_SDL= sdl2
USE_WX= 3.2
MAKEFILE= makefile-gtk
BINARY_ALIAS= g++=${CC} python3=${PYTHON_CMD} wx-config=${WX_CONFIG}
DESKTOP_ENTRIES= "Golly" \
"${COMMENT}" \
"${PREFIX}/share/pixmaps/golly.xpm" \
"${PREFIX}/bin/golly" \
"Education;" \
""
PATCH_WRKSRC= ${WRKSRC}/..
WRKSRC_SUBDIR= gui-wx
PLIST_FILES= bin/bgolly \
bin/golly \
share/pixmaps/golly.xpm
PORTDATA= Help Patterns Rules Scripts
pre-build:
@${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|g' \
${WRKSRC}/wxmain.cpp ${WRKSRC}/wxhelp.cpp
# There is no install target at makefile-gtk
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/../golly ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/../bgolly ${STAGEDIR}${PREFIX}/bin
(cd ${WRKSRC}/.. && ${COPYTREE_SHARE} "${PORTDATA}" ${STAGEDIR}${DATADIR})
@${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps
${INSTALL_DATA} ${WRKSRC}/icons/appicon.xpm \
${STAGEDIR}${PREFIX}/share/pixmaps/golly.xpm
.include <bsd.port.mk>