aboutsummaryrefslogtreecommitdiffstats
path: root/cad/gmsh/Makefile
blob: fb6e05085c8814cbc9f28b62e67de3195bbbc564 (plain) (blame)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Created by: Pedro Giffuni <giffunip@asme.org>
# $FreeBSD$

PORTNAME=   gmsh
PORTVERSION=    2.15.0
CATEGORIES= cad
MASTER_SITES=   http://gmsh.info/src/
DISTNAME=   ${PORTNAME}-${PORTVERSION}-source
DIST_SUBDIR=    gmsh

MAINTAINER= jrm@FreeBSD.org
COMMENT?=   Automatic 3D finite element mesh generator

LICENSE=    AGPLv3+ APACHE20 GPLv3+ GPLv2+ LGPL21
LICENSE_COMB=   multi
LICENSE_FILE_GPLv2+ = ${WRKSRC}/doc/LICENSE.txt

LIB_DEPENDS=    libfltk.so:x11-toolkits/fltk \
        libfontconfig.so:x11-fonts/fontconfig \
        libgmp.so:math/gmp \
        libhdf5.so:science/hdf5 \
        libpng.so:graphics/png \
        libsz.so:science/szip
RUN_DEPENDS=    getdp:science/getdp

BROKEN_powerpc64=Does not build on powerpc64
BROKEN_FreeBSD_12_i386=Does not build on FreeBSD 12 i386 due to a clang bug: https://llvm.org/bugs/show_bug.cgi?id=21903

SLAVEDIRS=  cad/gmsh-occ

USES=       blaslapack cmake fortran gmake jpeg tar:tgz
USE_GL=     gl glu
USE_XORG=   x11 xcursor xext xinerama xfixes xft

MAKE_JOBS_UNSAFE=yes

CMAKE_ARGS= -DCMAKE_SKIP_RPATH:BOOL=YES

OPTIONS_DEFINE= CGNS MED OCC SHARED STATIC
OPTIONS_DEFAULT=MED

CGNS_DESC=  Enable experimental CGNS mesh support
MED_DESC=   Enable MED mesh and post file formats
OCC_DESC=   Enable Open CASCADE geometrical models
SHARED_DESC=    Build shared library and install header files
STATIC_DESC=    Build static library

OPTIONS_SUB=    yes
PLIST_SUB=  VER=${PORTVERSION} VE=${PORTVERSION:R}

# TODO
# Dependencies against PythonLibs, swig and petsc are found and registered if
# installed
# => add knobs to handle them.

CGNS_CMAKE_BOOL=    ENABLE_CGNS
CGNS_LIB_DEPENDS=   libcgns.so:science/cgnslib
DOCS_CMAKE_BOOL=    INSTALL_DOCS
MED_CMAKE_BOOL=     ENABLE_MED
MED_LIB_DEPENDS=    libmed.so:french/med
OCC_CFLAGS=     -DHAVE_CONFIG_H -DHAVE_WOK_CONFIG_H -DFREEBSD
OCC_CMAKE_BOOL=     ENABLE_OCC
OCC_CMAKE_ON=       -DOCC_INC=${LOCALBASE}/include/OpenCASCADE
OCC_CONFLICTS=      gmsh-2.*
OCC_CONFLICTS_OFF=  gmsh-occ-2.*
OCC_LIB_DEPENDS=    libopenblas.so:math/openblas libTKernel.so:cad/opencascade
OCC_USE=        gnome=cairo
SHARED_ALL_TARGET=  shared
SHARED_CMAKE_BOOL=  ENABLE_BUILD_SHARED
SHARED_VARS=        USE_LDCONFIG=yes
STATIC_ALL_TARGET=  lib
STATIC_CMAKE_BOOL=  ENABLE_BUILD_LIB

post-patch:
    @${REINPLACE_CMD} -e "s|share/doc/gmsh|${DOCSDIR_REL}|" \
        -e 's|share/man/man1|man/man1|' ${WRKSRC}/CMakeLists.txt

.include <bsd.port.mk>