pkgsrc-wip/milkytracker/options.mk
Jari Kuittinen 10dd704742 MilkyTracker is an open source, multi-platform music application for creating
.MOD and .XM module files. It attempts to recreate the module replay and user
experience of the popular DOS program Fasttracker II, with special playback
modes available for improved Amiga ProTracker 2/3 compatibility.
2008-05-24 05:30:58 +00:00

29 lines
679 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2008/05/24 05:30:58 jkuittinen Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.milkytracker
#PKG_SUPPORTED_OPTIONS= alsa jack jack-devel
PKG_SUPPORTED_OPTIONS= jack jack-devel
PKG_SUGGESTED_OPTIONS=
.include "../../mk/bsd.options.mk"
#.if !empty(PKG_OPTIONS:Malsa)
#CONFIGURE_ARGS+= --with-alsa
#.else
CONFIGURE_ARGS+= --without-alsa
#.endif
.if !empty(PKG_OPTIONS:Mjack) || !empty(PKG_OPTIONS:Mjack-devel)
CONFIGURE_ARGS+= --with-jack
.if !empty(PKG_OPTIONS:Mjack)
.include "../../audio/jack/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mjack-devel)
.include "../../audio/jack-devel/buildlink3.mk"
.endif
.else
CONFIGURE_ARGS+= --without-jack
.endif