summaryrefslogtreecommitdiff
path: root/x11-toolkits/vtkfox/Makefile
blob: 4e98a11245f8900ea5e438fbf5a4d999ce120877 (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
# Created by: gahr
# $FreeBSD$

PORTNAME=	vtkfox
PORTVERSION=	1.0.0
PORTREVISION=	4
CATEGORIES=	x11-toolkits
MASTER_SITES=	http://www.gahr.ch/vtkfox/

MAINTAINER=	gahr@FreeBSD.org
COMMENT=	FOX/VTK Widget and Interactor

LIB_DEPENDS=	vtkCommon.5:${PORTSDIR}/math/vtk5

OPTIONS_SINGLE=	FOX
OPTIONS_SINGLE_FOX=	FOX16 FOX17
FOX16_DESC=	Link against FOX-1.6
FOX17_DESC=	Link against FOX-1.7
OPTIONS_DEFAULT=FOX16

USE_GITHUB=	yes
GH_ACCOUNT=	gahr
GH_COMMIT=	378836c

NO_STAGE=	yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MFOX16}
LIB_DEPENDS+=	FOX-1.6:${PORTSDIR}/x11-toolkits/fox16
.endif

.if ${PORT_OPTIONS:MFOX17}
LIB_DEPENDS+=	FOX-1.7:${PORTSDIR}/x11-toolkits/fox17
CMAKE_ARGS+=	-DFOX17:BOOL=TRUE
.endif

USES=		cmake:outsource pkgconfig
USE_LDCONFIG=	yes

PLIST_FILES=	include/vtkfox/FXVTKCanvas.h \
		include/vtkfox/vtkFXRenderWindowInteractor.h \
		include/vtkfox/vtkfox.h \
		lib/libvtkfox.so \
		lib/libvtkfox.so.1 \
		libdata/pkgconfig/vtkfox.pc
PLIST_DIRS=	include/vtkfox

post-patch:
.if defined(NOPORTEXAMPLES)
	${REINPLACE_CMD} -e 's| tests||' ${WRKSRC}/CMakeLists.txt
.endif

.if !defined(NOPORTEXAMPLES)
SAMPLE_FILES=	imgsurf double cone quad xyplot simple
PORTEXAMPLES=	*

post-install:
	@${MKDIR} ${EXAMPLESDIR}
.for sample_file in ${SAMPLE_FILES}
	@${INSTALL_DATA} ${WRKSRC}/tests/${sample_file}.cpp ${EXAMPLESDIR}
	@${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/tests/${sample_file} ${EXAMPLESDIR}
.endfor
.endif

.include <bsd.port.mk>