75c39842e8
Mednaffe is a graphical front-end for the Mednafen multi-system emulator. It allows all of Mednafen's options to be configured, and provides simple game management features.
17 lines
417 B
Makefile
17 lines
417 B
Makefile
# $NetBSD: options.mk,v 1.1 2019/07/07 13:32:18 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mednaffe
|
|
PKG_OPTIONS_REQUIRED_GROUPS= gtk
|
|
PKG_OPTIONS_GROUP.gtk= gtk3 gtk2
|
|
PKG_SUGGESTED_OPTIONS= gtk3
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk3)
|
|
CONFIGURE_ARGS+= --enable-gtk3
|
|
.include "../../x11/gtk3/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk2)
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.endif
|