mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 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, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# Created by: Kirill Ponomarew <krion@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= shaaft
|
|
PORTVERSION= 0.5.0
|
|
PORTREVISION= 20
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/criticalmass/OldFiles
|
|
DISTNAME= Shaaft-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= OpenGL 3D falling block game similar to Blockout
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png
|
|
|
|
CONFLICTS= criticalmass-*
|
|
|
|
BROKEN_aarch64= fails to compile: error: conflicting declaration typedef int GLintptrARB
|
|
BROKEN_sparc64= does not compile
|
|
|
|
USES= tar:bzip2
|
|
USE_SDL= mixer image sdl
|
|
USE_GL= yes
|
|
USE_GCC= any
|
|
USE_CXXSTD= gnu++98
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-optimize
|
|
|
|
CPPFLAGS+= $$(libpng-config --I_opts)
|
|
LDFLAGS+= $$(libpng-config --L_opts)
|
|
|
|
DATADIR= ${PREFIX}/share/Shaaft
|
|
|
|
PLIST_FILES= bin/Packer bin/shaaft %%DATADIR%%/resource.dat \
|
|
man/man6/shaaft.6.gz
|
|
|
|
DESKTOP_ENTRIES="Shaaft" "" "" "${PORTNAME}" "" ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG:T}|g ; \
|
|
s|^CXXFLAGS|#CXXFLAGS|g ; \
|
|
s|/usr/X11R6|${LOCALBASE}|g ; \
|
|
s|-lSDL | |g ; \
|
|
s|-lpng12|-lpng|g' ${WRKSRC}/configure
|
|
@${GREP} -lR "SDL/SDL" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|SDL/SDL|SDL|g'
|
|
@${REINPLACE_CMD} -e 's|== 3|>= 3|' ${WRKSRC}/utils/hashMap.hpp
|
|
|
|
.include <bsd.port.mk>
|