pkgsrc/devel/qconf/options.mk
nros 8512372dfd Update qconf to version 2.0
The only difference that I could find between this and the earlier
version is that this one builds with Qt5. Due to this a qt5 package
option has been added that allows the package to be built with Qt5.
2016-03-09 23:21:29 +00:00

15 lines
389 B
Makefile

# $NetBSD: options.mk,v 1.1 2016/03/09 23:21:29 nros Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.qconf
PKG_OPTIONS_REQUIRED_GROUPS= qt
PKG_OPTIONS_GROUP.qt = qt4 qt5
PKG_SUGGESTED_OPTIONS= qt4
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mqt5)
.include "../../x11/qt5-qtbase/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mqt4)
.include "../../x11/qt4-tools/buildlink3.mk"
.endif