defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
32 lines
795 B
Makefile
32 lines
795 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dilay
|
|
DISTVERSION= 1.9.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= 3D sculpting application
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm
|
|
|
|
USES= compiler:c++14-lang gmake qmake qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= abau
|
|
USE_CXXSTD= c++14
|
|
USE_GL= gl
|
|
USE_QT= core gui opengl widgets xml buildtools_build
|
|
|
|
MAKE_JOBS_UNSAFE= yes # Workaround for: https://github.com/abau/dilay/issues/19 parallel build fails (still a problem despite having been closed)
|
|
|
|
PLIST_FILES= bin/dilay \
|
|
share/applications/dilay.desktop
|
|
.for sz in 16 32 48 256
|
|
PLIST_FILES+= share/icons/hicolor/${sz}x${sz}/apps/dilay.png
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|