forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
40 lines
1 KiB
Makefile
40 lines
1 KiB
Makefile
# Created by: David Yeske <dyeske@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= reallyslick
|
|
PORTVERSION= 0.9.1
|
|
PORTREVISION= 22
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/rss-glx/rss-glx/${PORTVERSION}
|
|
DISTNAME= rss-glx_${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= OpenGL screensaver collection
|
|
|
|
LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick6 \
|
|
libGLC.so:graphics/quesoglc
|
|
|
|
USES= compiler:c++11-lang gmake pathfix pkgconfig tar:bzip2 libtool
|
|
USE_GL= glut
|
|
GNU_CONFIGURE= yes
|
|
|
|
CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
|
|
CXXFLAGS_clang= -Wno-c++11-narrowing
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib -lXext
|
|
|
|
OPTIONS_DEFINE= FREEALUT GLEW
|
|
|
|
FREEALUT_DESC= Enable freealut support
|
|
FREEALUT_CONFIGURE_ENABLE= sound
|
|
FREEALUT_USES= openal:alut
|
|
FREEALUT_VARS= LLD_UNSAFE=yes # cf. PR 226980
|
|
|
|
GLEW_DESC= Enable GLEW support
|
|
GLEW_USE= GL=glew
|
|
GLEW_CONFIGURE_ENV_OFF= ac_cv_header_GL_glew_h=no
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} '/LINK.*pixelcity/s/LINK/CXXLINK/' ${WRKSRC}/src/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|