summaryrefslogtreecommitdiff
path: root/cad/netgen/Makefile
blob: 18d8afc26f9a9d5a914abb9198f3f4d55d5e86d3 (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
# Created by: Thierry Thomas <thierry@FreeBSD.org>
# $FreeBSD$

PORTNAME=	netgen
PORTVERSION=	5.0.0
PORTREVISION=	1
CATEGORIES=	cad
MASTER_SITES=	SF/netgen-mesher/netgen-mesher/${PORTVERSION:S|.0$||}/

MAINTAINER=	stephen@FreeBSD.org
COMMENT=	Automatic 3D tetrahedral mesh generator

LIB_DEPENDS=	libTix8.4.3.so:${PORTSDIR}/x11-toolkits/tix \
		libjpeg.so:${PORTSDIR}/graphics/jpeg \
		libtogl.so:${PORTSDIR}/graphics/togl

USE_LDCONFIG=	yes
USES=		gmake tk
USE_GL=		yes
USE_XORG=	xmu xi
GNU_CONFIGURE=	yes
MAKE_JOBS_UNSAFE=	yes
LDFLAGS+=	-L${LOCALBASE}/lib
CPPFLAGS+=	-I${LOCALBASE}/include -I${TCL_INCLUDEDIR} -I${TK_INCLUDEDIR} -I${LOCALBASE}/lib/Togl-1.7
CONFIGURE_ARGS+=	--with-tcl=${TCL_LIBDIR} --with-tk=${TK_LIBDIR} --enable-jpeglib

FETCH_BEFORE_ARGS+=	-o ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}

OPTIONS_DEFINE=		OCC FFMPEG
OCC_DESC=		Compile with OpenCascade geometry kernel
FFMPEG_DESC=		video recording with FFmpeg
OPTIONS_DEFAULT=	OCC

BROKEN_sparc64=	internal gcc error (Bug 23159)
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MOCC}
LIB_DEPENDS+=	libTKernel.so:${PORTSDIR}/cad/opencascade
CXXFLAGS+=	-DOCCGEOMETRY -DHAVE_CONFIG_H -D${ARCH} -I${LOCALBASE}/include/OpenCASCADE
CONFIGURE_ARGS+=	--enable-occ
.endif

.if ${PORT_OPTIONS:MFFMPEG}
LIB_DEPENDS+=	libavcodec.so:${PORTSDIR}/multimedia/ffmpeg
CONFIGURE_ARGS+=	--enable-ffmpeg
.endif

MACHINE=	${OPSYS:U}

SUB_LIST=	PREFIX=${PREFIX}
SUB_FILES=	pkg-message
MAKE_ENV=	TK_VER=${TK_VER} TCL_VER=${TCL_VER}	\
		TCL_INCLUDEDIR="${TCL_INCLUDEDIR}"	\
		TK_INCLUDEDIR="${TK_INCLUDEDIR}"	\
		MACHINE=${MACHINE} MAKE=${GMAKE}

pre-configure:
	${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|"		\
		${WRKSRC}/ng/ngappinit.cpp

post-install:
#	copy some additional headers for build cad/salome-netgenplugin
	${MKDIR} ${STAGEDIR}${DATADIR}/include
	${SH} ${FILESDIR}/netgen_copy_include_for_salome ${WRKSRC} ${STAGEDIR}${PREFIX}
	${LN} ${STAGEDIR}${PREFIX}/lib/libnglib.so ${STAGEDIR}${PREFIX}/lib/libnglib.so.1
	${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>