blob: d0eb79be3e59661d3e6cd0c0500ee9e0ec574779 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Created by: Yuri Victorovich <yuri@rawbw.com>
# $FreeBSD$
PORTNAME= dilay
PORTVERSION= 1.5.0
PORTREVISION= 1
CATEGORIES= graphics
MAINTAINER= yuri@rawbw.com
COMMENT= 3D sculpting application
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm
USE_GITHUB= yes
GH_ACCOUNT= abau
USES= compiler:c++14-lang gmake qmake
USE_CXXSTD= c++14
USE_GL= gl
USE_QT5= core gui opengl widgets xml buildtools_build
# Workaround for: Parallel build fails (https://github.com/abau/dilay/issues/19)
MAKE_JOBS_UNSAFE=yes
# Workaround for: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210327
QMAKE_ARGS+= QMAKE_CXXFLAGS_CXX11=
PLIST_FILES= bin/dilay
.include <bsd.port.mk>
|