diff options
author | gutteridge <gutteridge@pkgsrc.org> | 2020-11-05 01:04:52 +0000 |
---|---|---|
committer | gutteridge <gutteridge@pkgsrc.org> | 2020-11-05 01:04:52 +0000 |
commit | 14d443e03e02ee8ece1c1f42ab53de6846c341b9 (patch) | |
tree | b62c92300d04f09110c395193dc1a84081255e37 /devel | |
parent | 63e0463a4edb0763dd080364f00d1c54f2d9b16b (diff) | |
download | pkgsrc-14d443e03e02ee8ece1c1f42ab53de6846c341b9.tar.gz |
geany: adjust options to the new norm of GTK3 by default
Diffstat (limited to 'devel')
-rw-r--r-- | devel/geany/options.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/geany/options.mk b/devel/geany/options.mk index 7cec56bce91..c7d6414d8ba 100644 --- a/devel/geany/options.mk +++ b/devel/geany/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.3 2019/04/04 04:13:51 gutteridge Exp $ +# $NetBSD: options.mk,v 1.4 2020/11/05 01:04:52 gutteridge Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.geany PKG_OPTIONS_REQUIRED_GROUPS+= toolkit @@ -12,10 +12,10 @@ PLIST_VARS+= gtk2 gtk3 .if !empty(PKG_OPTIONS:Mgtk3) .include "../../graphics/adwaita-icon-theme/buildlink3.mk" .include "../../x11/gtk3/buildlink3.mk" -CONFIGURE_ARGS+= --enable-gtk3 +# No CONFIGURE_ARGS needed, it's the default PLIST.gtk3= yes .else .include "../../x11/gtk2/buildlink3.mk" -# No CONFIGURE_ARGS needed, it's the default +CONFIGURE_ARGS+= --enable-gtk2 PLIST.gtk2= yes .endif |