blob: 206f759fdb56046ed63a0dd156d10d74cde5a30b (
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
|
# $NetBSD: options.mk,v 1.1 2010/12/17 02:47:18 asau Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mpich
PKG_SUPPORTED_OPTIONS= debug mpich-mpd threads
PKG_SUGGESTED_OPTIONS= threads
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-g=debug # problems
INSTALL_UNSTRIPPED= yes
.endif
.if !empty(PKG_OPTIONS:Mthreads)
CONFIGURE_ARGS+= --with-thread-package=posix # aka pthreads
.include "../../mk/pthread.buildlink3.mk"
.endif
# Allow coexistance of MPICH2 and musicpd by disabling MPICH2 parts:
.if !empty(PKG_OPTIONS:Mmpich-mpd)
CONFLICTS+= musicpd-[0-9]* # installs bin/mpd
REPLACE_PYTHON+= src/pm/mpd/*.py src/pm/mpd/test/*.py
CONFIGURE_ARGS+= --with-pm=hydra:mpd:gforker
PLIST_SRC+= PLIST.mpd
.include "../../lang/python/application.mk"
.endif
PLIST_SRC+= PLIST
|