1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00
freebsd-ports/games/golly/Makefile
Fernando Apesteguía 567bb6d2b4 games/golly: update to 3.3
* Remove patch included upstream
* While here convert to USES=localbase and USES=xorg

ChangeLog: http://golly.sourceforge.net/Help/changes.html

Reported by:	portscout
2019-10-18 15:30:13 +00:00

42 lines
1.0 KiB
Makefile

# $FreeBSD$
PORTNAME= golly
PORTVERSION= 3.3
DISTVERSIONSUFFIX= -src
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Conway's Game of Life and other cellular automata
LICENSE= GPLv2+
USES= compiler:c++11-lib gl localbase python:2.7 xorg
USE_GL= gl glu
USE_WX= 3.0+
GNU_CONFIGURE= yes
# Pretend objdump is available even if it is not e.g. on aarch64.
# The Python shared library name is already looked up via
# distutils.sysconfig.get_config_var("LDLIBRARY") which is unlikely
# to fail; objdump is never actually used.
CONFIGURE_ARGS= ac_cv_prog_OBJDUMP=/usr/bin/false \
--with-wx-config=${WX_CONFIG:T}
DESKTOP_ENTRIES= "Golly" \
"${COMMENT}" \
"${PREFIX}/share/pixmaps/golly.xpm" \
"${PREFIX}/bin/golly" \
"Education;" \
""
WRKSRC_SUBDIR= gui-wx/configure
OPTIONS_DEFINE= DOCS
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps
${INSTALL_DATA} ${WRKSRC}/../icons/appicon.xpm \
${STAGEDIR}${PREFIX}/share/pixmaps/golly.xpm
.include <bsd.port.mk>