c6f4d7ac65
* Bug fixes: 677609 GtkSizeGroup regression in GTK+ 3.3.20 686021 spinner animation should not be subject to... 686265 scrolledwindow: set GDK_EXPOSURE_MASK on t... 686280 GtkScrollbar and GtkScale rendering broken... 687196 filesystemmodel: invalidate nodes on file ... 687467 Commit "Implement proper cross-fades for g... 687872 Segfault when attempting to get character ... * Translation updates: Irish Traditional Chinese
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# $NetBSD: options.mk,v 1.4 2012/11/13 21:55:27 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gtk3
|
|
PKG_SUPPORTED_OPTIONS= cups debug
|
|
PKG_OPTIONS_REQUIRED_GROUPS= gdk-target
|
|
PKG_OPTIONS_GROUP.gdk-target= x11
|
|
.if exists(/System/Library/Frameworks/Quartz.framework)
|
|
PKG_OPTIONS_GROUP.gdk-target+= quartz
|
|
.endif
|
|
PKG_SUGGESTED_OPTIONS= x11
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= cups
|
|
.if !empty(PKG_OPTIONS:Mcups)
|
|
.include "../../print/cups/buildlink3.mk"
|
|
PLIST.cups= yes
|
|
.else
|
|
CONFIGURE_ENV+= ac_cv_path_CUPS_CONFIG=no
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug=yes
|
|
.endif
|
|
|
|
###
|
|
### GDK target
|
|
###
|
|
PLIST_VARS+= quartz x11
|
|
.if !empty(PKG_OPTIONS:Mquartz)
|
|
CONFIGURE_ARGS+= --without-x
|
|
CONFIGURE_ARGS+= --enable-quartz-backend
|
|
PLIST.quartz= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --with-xinput=xfree
|
|
CONFIGURE_ENV+= ac_cv_header_X11_extensions_Xinerama_h=no
|
|
CONFIGURE_ENV+= ac_cv_lib_Xinerama_XineramaQueryExtension=no
|
|
PLIST.x11= yes
|
|
|
|
BUILDLINK_API_DEPENDS.at-spi2-atk+= at-spi2-atk>=2.6.1
|
|
BUILDLINK_API_DEPENDS.Xft2+= Xft2>=2.1.2nb2
|
|
|
|
.include "../../devel/at-spi2-atk/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXcursor/buildlink3.mk"
|
|
.include "../../x11/libXft/buildlink3.mk"
|
|
.include "../../x11/libXfixes/buildlink3.mk"
|
|
.include "../../x11/libXinerama/buildlink3.mk"
|
|
.include "../../x11/libXi/buildlink3.mk"
|
|
.include "../../x11/libXrandr/buildlink3.mk"
|
|
.include "../../x11/libXrender/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/libXcomposite/buildlink3.mk"
|
|
|
|
.endif
|