in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542
40 lines
1 KiB
Makefile
40 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= goxel
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.7.1-70
|
|
PORTREVISION= 1
|
|
DISTVERSIONSUFFIX= -g193eded
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= greg@unrelenting.technology
|
|
COMMENT= Free and Open Source 3D Voxel Editor
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN_powerpc64= fails to build: sh: clang++: not found
|
|
|
|
LIB_DEPENDS= libargp.so:devel/argp-standalone \
|
|
libglfw.so:graphics/glfw \
|
|
libpng.so:graphics/png
|
|
|
|
USES= compiler:c++11-lang pkgconfig scons
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= guillaumechereau
|
|
USE_GNOME= cairo gtk30
|
|
USE_GL= gl
|
|
|
|
INSTALLS_ICONS= yes
|
|
MAKE_ARGS= clang=1 debug=0
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
.for SZ in 32 64 256
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${SZ}x${SZ}/apps
|
|
${INSTALL_DATA} ${WRKSRC}/osx/goxel/goxel/Assets.xcassets/AppIcon.appiconset/${SZ}.png \
|
|
${STAGEDIR}${PREFIX}/share/icons/hicolor/${SZ}x${SZ}/apps/goxel.png
|
|
.endfor
|
|
${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.desktop ${STAGEDIR}${DESKTOPDIR}
|
|
|
|
.include <bsd.port.mk>
|