blob: 05856e4c9346e7fe2f311bb6a116cd4fccdc35ca (
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
|
# $NetBSD: options.mk,v 1.3 2012/06/12 23:36:31 asau Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.openmpi
PKG_SUPPORTED_OPTIONS= debug openmpi-vampirtrace
PKG_SUGGESTED_OPTIONS= openmpi-vampirtrace
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
# Allow coexistance of OpenMPI and libotf by disabling OpenMPI parts:
.if !empty(PKG_OPTIONS:Mopenmpi-vampirtrace)
CONFLICTS+= libotf-[0-9]*
PLIST_SRC+= PLIST.vt
CONF_FILES+= share/vampirtrace/VampirTrace/examples/vt-java-default-filter.spec \
$(PKG_SYSCONFDIR)/vt-java-default-filter.spec
.include "../../graphics/freetype2/buildlink3.mk"
.else
CONFIGURE_ARGS+= --enable-contrib-no-build=vt
.endif
PLIST_SRC+= PLIST
|