diff --git a/Mk/bsd.wx.mk b/Mk/bsd.wx.mk index 5831385fe61f..b71cc5c83999 100644 --- a/Mk/bsd.wx.mk +++ b/Mk/bsd.wx.mk @@ -1,517 +1,524 @@ # bsd.wx.mk - Support for wxWidgets based ports. # # # The following variables can be defined in a port that uses the wxWidgets # library, contributed libraries, WxPython and/or more wxWidgets related # components (with run and/or build dependencies). It can be used after and/or # before bsd.port.pre.mk, but Python components will only work if Python # variables (e.g. USE_PYTHON) are defined before it (this is a bsd.python.mk # limitation), at least it is manually included. # # USE_WX - Set to the list of wxWidgets versions that can be used by # the port. The syntax allows the following elements: # - Single version (e.g. "3.0"). # - Range of versions (e.g. "2.8-3.0"). Must be ascending. # - Partial range: single version and upper (e.g. "2.8+"). # - Partial range: single version and lower (e.g. "-2.8"). # Multiple elements can be specified separated by spaces. # USE_WX_NOT - Set to the list of wxWidgets versions that can't be used by # the port. In other words, it removes some versions from # USE_WX. If the latter is not defined, it will have the value # of all the possible versions. The syntax is like USE_WX. # WX_COMPS - Set to the list of wxWidgets components the port uses. # Several components can be specified separated by spaces. By # default it will have the value of "wx". Suffixes in the form # ":xxx" may be added to the components to determine the # dependency type. # The available components are: # wx - The wxWidgets library. # contrib - The wxWidgets contributed libraries. # python - The wxWidgets API for Python. # The available dependency types are: # build - Requires component for building. # lib - Requires component for building and running. # run - Requires component for running. # If no suffix is present then "run" will be used for "python" # and "lib" for others. # WX_CONF_ARGS - Set to "absolute" or "relative" if the port needs configure # arguments in addition to the WX_CONFIG environment variable. # It determines the type of parameters that have to be passed # to the configure script. In the first case it adds # "--with-wx-config=${WX_CONFIG}" (absolute path of # WX_CONFIG), and in second one "--with-wx=${LOCALBASE}" plus # "--with-wx-config=${WX_CONFIG:T} (prefix and name). # WX_PREMK - Define to determine version and define WX_CONFIG/WX_VERSION # after (in case the port needs to manually # run the script). # WANT_WX - Set to "yes" or a valid single version (no ranges, etc). # In both cases it will detect the installed wxWidgets # components and add them to the variable HAVE_WX. If a # version is selected, HAVE_WX will contain a list of # components in the other case it will contain a list of # "component-version" pairs (e.g. wx-2.8, contrib-2.8, etc). # It has to be used before bsd.port.pre.mk. # WANT_WX_VER - Set to the preferred wxWidgets version for the port. It must # be present in USE_WX or missing in USE_WX_NOT. This is # overridden by the user variable WITH_WX_VER if set. It can # contain multiple versions in order of preference (last ones # are tried first). # WANT_WXGTK_VER - Set to the preferred GTK+ version, "2" or "3", "3" being # the default (only applicable to wxWidgets 3.0 for now). # # The following variables are intended for the user and can be defined in # make.conf. # WITH_WX_VER - Define to the list of preferred versions in reverse order. # # The following variables are defined by this file, to be read from the port. # WX_CONFIG - The path to the wx-config program (with different name). # WXRC_CMD - The path to the wxrc program (with different name). # WX_VERSION - The wxWidgets version that is going to be used. # HAVE_WX - The list of wxWidgets components installed, if WANT_WX was # defined. The components will have version suffix if it was # set to "yes". # # Examples: # - A port that needs wxWidgets 2.8 and contributed libraries # USE_WX= 2.8 # WX_COMPS= wx contrib # - A port that needs WxPython 2.8 for running. # USE_PYTHON= yes # USE_WX= 2.8 # WX_COMPS= python:run # - A port that needs WxPython 2.8 or 3.0 for building. # USE_PYTHON= yes # USE_WX= 2.8 3.0 # WX_COMPS= python:build # - A port that needs wxWidgets version 2.8 or higher and contributed # libraries. # USE_WX= 2.8+ # WX_COMPS= wx contrib # - A port that needs wxWidgets of any version other than 2.8. # USE_WX_NOT= 2.8 # WX_Include_MAINTAINER= ports@FreeBSD.org # # Global definitions. # .if !defined(_WX_Definitions_Done) _WX_Definitions_Done= yes # # Common variables: # _WX_COMPS_ALL - List of valid components. # _WX_DEP_TYPES_ALL - List of valid dependency types. # _WX_VERS_ALL - List of supported versions. # _WX_VERS_UC_ALL - List of Unicode capable versions. # _WX_VERS_LISTS - Reverse lists preference order. # _WX_COMPS_ALL= wx contrib python _WX_DEP_TYPES_ALL= build lib run -_WX_VERS_ALL= 2.8 3.0 3.1 -_WX_VERS_UC_ALL= 2.8 3.0 3.1 -_WX_VERS_SKIP= 3.0 3.1 +_WX_VERS_ALL= 2.8 3.0 3.1 3.2 +_WX_VERS_UC_ALL= 2.8 3.0 3.1 3.2 +_WX_VERS_SKIP= 3.0 3.1 3.2 _WX_VERS_LISTS= WANT_WX_VER WITH_WX_VER _WX_VER_INSTALLED # # Variables used to determine what is needed: # _WX_PORT_comp_ver - Port directory. # _WX_LIB_comp_ver - Name of the shared library (optional). # _WX_SHVER_comp_ver - Shared library version (optional). # _WX_FILE_comp_ver - File installed by that component. # _WX_DEPTYPE_comp_ver - Default dependency type (optional). # # wxgtk 2.8 _WX_PORT_wx_2.8= x11-toolkits/wxgtk28 _WX_LIB_wx_2.8= wx_base${_WX_UC}-2.8 _WX_PORT_contrib_2.8= x11-toolkits/wxgtk28-contrib _WX_LIB_contrib_2.8= wx_gtk2${_WX_UC}_fl-2.8 # wxgtk 3.0 _WX_PORT_wx_3.0= x11-toolkits/wxgtk30@${_GTKFLAVOR} _WX_LIB_wx_3.0= wx_baseu-3.0 _WX_PORT_python_3.1= x11-toolkits/py-wxPython4@${PY_FLAVOR} _WX_FILE_python_3.1= ${PYTHON_SITELIBDIR}/wx/__init__.py # wxgtk 3.1 _WX_PORT_wx_3.1= x11-toolkits/wxgtk31 _WX_LIB_wx_3.1= wx_baseu-3.1 +_WX_PORT_python_3.2= x11-toolkits/py-wxPython4@${PY_FLAVOR} +_WX_FILE_python_3.2= ${PYTHON_SITELIBDIR}/wx/__init__.py + +# wxgtk 3.2 +_WX_PORT_wx_3.2= x11-toolkits/wxgtk32 +_WX_LIB_wx_3.2= wx_baseu-3.2 + # Set _WX_SHVER_comp_ver to 0 and _WX_FILE_comp_ver for libs appropriately. # Set _WX_DEPTYPE_comp_ver for "python" to "run", and others to "lib". . for comp in ${_WX_COMPS_ALL} _WX_COMP= ${comp} . for ver in ${_WX_VERS_ALL} . if defined(_WX_LIB_${comp}_${ver}) _WX_SHVER_${comp}_${ver}= 0 _WX_FILE_${comp}_${ver}= ${LOCALBASE}/lib/lib${_WX_LIB_${comp}_${ver}}.so.${_WX_SHVER_${comp}_${ver}} . endif . if ${_WX_COMP} == "python" _WX_DEPTYPE_${comp}_${ver}= run . else _WX_DEPTYPE_${comp}_${ver}= lib . endif . endfor . endfor .endif # !_WX_Defined_Done # # Check if we are going to determine the version. # .if !defined(_WX_Version_Done) && (defined(_POSTMKINCLUDED) || \ (defined(WX_PREMK) && defined(BEFOREPORTMK) && \ (defined(USE_WX) || defined(USE_WX_NOT)))) _WX_Need_Version= yes .endif # # Check for present components. # # Requested by the user. .if defined(WANT_WX) && defined(BEFOREPORTMK) _WANT_WX= ${WANT_WX} .endif # Used for autodetection of installed versions. .if defined(_WX_Need_Version) _WANT_WX= yes .endif .if defined(_WANT_WX) # These variables are reprocessed later so they won't affect other parts. _WX_VER_FINAL= ${_WX_VERS_UC_ALL} _WX_UC= u _WX_PYSUFX= -unicode # Fill _HAVE_WX with the installed components. . undef _HAVE_WX . for __WANT_WX in ${_WANT_WX} # Check if _WANT_WX contains more than one word. . if defined(_HAVE_WX) IGNORE?= selected multiple values for WANT_WX: ${_WANT_WX} . endif _HAVE_WX= # # Check for all versions. . if ${_WANT_WX:tl} == "yes" . for comp in ${_WX_COMPS_ALL} . for ver in ${_WX_VER_FINAL} _WX_COMP= _WX_FILE_${comp}_${ver} . if defined(${_WX_COMP}) && exists(${${_WX_COMP}}) _HAVE_WX+= ${comp}-${ver} . endif . endfor . endfor # Check for a specific version. . elif ${_WX_VERS_ALL:M${__WANT_WX}} . for comp in ${_WX_COMPS_ALL} . if exists(${_WX_FILE_${comp}_${__WANT_WX}}) _HAVE_WX+= ${comp} . endif . endfor . else IGNORE?= selected an invalid value for WANT_WX: ${__WANT_WX} . endif . endfor .endif # _WANT_WX # Requested by the user. .if defined(WANT_WX) && defined(BEFOREPORTMK) HAVE_WX:= ${_HAVE_WX} .endif # Used for autodetection of installed versions. .if defined(_WX_Need_Version) _WX_VER_INSTALLED:= ${_HAVE_WX:Mwx-*:S/wx-//} .endif # # Select wxWidgets version. # .if defined(_WX_Need_Version) _WX_Version_Done= yes # # Basic component parsing (ignores dependency types). # # The variables used are: # _WX_COMP - Component part. # _WX_COMPS_FINAL - Final list of components. # # Detect duplicated components. _WX_COMPS_FINAL= # . for comp in ${WX_COMPS} _WX_COMP= ${comp:C/:([[:alpha:]]+)$//} . for __WX_COMP in ${_WX_COMP} . if ${_WX_COMPS_ALL:M${__WX_COMP}} == "" IGNORE?= selected an invalid wxWidgets component: ${__WX_COMP} . endif . endfor . for newcomp in ${_WX_COMP} . if ${_WX_COMPS_FINAL:M${newcomp}} == "" && !defined(IGNORE) _WX_COMPS_FINAL+= ${newcomp} . endif . endfor . endfor # Set defaults (if one isn't present). USE_WX?= ${_WX_VERS_ALL} USE_WX_NOT?= # # # Make lists of valid and invalid versions. # # The following variables are used: # _WX_VER_CHECK - If the version is a single one, express in a range. # _WX_VER_MIN - Lower version of the range. # _WX_VER_MAX - Higher version of the range. # _WX_VER_LIST - List of requested versions. # _WX_VER_NOT_LIST - List of disallowed versions. # _WX_VER_MERGED - List of requested version without disallowed ones. # . for list in VER VER_NOT _WX_${list}_LIST= # . for ver in ${USE_WX${list:C/VER//}} _WX_VER_CHECK:= ${ver:C/^([[:digit:]]+(\.[[:digit:]]+)*)$/\1-\1/} _WX_VER_MIN:= ${_WX_VER_CHECK:C/([[:digit:]]+(\.[[:digit:]]+)*)[-+].*/\1/} _WX_VER_MAX:= ${_WX_VER_CHECK:C/.*-([[:digit:]]+(\.[[:digit:]]+)*)/\1/} # Minimum version not specified. . if ${_WX_VER_MIN} == ${_WX_VER_CHECK} . undef _WX_VER_MIN . for v in ${_WX_VERS_ALL} . if ${_WX_VER_CHECK:C/[-+]//} == ${v} || ${_WX_VERS_SKIP:M${v}} == "" _WX_VER_MIN?= ${v} . endif . endfor . endif # Maximum version not specified. . if ${_WX_VER_MAX} == ${_WX_VER_CHECK} . for v in ${_WX_VERS_ALL} . if ${_WX_VER_CHECK:C/[-+]//} == ${v} || ${_WX_VERS_SKIP:M${v}} == "" _WX_VER_MAX= ${v} . endif . endfor . endif # Expand versions and add valid ones to each list. . for v in ${_WX_VERS_ALL} . if ${_WX_VER_MIN} <= ${v} && ${_WX_VER_MAX} >= ${v} && \ ${_WX_${list}_LIST:M${v}} == "" _WX_${list}_LIST+= ${v} . endif . endfor . endfor . endfor # Merge the lists into a single list of valid versions. _WX_VER_MERGED= # . for ver in ${_WX_VER_LIST} . if ${_WX_VER_NOT_LIST:M${ver}} == "" _WX_VER_MERGED+= ${ver} . endif . endfor # Check for a null version. . if empty(_WX_VER_MERGED) IGNORE?= selected a null or invalid wxWidgets version . endif # Avoid versions which have unavailable components. . for ver in ${_WX_VER_MERGED} . for comp in ${_WX_COMPS_FINAL} . if !defined(_WX_PORT_${comp}_${ver}) _WX_WRONG_COMPS+= ${comp} _WX_WRONG_VERS+= ${ver} _WX_VER_MERGED:= ${_WX_VER_MERGED:N${ver}} . endif . endfor . endfor . if empty(_WX_VER_MERGED) IGNORE?= selected wxWidgets versions (${_WX_WRONG_VERS}) which do not have the selected components (${_WX_WRONG_COMPS}) . endif # # Unicode support. # # Create a list of capable versions. _WX_VER_UC= # . for ver in ${_WX_VER_MERGED} . if ${_WX_VERS_UC_ALL:M${ver}} != "" _WX_VER_UC+= ${ver} . endif . endfor # Set Unicode variables. _WX_VER_FINAL= ${_WX_VER_UC} _WX_UC= u _WX_PYSUFX= -unicode # Remove unusable installed versions. . for ver in ${_WX_VER_INSTALLED} . if ${_WX_VER_FINAL:M${ver}} == "" _WX_VER_INSTALLED:= ${_WX_VER_INSTALLED:N${ver}} . endif . endfor # # Choose final version. # # # Check for the following (in order): # 1) WITH_WX_VER - User preference. # 2) WANT_WX_VER - Port preference. # 3) _WX_VER_INSTALLED - Installed versions. # 4) _WX_VER_FINAL - Available versions. . for list in _WX_VER_FINAL ${_WX_VERS_LISTS} . if defined(${list}) . for ver in ${${list}} . if ${_WX_VER_FINAL:M${ver}} != "" _WX_VER= ${ver} . endif . endfor . endif . endfor # # Set variables. # -. if ${_WX_VER} == 3.1 +. if ${_WX_VER} == 3.1 || ${_WX_VER} == 3.2 _GTKVER= 3 . elif ${_WX_VER} == 3.0 _GTKVER= ${WANT_WXGTK_VER:U3} _GTKFLAVOR= gtk${_GTKVER} . else _GTKVER= 2 . endif WX_CONFIG?= ${LOCALBASE}/bin/wxgtk${_GTKVER}${_WX_UC}-${_WX_VER}-config WXRC_CMD?= ${LOCALBASE}/bin/wxrc-gtk${_GTKVER}${_WX_UC}-${_WX_VER} WX_VERSION?= ${_WX_VER} .endif # _WX_Need_Version # # Process components list and add dependencies, variables, etc. # .if defined(_POSTMKINCLUDED) # # Component parsing. # # The variables used are: # _WX_COMP - Component part. # _WX_DEP_TYPE - Dependency type part. # _WX_COMP_NEW - Component + dependency type. # _WX_COMPS_FINAL - Final list of components with dependency types. # # Default components. WX_COMPS?= wx # Detect invalid and duplicated components. _WX_COMPS_FINAL= # . for comp in ${WX_COMPS} _WX_COMP= ${comp:C/:([[:alpha:]]+)$//} . if ${_WX_COMP} == ${comp} _WX_DEP_TYPE= ${_WX_DEPTYPE_${comp}_${_WX_VER}} . else _WX_DEP_TYPE= ${comp:C/.+:([[:alpha:]]+)$/\1/} . endif _WX_COMP_NEW= ${_WX_COMP}_${_WX_DEP_TYPE} . for __WX_COMP in ${_WX_COMP} . if ${_WX_COMPS_ALL:M${__WX_COMP}} == "" IGNORE?= selected an invalid wxWidgets component: ${__WX_COMP} . endif . endfor . for __WX_DEP_TYPE in ${_WX_DEP_TYPE} . if ${_WX_DEP_TYPES_ALL:M${__WX_DEP_TYPE}} == "" IGNORE?= selected an invalid wxWidgets dependency type: ${__WX_DEP_TYPE} . endif . endfor . if !defined(_WX_PORT_${_WX_COMP}_${_WX_VER}) IGNORE?= selected a wxWidgets component (${_WX_COMP}) which is not available for the selected version (${_WX_VER}) . endif . for newcomp in ${_WX_COMP_NEW} . if ${_WX_COMPS_FINAL:M${newcomp}} == "" && !defined(IGNORE) _WX_COMPS_FINAL+= ${newcomp} . endif . endfor . endfor # Add dependencies. # # The variable used are: # _WX_COMP - Component part. # _WX_DEP_TYPE - Dependency type part. . for comp in ${_WX_COMPS_FINAL} _WX_COMP= ${comp:C/_([[:alpha:]]+)$//} _WX_DEP_TYPE= ${comp:C/.+_([[:alpha:]]+)$/\1/} # XXX Need a .for loop here so the variable is expanded before the assignment. . for comp_part in ${_WX_COMP} . if ${_WX_DEP_TYPE} == "lib" . if defined(_WX_LIB_${_WX_COMP}_${_WX_VER}) LIB_DEPENDS+= lib${_WX_LIB_${comp_part}_${_WX_VER}}.so:${_WX_PORT_${comp_part}_${_WX_VER}} . else BUILD_DEPENDS+= ${_WX_FILE_${comp_part}_${_WX_VER}}:${_WX_PORT_${comp_part}_${_WX_VER}} RUN_DEPENDS+= ${_WX_FILE_${comp_part}_${_WX_VER}}:${_WX_PORT_${comp_part}_${_WX_VER}} . endif . else ${_WX_DEP_TYPE:tu}_DEPENDS+= ${_WX_FILE_${comp_part}_${_WX_VER}}:${_WX_PORT_${comp_part}_${_WX_VER}} . endif . endfor . endfor # # Set build related variables. # MAKE_ENV+= WX_CONFIG=${WX_CONFIG} CONFIGURE_ENV+= WX_CONFIG=${WX_CONFIG} . if defined(WX_CONF_ARGS) . if ${WX_CONF_ARGS:tl} == "absolute" CONFIGURE_ARGS+= --with-wx-config=${WX_CONFIG} . elif ${WX_CONF_ARGS:tl} == "relative" CONFIGURE_ARGS+= --with-wx=${LOCALBASE} \ --with-wx-config=${WX_CONFIG:T} . else IGNORE?= selected an invalid wxWidgets configure argument type: ${WX_CONF_ARGS} . endif . endif .endif # _POSTMKINCLUDED diff --git a/x11-toolkits/wxgtk32/Makefile b/x11-toolkits/wxgtk32/Makefile new file mode 100644 index 000000000000..952535e812cb --- /dev/null +++ b/x11-toolkits/wxgtk32/Makefile @@ -0,0 +1,114 @@ +PORTNAME= wx +DISTVERSIONPREFIX= v +DISTVERSION= 3.2.1 +CATEGORIES= x11-toolkits +MASTER_SITES= https://github.com/wxWidgets/wxWidgets/releases/download/v${DISTVERSION}/ +PKGNAMESUFFIX= ${_SHORT_WX_VER}-${FLAVOR} +DISTNAME= wxWidgets-${DISTVERSION} + +MAINTAINER= desktop@FreeBSD.org +COMMENT= GUI toolkit (wxWidgets) with ${FLAVOR:S/k/&+/:tu} bindings + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/docs/gpl.txt + +LIB_DEPENDS= libcurl.so:ftp/curl \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libharfbuzz.so:print/harfbuzz \ + libjbig.so:graphics/jbigkit \ + libnotify.so:devel/libnotify \ + libpcre2-32.so:devel/pcre2 \ + libpng.so:graphics/png \ + libsecret-1.so:security/libsecret \ + libsoup-2.4.so:devel/libsoup \ + libtiff.so:graphics/tiff \ + libwayland-egl.so:graphics/wayland + +FLAVORS= gtk3 gtk2 +FLAVOR?= ${FLAVORS:[1]} + +USES= compiler:c++11-lib gl gmake gnome iconv jpeg localbase \ + pkgconfig tar:bz2 xorg +GNU_CONFIGURE= yes +USE_XORG= x11 sm xxf86vm xtst +USE_GL= gl glu +USE_GNOME= cairo gdkpixbuf2 +USE_LDCONFIG= yes +USE_CXXSTD= c++11 +CONFIGURE_ARGS= --with-libpng=sys \ + --with-libjpeg=sys \ + --with-libtiff=sys \ + --with-liblzma \ + --with-nanosvg \ + --with-zlib=sys \ + --with-expat=sys \ + --with-opengl \ + --without-gnomevfs \ + --disable-epollloop \ + --disable-joystick \ + --enable-backtrace \ + --enable-ipv6 \ + --enable-optimise \ + --enable-unicode \ + --enable-std_string \ + --enable-graphics_ctx \ + --enable-compat28 \ + --enable-compat30 +CONFIGURE_ENV= X11BASE="${LOCALBASE}" \ + ac_cv_header_sys_inotify_h=no + +OPTIONS_DEFINE= GSTREAMER MSPACK NLS +OPTIONS_DEFAULT= GSTREAMER MSPACK +MSPACK_DESC= Microsoft archives support +OPTIONS_SUB= yes + +NLS_USES= gettext + +GSTREAMER_CONFIGURE_ENABLE= mediactrl +GSTREAMER_USES= gstreamer +GSTREAMER_USE= GSTREAMER=bad + +MSPACK_CONFIGURE_WITH= libmspack +MSPACK_LIB_DEPENDS= libmspack.so:archivers/libmspack + +WEBKIT_CONFIGURE_ENABLE= webview +WEBKIT_LIB_DEPENDS= libwebkit2gtk-4.0.so:www/webkit2-gtk3 + +.if ${FLAVOR} == gtk3 +USE_GNOME+= gtk30 +CONFIGURE_ARGS+= --with-gtk=3 +OPTIONS_DEFINE+= WEBKIT +OPTIONS_DEFAULT+= WEBKIT +PLIST_SUB+= GTK2="@comment " GTK3="" +.else +USE_GNOME+= gtk20 +CONFIGURE_ARGS+= --with-gtk +PLIST_SUB+= GTK2="" GTK3="@comment " WEBKIT="@comment " +.endif +PLIST_SUB+= GTKVER=${FLAVOR} + +_SHORT_WX_VER= ${PORTVERSION:S/./ /g:[1..2]:ts} + +gtk3_CONFLICTS_INSTALL= ${PORTNAME}${_SHORT_WX_VER}-gtk2 +gtk2_CONFLICTS_INSTALL= ${PORTNAME}${_SHORT_WX_VER}-gtk3 + +.include + +# TLS is broken on armv6/7, PR 229396 +.if ${ARCH} == armv6 || ${ARCH} == armv7 +CONFIGURE_ARGS+=--disable-tls +.endif + +# PR 196703, 197031 +.if ${CHOSEN_COMPILER_TYPE} == gcc +CONFIGURE_ARGS+=--disable-precomp-headers +.endif + +post-build-NLS-on: + @${DO_MAKE_BUILD} allmo -C ${BUILD_WRKSRC}/locale + +post-install: + @${RM} ${STAGEDIR}${PREFIX}/bin/wxrc +.include diff --git a/x11-toolkits/wxgtk32/distinfo b/x11-toolkits/wxgtk32/distinfo new file mode 100644 index 000000000000..8732d5b601fd --- /dev/null +++ b/x11-toolkits/wxgtk32/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1663161295 +SHA256 (wxWidgets-3.2.1.tar.bz2) = c229976bb413eb88e45cb5dfb68b27890d450149c09b331abd751e7ae0f5fa66 +SIZE (wxWidgets-3.2.1.tar.bz2) = 27266651 diff --git a/x11-toolkits/wxgtk32/files/patch-Makefile.in b/x11-toolkits/wxgtk32/files/patch-Makefile.in new file mode 100644 index 000000000000..dd5f1ad574da --- /dev/null +++ b/x11-toolkits/wxgtk32/files/patch-Makefile.in @@ -0,0 +1,33 @@ +--- Makefile.in.orig 2021-04-12 22:23:58 UTC ++++ Makefile.in +@@ -56,6 +56,7 @@ WX_LIB_FLAVOUR = @WX_LIB_FLAVOUR@ + TOOLKIT = @TOOLKIT@ + TOOLKIT_LOWERCASE = @TOOLKIT_LOWERCASE@ + TOOLKIT_VERSION = @TOOLKIT_VERSION@ ++TOOLCHAIN_NAME = @TOOLCHAIN_NAME@ + TOOLCHAIN_FULLNAME = @TOOLCHAIN_FULLNAME@ + EXTRALIBS = @EXTRALIBS@ + EXTRALIBS_XML = @EXTRALIBS_XML@ +@@ -13879,9 +13880,9 @@ all: $(__wxregex___depname) $(__wxzlib___depname) $(__ + + install: $(__install_wxregex___depname) $(__install_wxzlib___depname) $(__install_wxpng___depname) $(__install_wxjpeg___depname) $(__install_wxtiff___depname) $(__install_wxexpat___depname) $(__install_wxscintilla___depname) $(__install_monodll___depname) $(__install_monolib___depname) $(__install_basedll___depname) $(__install_baselib___depname) $(__install_netdll___depname) $(__install_netlib___depname) $(__install_coredll___depname) $(__install_corelib___depname) $(__install_advdll___depname) $(__install_advlib___depname) $(__install_mediadll___depname) $(__install_medialib___depname) $(__install_htmldll___depname) $(__install_htmllib___depname) $(__install_webviewdll___depname) $(__install_webviewlib___depname) $(__install_qadll___depname) $(__install_qalib___depname) $(__install_xmldll___depname) $(__install_xmllib___depname) $(__install_xrcdll___depname) $(__install_xrclib___depname) $(__install_auidll___depname) $(__install_auilib___depname) $(__install_ribbondll___depname) $(__install_ribbonlib___depname) $(__install_propgriddll___depname) $(__install_propgridlib___depname) $(__install_richtextdll___depname) $(__install_richtextlib___depname) $(__install_stcdll___depname) $(__install_stclib___depname) $(__install_gldll___depname) $(__install_gllib___depname) $(__install_sound_sdl___depname) $(__install_webkit2_ext___depname) $(__install_wxrc___depname) install-wxconfig locale_install + $(INSTALL_DIR) $(DESTDIR)$(datadir)/aclocal +- (cd $(srcdir) ; $(INSTALL_DATA) wxwin.m4 $(DESTDIR)$(datadir)/aclocal) ++ (cd $(srcdir) ; $(INSTALL_DATA) wxwin.m4 $(DESTDIR)$(datadir)/aclocal/wxwin$(WX_RELEASE_NODOT).m4) + $(INSTALL_DIR) $(DESTDIR)$(datadir)/bakefile/presets +- (cd $(srcdir)/build/bakefiles/wxpresets/presets ; $(INSTALL_DATA) wx.bkl wx_unix.bkl wx_win32.bkl wx_xrc.bkl wx_presets.py $(DESTDIR)$(datadir)/bakefile/presets) ++ (cd $(srcdir)/build/bakefiles/wxpresets/presets/ ; for i in wx.bkl wx_unix.bkl wx_win32.bkl wx_xrc.bkl wx_presets.py; do $(INSTALL_DATA) $$i $(DESTDIR)$(datadir)/bakefile/presets/wx$(WX_RELEASE_NODOT)$${i##wx}; done) + $(DYLIB_RPATH_INSTALL) + $(INSTALL_DIR) $(DESTDIR)$(libdir)/wx/include/$(TOOLCHAIN_FULLNAME)/wx + for f in setup.h $(RCDEFS_H); do \ +@@ -14775,9 +14776,7 @@ samples: + + install-wxconfig: + $(INSTALL_DIR) $(DESTDIR)$(bindir) +- $(INSTALL_DIR) $(DESTDIR)$(libdir)/wx/config +- $(INSTALL_SCRIPT) lib/wx/config/$(TOOLCHAIN_FULLNAME) $(DESTDIR)$(libdir)/wx/config +- (cd $(DESTDIR)$(bindir) && rm -f wx-config && $(LN_S) $(libdir)/wx/config/$(TOOLCHAIN_FULLNAME) wx-config || cp -p $(DESTDIR)$(libdir)/wx/config/$(TOOLCHAIN_FULLNAME) wx-config) ++ $(INSTALL_SCRIPT) lib/wx/config/$(TOOLCHAIN_FULLNAME) $(DESTDIR)$(bindir)/wx$(TOOLCHAIN_NAME)-config + + locale_install: + $(INSTALL_DIR) $(DESTDIR)$(datadir)/locale diff --git a/x11-toolkits/wxgtk32/files/patch-configure b/x11-toolkits/wxgtk32/files/patch-configure new file mode 100644 index 000000000000..735735b8afc4 --- /dev/null +++ b/x11-toolkits/wxgtk32/files/patch-configure @@ -0,0 +1,57 @@ +--- configure.orig 2021-04-12 22:23:58 UTC ++++ configure +@@ -3969,7 +3969,7 @@ case "${host}" in + + DEFAULT_DEFAULT_wxUSE_GTK=1 + ;; +- *-*-freebsd*) ++ *-*-dragonfly*|*-*-freebsd*) + USE_BSD=1 + USE_FREEBSD=1 + $as_echo "#define __FREEBSD__ 1" >>confdefs.h +@@ -20997,6 +20997,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + SEARCH_INCLUDE="\ ++ $X11BASE/include \ + /usr/local/include \ + /usr/local/X11/include \ + /usr/local/include/X11 \ +@@ -32061,9 +32062,6 @@ $as_echo "$as_me: WARNING: BeOS threads are not yet su + THREAD_OPTS="-pthreads $THREAD_OPTS" + fi + ;; +- *-*-freebsd*) +- THREAD_OPTS="-kthread lthread $THREAD_OPTS c_r" +- ;; + *-*-darwin* | *-*-cygwin* ) + THREAD_OPTS="" + ;; +@@ -32839,10 +32837,10 @@ if test "x$ac_cv_func_gmtime_r" = xyes; then : + $as_echo "#define HAVE_GMTIME_R 1" >>confdefs.h + + fi ++OPTIMISE_CFLAGS= + + + +- + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +@@ -39638,6 +39636,7 @@ fi + ;; + + powerpc-apple-macos* | \ ++ *-*-dragonfly* | \ + *-*-freebsd* | *-*-openbsd* | *-*-haiku* | *-*-netbsd* | *-*-gnu* | *-*-k*bsd*-gnu | \ + *-*-mirbsd* | \ + *-*-sunos4* | \ +@@ -39679,6 +39678,7 @@ fi + + case "${BAKEFILE_HOST}" in + *-*-linux* | *-*-freebsd* | *-*-openbsd* | *-*-haiku* | *-*-netbsd* | \ ++ *-*-dragonfly* | \ + *-*-k*bsd*-gnu | *-*-mirbsd* | *-*-gnu* ) + if test "x$SUNCXX" = "xyes"; then + SONAME_FLAG="-h " diff --git a/x11-toolkits/wxgtk32/files/patch-include_wx_propgrid_editors.h b/x11-toolkits/wxgtk32/files/patch-include_wx_propgrid_editors.h new file mode 100644 index 000000000000..07e063335055 --- /dev/null +++ b/x11-toolkits/wxgtk32/files/patch-include_wx_propgrid_editors.h @@ -0,0 +1,13 @@ +--- include/wx/propgrid/editors.h.orig 2022-10-15 19:03:21 UTC ++++ include/wx/propgrid/editors.h +@@ -13,6 +13,10 @@ + + #include "wx/defs.h" + ++#if wxUSE_BMPBUTTON ++#include "wx/bmpbndl.h" ++#endif ++ + #if wxUSE_PROPGRID + + #include "wx/window.h" diff --git a/x11-toolkits/wxgtk32/files/patch-setup.h.in b/x11-toolkits/wxgtk32/files/patch-setup.h.in new file mode 100644 index 000000000000..26870469d52f --- /dev/null +++ b/x11-toolkits/wxgtk32/files/patch-setup.h.in @@ -0,0 +1,20 @@ +--- setup.h.in.orig 2021-04-12 22:23:58 UTC ++++ setup.h.in +@@ -801,17 +801,14 @@ + /* + * Define if your compiler has std::tr1::unordered_map + */ +-#undef HAVE_TR1_UNORDERED_MAP + + /* + * Define if your compiler has std::tr1::unordered_set + */ +-#undef HAVE_TR1_UNORDERED_SET + + /* + * Define if your compiler has + */ +-#undef HAVE_TR1_TYPE_TRAITS + + /* + * Define if your compiler has diff --git a/x11-toolkits/wxgtk32/files/patch-utils-wxrc-Makefile.in b/x11-toolkits/wxgtk32/files/patch-utils-wxrc-Makefile.in new file mode 100644 index 000000000000..8e1067c0c602 --- /dev/null +++ b/x11-toolkits/wxgtk32/files/patch-utils-wxrc-Makefile.in @@ -0,0 +1,10 @@ +--- utils/wxrc/Makefile.in.orig 2021-04-12 22:23:58 UTC ++++ utils/wxrc/Makefile.in +@@ -30,6 +30,7 @@ WX_LIB_FLAVOUR = @WX_LIB_FLAVOUR@ + TOOLKIT = @TOOLKIT@ + TOOLKIT_LOWERCASE = @TOOLKIT_LOWERCASE@ + TOOLKIT_VERSION = @TOOLKIT_VERSION@ ++TOOLCHAIN_NAME = @TOOLCHAIN_NAME@ + EXTRALIBS = @EXTRALIBS@ + EXTRALIBS_XML = @EXTRALIBS_XML@ + EXTRALIBS_GUI = @EXTRALIBS_GUI@ diff --git a/x11-toolkits/wxgtk32/pkg-descr b/x11-toolkits/wxgtk32/pkg-descr new file mode 100644 index 000000000000..65a37d5be3fc --- /dev/null +++ b/x11-toolkits/wxgtk32/pkg-descr @@ -0,0 +1,5 @@ +wxWidgets is a C++ library that lets developers create applications for Windows, +Mac OS X, Linux and other platforms with a single code base. On FreeBSD the Gtk +toolkit is used. + +WWW: https://www.wxwidgets.org/ diff --git a/x11-toolkits/wxgtk32/pkg-plist b/x11-toolkits/wxgtk32/pkg-plist new file mode 100644 index 000000000000..d544e42614df --- /dev/null +++ b/x11-toolkits/wxgtk32/pkg-plist @@ -0,0 +1,812 @@ +bin/wx%%GTKVER%%u-3.2-config +bin/wxrc-3.2 +include/wx-3.2/wx/aboutdlg.h +include/wx-3.2/wx/accel.h +include/wx-3.2/wx/access.h +include/wx-3.2/wx/activityindicator.h +include/wx-3.2/wx/addremovectrl.h +include/wx-3.2/wx/affinematrix2d.h +include/wx-3.2/wx/affinematrix2dbase.h +include/wx-3.2/wx/afterstd.h +include/wx-3.2/wx/anidecod.h +include/wx-3.2/wx/animate.h +include/wx-3.2/wx/animdecod.h +include/wx-3.2/wx/any.h +include/wx-3.2/wx/anybutton.h +include/wx-3.2/wx/anystr.h +include/wx-3.2/wx/app.h +include/wx-3.2/wx/appprogress.h +include/wx-3.2/wx/apptrait.h +include/wx-3.2/wx/archive.h +include/wx-3.2/wx/arrimpl.cpp +include/wx-3.2/wx/arrstr.h +include/wx-3.2/wx/artprov.h +include/wx-3.2/wx/atomic.h +include/wx-3.2/wx/aui/aui.h +include/wx-3.2/wx/aui/auibar.h +include/wx-3.2/wx/aui/auibook.h +include/wx-3.2/wx/aui/dockart.h +include/wx-3.2/wx/aui/floatpane.h +include/wx-3.2/wx/aui/framemanager.h +include/wx-3.2/wx/aui/tabart.h +%%GTK2%%include/wx-3.2/wx/aui/tabartgtk.h +include/wx-3.2/wx/aui/tabmdi.h +include/wx-3.2/wx/bannerwindow.h +include/wx-3.2/wx/base64.h +include/wx-3.2/wx/beforestd.h +include/wx-3.2/wx/bitmap.h +include/wx-3.2/wx/bmpbndl.h +include/wx-3.2/wx/bmpbuttn.h +include/wx-3.2/wx/bmpcbox.h +include/wx-3.2/wx/bookctrl.h +include/wx-3.2/wx/brush.h +include/wx-3.2/wx/buffer.h +include/wx-3.2/wx/build.h +include/wx-3.2/wx/busyinfo.h +include/wx-3.2/wx/button.h +include/wx-3.2/wx/calctrl.h +include/wx-3.2/wx/caret.h +include/wx-3.2/wx/chartype.h +include/wx-3.2/wx/checkbox.h +include/wx-3.2/wx/checkeddelete.h +include/wx-3.2/wx/checklst.h +include/wx-3.2/wx/chkconf.h +include/wx-3.2/wx/choicdlg.h +include/wx-3.2/wx/choice.h +include/wx-3.2/wx/choicebk.h +include/wx-3.2/wx/clipbrd.h +include/wx-3.2/wx/clntdata.h +include/wx-3.2/wx/clrpicker.h +include/wx-3.2/wx/cmdargs.h +include/wx-3.2/wx/cmdline.h +include/wx-3.2/wx/cmdproc.h +include/wx-3.2/wx/cmndata.h +include/wx-3.2/wx/collheaderctrl.h +include/wx-3.2/wx/collpane.h +include/wx-3.2/wx/colordlg.h +include/wx-3.2/wx/colour.h +include/wx-3.2/wx/colourdata.h +include/wx-3.2/wx/combo.h +include/wx-3.2/wx/combobox.h +include/wx-3.2/wx/commandlinkbutton.h +include/wx-3.2/wx/compiler.h +include/wx-3.2/wx/compositewin.h +include/wx-3.2/wx/confbase.h +include/wx-3.2/wx/config.h +include/wx-3.2/wx/containr.h +include/wx-3.2/wx/control.h +include/wx-3.2/wx/convauto.h +include/wx-3.2/wx/cpp.h +include/wx-3.2/wx/creddlg.h +include/wx-3.2/wx/crt.h +include/wx-3.2/wx/cshelp.h +include/wx-3.2/wx/ctrlsub.h +include/wx-3.2/wx/cursor.h +include/wx-3.2/wx/custombgwin.h +include/wx-3.2/wx/dataobj.h +include/wx-3.2/wx/dataview.h +include/wx-3.2/wx/datectrl.h +include/wx-3.2/wx/dateevt.h +include/wx-3.2/wx/datetime.h +include/wx-3.2/wx/datetimectrl.h +include/wx-3.2/wx/datstrm.h +include/wx-3.2/wx/dc.h +include/wx-3.2/wx/dcbuffer.h +include/wx-3.2/wx/dcclient.h +include/wx-3.2/wx/dcgraph.h +include/wx-3.2/wx/dcmemory.h +include/wx-3.2/wx/dcmirror.h +include/wx-3.2/wx/dcprint.h +include/wx-3.2/wx/dcps.h +include/wx-3.2/wx/dcscreen.h +include/wx-3.2/wx/dcsvg.h +include/wx-3.2/wx/dde.h +include/wx-3.2/wx/debug.h +include/wx-3.2/wx/debugrpt.h +include/wx-3.2/wx/defs.h +include/wx-3.2/wx/dialog.h +include/wx-3.2/wx/dialup.h +include/wx-3.2/wx/dir.h +include/wx-3.2/wx/dirctrl.h +include/wx-3.2/wx/dirdlg.h +include/wx-3.2/wx/display.h +include/wx-3.2/wx/dlimpexp.h +include/wx-3.2/wx/dlist.h +include/wx-3.2/wx/dnd.h +include/wx-3.2/wx/docmdi.h +include/wx-3.2/wx/docview.h +include/wx-3.2/wx/dragimag.h +include/wx-3.2/wx/dvrenderers.h +include/wx-3.2/wx/dynarray.h +include/wx-3.2/wx/dynlib.h +include/wx-3.2/wx/dynload.h +include/wx-3.2/wx/editlbox.h +include/wx-3.2/wx/effects.h +include/wx-3.2/wx/encconv.h +include/wx-3.2/wx/encinfo.h +include/wx-3.2/wx/event.h +include/wx-3.2/wx/eventfilter.h +include/wx-3.2/wx/evtloop.h +include/wx-3.2/wx/evtloopsrc.h +include/wx-3.2/wx/except.h +include/wx-3.2/wx/fdrepdlg.h +include/wx-3.2/wx/features.h +include/wx-3.2/wx/ffile.h +include/wx-3.2/wx/file.h +include/wx-3.2/wx/fileconf.h +include/wx-3.2/wx/filectrl.h +include/wx-3.2/wx/filedlg.h +include/wx-3.2/wx/filedlgcustomize.h +include/wx-3.2/wx/filefn.h +include/wx-3.2/wx/filehistory.h +include/wx-3.2/wx/filename.h +include/wx-3.2/wx/filepicker.h +include/wx-3.2/wx/filesys.h +include/wx-3.2/wx/flags.h +include/wx-3.2/wx/fmappriv.h +include/wx-3.2/wx/font.h +include/wx-3.2/wx/fontdata.h +include/wx-3.2/wx/fontdlg.h +include/wx-3.2/wx/fontenc.h +include/wx-3.2/wx/fontenum.h +include/wx-3.2/wx/fontmap.h +include/wx-3.2/wx/fontpicker.h +include/wx-3.2/wx/fontutil.h +include/wx-3.2/wx/frame.h +include/wx-3.2/wx/fs_arc.h +include/wx-3.2/wx/fs_filter.h +include/wx-3.2/wx/fs_inet.h +include/wx-3.2/wx/fs_mem.h +include/wx-3.2/wx/fs_zip.h +include/wx-3.2/wx/fswatcher.h +include/wx-3.2/wx/gauge.h +include/wx-3.2/wx/gbsizer.h +include/wx-3.2/wx/gdicmn.h +include/wx-3.2/wx/gdiobj.h +include/wx-3.2/wx/generic/aboutdlgg.h +include/wx-3.2/wx/generic/accel.h +include/wx-3.2/wx/generic/activityindicator.h +include/wx-3.2/wx/generic/animate.h +include/wx-3.2/wx/generic/bmpcbox.h +include/wx-3.2/wx/generic/busyinfo.h +include/wx-3.2/wx/generic/buttonbar.h +include/wx-3.2/wx/generic/calctrlg.h +include/wx-3.2/wx/generic/caret.h +include/wx-3.2/wx/generic/choicdgg.h +include/wx-3.2/wx/generic/collheaderctrl.h +include/wx-3.2/wx/generic/combo.h +include/wx-3.2/wx/generic/creddlgg.h +include/wx-3.2/wx/generic/custombgwin.h +include/wx-3.2/wx/generic/dataview.h +include/wx-3.2/wx/generic/datectrl.h +include/wx-3.2/wx/generic/dcpsg.h +include/wx-3.2/wx/generic/dirctrlg.h +include/wx-3.2/wx/generic/dragimgg.h +include/wx-3.2/wx/generic/dvrenderer.h +include/wx-3.2/wx/generic/dvrenderers.h +include/wx-3.2/wx/generic/fdrepdlg.h +include/wx-3.2/wx/generic/filectrlg.h +include/wx-3.2/wx/generic/filepickerg.h +%%GTK2%%include/wx-3.2/wx/generic/fontdlgg.h +include/wx-3.2/wx/generic/fswatcher.h +include/wx-3.2/wx/generic/grid.h +include/wx-3.2/wx/generic/gridctrl.h +include/wx-3.2/wx/generic/grideditors.h +include/wx-3.2/wx/generic/gridsel.h +include/wx-3.2/wx/generic/headerctrlg.h +include/wx-3.2/wx/generic/helpext.h +include/wx-3.2/wx/generic/hyperlink.h +include/wx-3.2/wx/generic/icon.h +include/wx-3.2/wx/generic/imaglist.h +include/wx-3.2/wx/generic/infobar.h +include/wx-3.2/wx/generic/laywin.h +include/wx-3.2/wx/generic/listctrl.h +include/wx-3.2/wx/generic/logg.h +include/wx-3.2/wx/generic/msgdlgg.h +include/wx-3.2/wx/generic/notebook.h +include/wx-3.2/wx/generic/notifmsg.h +include/wx-3.2/wx/generic/numdlgg.h +include/wx-3.2/wx/generic/paletteg.h +include/wx-3.2/wx/generic/panelg.h +include/wx-3.2/wx/generic/printps.h +include/wx-3.2/wx/generic/prntdlgg.h +include/wx-3.2/wx/generic/progdlgg.h +include/wx-3.2/wx/generic/propdlg.h +include/wx-3.2/wx/generic/richmsgdlgg.h +include/wx-3.2/wx/generic/sashwin.h +include/wx-3.2/wx/generic/scrolwin.h +include/wx-3.2/wx/generic/spinctlg.h +include/wx-3.2/wx/generic/splash.h +include/wx-3.2/wx/generic/splitter.h +include/wx-3.2/wx/generic/srchctlg.h +include/wx-3.2/wx/generic/statbmpg.h +include/wx-3.2/wx/generic/stattextg.h +include/wx-3.2/wx/generic/statusbr.h +include/wx-3.2/wx/generic/textdlgg.h +include/wx-3.2/wx/generic/timectrl.h +include/wx-3.2/wx/generic/treectlg.h +include/wx-3.2/wx/generic/wizard.h +include/wx-3.2/wx/geometry.h +include/wx-3.2/wx/gifdecod.h +include/wx-3.2/wx/glcanvas.h +include/wx-3.2/wx/graphics.h +include/wx-3.2/wx/grid.h +include/wx-3.2/wx/gtk/accel.h +include/wx-3.2/wx/gtk/activityindicator.h +include/wx-3.2/wx/gtk/animate.h +include/wx-3.2/wx/gtk/anybutton.h +include/wx-3.2/wx/gtk/app.h +include/wx-3.2/wx/gtk/assertdlg_gtk.h +include/wx-3.2/wx/gtk/bitmap.h +include/wx-3.2/wx/gtk/bmpbuttn.h +include/wx-3.2/wx/gtk/bmpcbox.h +include/wx-3.2/wx/gtk/brush.h +include/wx-3.2/wx/gtk/button.h +include/wx-3.2/wx/gtk/calctrl.h +include/wx-3.2/wx/gtk/checkbox.h +include/wx-3.2/wx/gtk/checklst.h +include/wx-3.2/wx/gtk/chkconf.h +include/wx-3.2/wx/gtk/choice.h +include/wx-3.2/wx/gtk/clipbrd.h +include/wx-3.2/wx/gtk/clrpicker.h +include/wx-3.2/wx/gtk/collpane.h +include/wx-3.2/wx/gtk/colordlg.h +include/wx-3.2/wx/gtk/colour.h +include/wx-3.2/wx/gtk/combobox.h +include/wx-3.2/wx/gtk/control.h +include/wx-3.2/wx/gtk/cursor.h +include/wx-3.2/wx/gtk/dataform.h +include/wx-3.2/wx/gtk/dataobj.h +include/wx-3.2/wx/gtk/dataobj2.h +include/wx-3.2/wx/gtk/dataview.h +include/wx-3.2/wx/gtk/dialog.h +include/wx-3.2/wx/gtk/dirdlg.h +include/wx-3.2/wx/gtk/dnd.h +include/wx-3.2/wx/gtk/dvrenderer.h +include/wx-3.2/wx/gtk/dvrenderers.h +include/wx-3.2/wx/gtk/evtloop.h +include/wx-3.2/wx/gtk/evtloopsrc.h +include/wx-3.2/wx/gtk/filectrl.h +include/wx-3.2/wx/gtk/filedlg.h +include/wx-3.2/wx/gtk/filehistory.h +include/wx-3.2/wx/gtk/filepicker.h +include/wx-3.2/wx/gtk/font.h +include/wx-3.2/wx/gtk/fontdlg.h +include/wx-3.2/wx/gtk/fontpicker.h +include/wx-3.2/wx/gtk/frame.h +include/wx-3.2/wx/gtk/gauge.h +include/wx-3.2/wx/gtk/glcanvas.h +include/wx-3.2/wx/gtk/gnome/gvfs.h +include/wx-3.2/wx/gtk/hyperlink.h +include/wx-3.2/wx/gtk/infobar.h +include/wx-3.2/wx/gtk/listbox.h +include/wx-3.2/wx/gtk/mdi.h +include/wx-3.2/wx/gtk/menu.h +include/wx-3.2/wx/gtk/menuitem.h +include/wx-3.2/wx/gtk/mimetype.h +include/wx-3.2/wx/gtk/minifram.h +include/wx-3.2/wx/gtk/msgdlg.h +include/wx-3.2/wx/gtk/nonownedwnd.h +include/wx-3.2/wx/gtk/notebook.h +include/wx-3.2/wx/gtk/pen.h +include/wx-3.2/wx/gtk/popupwin.h +include/wx-3.2/wx/gtk/print.h +include/wx-3.2/wx/gtk/radiobox.h +include/wx-3.2/wx/gtk/radiobut.h +include/wx-3.2/wx/gtk/region.h +include/wx-3.2/wx/gtk/scrolbar.h +include/wx-3.2/wx/gtk/scrolwin.h +include/wx-3.2/wx/gtk/slider.h +include/wx-3.2/wx/gtk/spinbutt.h +include/wx-3.2/wx/gtk/spinctrl.h +include/wx-3.2/wx/gtk/srchctrl.h +include/wx-3.2/wx/gtk/statbmp.h +include/wx-3.2/wx/gtk/statbox.h +include/wx-3.2/wx/gtk/statline.h +include/wx-3.2/wx/gtk/stattext.h +include/wx-3.2/wx/gtk/taskbar.h +include/wx-3.2/wx/gtk/textctrl.h +include/wx-3.2/wx/gtk/textentry.h +include/wx-3.2/wx/gtk/tglbtn.h +include/wx-3.2/wx/gtk/toolbar.h +include/wx-3.2/wx/gtk/tooltip.h +include/wx-3.2/wx/gtk/toplevel.h +include/wx-3.2/wx/gtk/webview_webkit.h +include/wx-3.2/wx/gtk/webviewhistoryitem_webkit.h +include/wx-3.2/wx/gtk/window.h +include/wx-3.2/wx/hash.h +include/wx-3.2/wx/hashmap.h +include/wx-3.2/wx/hashset.h +include/wx-3.2/wx/headercol.h +include/wx-3.2/wx/headerctrl.h +include/wx-3.2/wx/help.h +include/wx-3.2/wx/helpbase.h +include/wx-3.2/wx/helphtml.h +include/wx-3.2/wx/helpwin.h +include/wx-3.2/wx/html/forcelnk.h +include/wx-3.2/wx/html/helpctrl.h +include/wx-3.2/wx/html/helpdata.h +include/wx-3.2/wx/html/helpdlg.h +include/wx-3.2/wx/html/helpfrm.h +include/wx-3.2/wx/html/helpwnd.h +include/wx-3.2/wx/html/htmlcell.h +include/wx-3.2/wx/html/htmldefs.h +include/wx-3.2/wx/html/htmlfilt.h +include/wx-3.2/wx/html/htmlpars.h +include/wx-3.2/wx/html/htmlproc.h +include/wx-3.2/wx/html/htmltag.h +include/wx-3.2/wx/html/htmlwin.h +include/wx-3.2/wx/html/htmprint.h +include/wx-3.2/wx/html/m_templ.h +include/wx-3.2/wx/html/styleparams.h +include/wx-3.2/wx/html/winpars.h +include/wx-3.2/wx/htmllbox.h +include/wx-3.2/wx/hyperlink.h +include/wx-3.2/wx/icon.h +include/wx-3.2/wx/iconbndl.h +include/wx-3.2/wx/iconloc.h +include/wx-3.2/wx/imagbmp.h +include/wx-3.2/wx/image.h +include/wx-3.2/wx/imaggif.h +include/wx-3.2/wx/imagiff.h +include/wx-3.2/wx/imagjpeg.h +include/wx-3.2/wx/imaglist.h +include/wx-3.2/wx/imagpcx.h +include/wx-3.2/wx/imagpng.h +include/wx-3.2/wx/imagpnm.h +include/wx-3.2/wx/imagtga.h +include/wx-3.2/wx/imagtiff.h +include/wx-3.2/wx/imagxpm.h +include/wx-3.2/wx/infobar.h +include/wx-3.2/wx/init.h +include/wx-3.2/wx/intl.h +include/wx-3.2/wx/iosfwrap.h +include/wx-3.2/wx/ioswrap.h +include/wx-3.2/wx/ipc.h +include/wx-3.2/wx/ipcbase.h +include/wx-3.2/wx/itemattr.h +include/wx-3.2/wx/itemid.h +include/wx-3.2/wx/joystick.h +include/wx-3.2/wx/kbdstate.h +include/wx-3.2/wx/language.h +include/wx-3.2/wx/layout.h +include/wx-3.2/wx/laywin.h +include/wx-3.2/wx/link.h +include/wx-3.2/wx/list.h +include/wx-3.2/wx/listbase.h +include/wx-3.2/wx/listbook.h +include/wx-3.2/wx/listbox.h +include/wx-3.2/wx/listctrl.h +include/wx-3.2/wx/listimpl.cpp +include/wx-3.2/wx/localedefs.h +include/wx-3.2/wx/log.h +include/wx-3.2/wx/longlong.h +include/wx-3.2/wx/lzmastream.h +include/wx-3.2/wx/math.h +include/wx-3.2/wx/matrix.h +include/wx-3.2/wx/mdi.h +include/wx-3.2/wx/mediactrl.h +include/wx-3.2/wx/memconf.h +include/wx-3.2/wx/memory.h +include/wx-3.2/wx/memtext.h +include/wx-3.2/wx/menu.h +include/wx-3.2/wx/menuitem.h +include/wx-3.2/wx/meta/convertible.h +include/wx-3.2/wx/meta/if.h +include/wx-3.2/wx/meta/implicitconversion.h +include/wx-3.2/wx/meta/int2type.h +include/wx-3.2/wx/meta/movable.h +include/wx-3.2/wx/meta/pod.h +include/wx-3.2/wx/meta/removeref.h +include/wx-3.2/wx/metafile.h +include/wx-3.2/wx/mimetype.h +include/wx-3.2/wx/minifram.h +include/wx-3.2/wx/modalhook.h +include/wx-3.2/wx/module.h +include/wx-3.2/wx/mousemanager.h +include/wx-3.2/wx/mousestate.h +include/wx-3.2/wx/msgdlg.h +include/wx-3.2/wx/msgout.h +include/wx-3.2/wx/msgqueue.h +include/wx-3.2/wx/mstream.h +include/wx-3.2/wx/nativewin.h +include/wx-3.2/wx/nonownedwnd.h +include/wx-3.2/wx/notebook.h +include/wx-3.2/wx/notifmsg.h +include/wx-3.2/wx/numdlg.h +include/wx-3.2/wx/numformatter.h +include/wx-3.2/wx/object.h +include/wx-3.2/wx/odcombo.h +include/wx-3.2/wx/overlay.h +include/wx-3.2/wx/ownerdrw.h +include/wx-3.2/wx/palette.h +include/wx-3.2/wx/panel.h +include/wx-3.2/wx/paper.h +include/wx-3.2/wx/pen.h +include/wx-3.2/wx/peninfobase.h +include/wx-3.2/wx/persist.h +include/wx-3.2/wx/persist/bookctrl.h +include/wx-3.2/wx/persist/dataview.h +include/wx-3.2/wx/persist/splitter.h +include/wx-3.2/wx/persist/toplevel.h +include/wx-3.2/wx/persist/treebook.h +include/wx-3.2/wx/persist/window.h +include/wx-3.2/wx/pickerbase.h +include/wx-3.2/wx/platform.h +include/wx-3.2/wx/platinfo.h +include/wx-3.2/wx/popupwin.h +include/wx-3.2/wx/position.h +include/wx-3.2/wx/power.h +include/wx-3.2/wx/preferences.h +include/wx-3.2/wx/print.h +include/wx-3.2/wx/printdlg.h +include/wx-3.2/wx/prntbase.h +include/wx-3.2/wx/process.h +include/wx-3.2/wx/progdlg.h +include/wx-3.2/wx/propdlg.h +include/wx-3.2/wx/propgrid/advprops.h +include/wx-3.2/wx/propgrid/editors.h +include/wx-3.2/wx/propgrid/manager.h +include/wx-3.2/wx/propgrid/property.h +include/wx-3.2/wx/propgrid/propgrid.h +include/wx-3.2/wx/propgrid/propgriddefs.h +include/wx-3.2/wx/propgrid/propgridiface.h +include/wx-3.2/wx/propgrid/propgridpagestate.h +include/wx-3.2/wx/propgrid/props.h +include/wx-3.2/wx/protocol/file.h +include/wx-3.2/wx/protocol/ftp.h +include/wx-3.2/wx/protocol/http.h +include/wx-3.2/wx/protocol/log.h +include/wx-3.2/wx/protocol/protocol.h +include/wx-3.2/wx/ptr_scpd.h +include/wx-3.2/wx/ptr_shrd.h +include/wx-3.2/wx/quantize.h +include/wx-3.2/wx/radiobox.h +include/wx-3.2/wx/radiobut.h +include/wx-3.2/wx/range.h +include/wx-3.2/wx/rawbmp.h +include/wx-3.2/wx/rearrangectrl.h +include/wx-3.2/wx/recguard.h +include/wx-3.2/wx/regex.h +include/wx-3.2/wx/region.h +include/wx-3.2/wx/renderer.h +include/wx-3.2/wx/ribbon/art.h +include/wx-3.2/wx/ribbon/art_internal.h +include/wx-3.2/wx/ribbon/bar.h +include/wx-3.2/wx/ribbon/buttonbar.h +include/wx-3.2/wx/ribbon/control.h +include/wx-3.2/wx/ribbon/gallery.h +include/wx-3.2/wx/ribbon/page.h +include/wx-3.2/wx/ribbon/panel.h +include/wx-3.2/wx/ribbon/toolbar.h +include/wx-3.2/wx/richmsgdlg.h +include/wx-3.2/wx/richtext/richtextbackgroundpage.h +include/wx-3.2/wx/richtext/richtextborderspage.h +include/wx-3.2/wx/richtext/richtextbuffer.h +include/wx-3.2/wx/richtext/richtextbulletspage.h +include/wx-3.2/wx/richtext/richtextctrl.h +include/wx-3.2/wx/richtext/richtextdialogpage.h +include/wx-3.2/wx/richtext/richtextfontpage.h +include/wx-3.2/wx/richtext/richtextformatdlg.h +include/wx-3.2/wx/richtext/richtexthtml.h +include/wx-3.2/wx/richtext/richtextimagedlg.h +include/wx-3.2/wx/richtext/richtextindentspage.h +include/wx-3.2/wx/richtext/richtextliststylepage.h +include/wx-3.2/wx/richtext/richtextmarginspage.h +include/wx-3.2/wx/richtext/richtextprint.h +include/wx-3.2/wx/richtext/richtextsizepage.h +include/wx-3.2/wx/richtext/richtextstyledlg.h +include/wx-3.2/wx/richtext/richtextstylepage.h +include/wx-3.2/wx/richtext/richtextstyles.h +include/wx-3.2/wx/richtext/richtextsymboldlg.h +include/wx-3.2/wx/richtext/richtexttabspage.h +include/wx-3.2/wx/richtext/richtextuicustomization.h +include/wx-3.2/wx/richtext/richtextxml.h +include/wx-3.2/wx/richtooltip.h +include/wx-3.2/wx/rtti.h +include/wx-3.2/wx/sashwin.h +include/wx-3.2/wx/sckaddr.h +include/wx-3.2/wx/sckipc.h +include/wx-3.2/wx/sckstrm.h +include/wx-3.2/wx/scopedarray.h +include/wx-3.2/wx/scopedptr.h +include/wx-3.2/wx/scopeguard.h +include/wx-3.2/wx/scrolbar.h +include/wx-3.2/wx/scrolwin.h +include/wx-3.2/wx/secretstore.h +include/wx-3.2/wx/selstore.h +include/wx-3.2/wx/settings.h +include/wx-3.2/wx/sharedptr.h +include/wx-3.2/wx/simplebook.h +include/wx-3.2/wx/sizer.h +include/wx-3.2/wx/slider.h +include/wx-3.2/wx/snglinst.h +include/wx-3.2/wx/socket.h +include/wx-3.2/wx/sound.h +include/wx-3.2/wx/spinbutt.h +include/wx-3.2/wx/spinctrl.h +include/wx-3.2/wx/splash.h +include/wx-3.2/wx/splitter.h +include/wx-3.2/wx/srchctrl.h +include/wx-3.2/wx/sstream.h +include/wx-3.2/wx/stack.h +include/wx-3.2/wx/stackwalk.h +include/wx-3.2/wx/statbmp.h +include/wx-3.2/wx/statbox.h +include/wx-3.2/wx/statline.h +include/wx-3.2/wx/stattext.h +include/wx-3.2/wx/statusbr.h +include/wx-3.2/wx/stc/stc.h +include/wx-3.2/wx/stdpaths.h +include/wx-3.2/wx/stdstream.h +include/wx-3.2/wx/stockitem.h +include/wx-3.2/wx/stopwatch.h +include/wx-3.2/wx/strconv.h +include/wx-3.2/wx/stream.h +include/wx-3.2/wx/string.h +include/wx-3.2/wx/stringimpl.h +include/wx-3.2/wx/stringops.h +include/wx-3.2/wx/strvararg.h +include/wx-3.2/wx/sysopt.h +include/wx-3.2/wx/systhemectrl.h +include/wx-3.2/wx/tarstrm.h +include/wx-3.2/wx/taskbar.h +include/wx-3.2/wx/taskbarbutton.h +include/wx-3.2/wx/tbarbase.h +include/wx-3.2/wx/testing.h +include/wx-3.2/wx/textbuf.h +include/wx-3.2/wx/textcompleter.h +include/wx-3.2/wx/textctrl.h +include/wx-3.2/wx/textdlg.h +include/wx-3.2/wx/textentry.h +include/wx-3.2/wx/textfile.h +include/wx-3.2/wx/textwrapper.h +include/wx-3.2/wx/tglbtn.h +include/wx-3.2/wx/thread.h +include/wx-3.2/wx/thrimpl.cpp +include/wx-3.2/wx/time.h +include/wx-3.2/wx/timectrl.h +include/wx-3.2/wx/timer.h +include/wx-3.2/wx/tipdlg.h +include/wx-3.2/wx/tipwin.h +include/wx-3.2/wx/tls.h +include/wx-3.2/wx/tokenzr.h +include/wx-3.2/wx/toolbar.h +include/wx-3.2/wx/toolbook.h +include/wx-3.2/wx/tooltip.h +include/wx-3.2/wx/toplevel.h +include/wx-3.2/wx/tracker.h +include/wx-3.2/wx/translation.h +include/wx-3.2/wx/treebase.h +include/wx-3.2/wx/treebook.h +include/wx-3.2/wx/treectrl.h +include/wx-3.2/wx/treelist.h +include/wx-3.2/wx/txtstrm.h +include/wx-3.2/wx/typeinfo.h +include/wx-3.2/wx/types.h +include/wx-3.2/wx/uiaction.h +include/wx-3.2/wx/uilocale.h +include/wx-3.2/wx/unichar.h +include/wx-3.2/wx/unix/app.h +include/wx-3.2/wx/unix/apptbase.h +include/wx-3.2/wx/unix/apptrait.h +include/wx-3.2/wx/unix/chkconf.h +include/wx-3.2/wx/unix/evtloop.h +include/wx-3.2/wx/unix/evtloopsrc.h +include/wx-3.2/wx/unix/fontutil.h +include/wx-3.2/wx/unix/fswatcher_inotify.h +include/wx-3.2/wx/unix/fswatcher_kqueue.h +%%GTK3%%include/wx-3.2/wx/unix/glegl.h +include/wx-3.2/wx/unix/glx11.h +include/wx-3.2/wx/unix/joystick.h +include/wx-3.2/wx/unix/mimetype.h +include/wx-3.2/wx/unix/pipe.h +include/wx-3.2/wx/unix/sound.h +include/wx-3.2/wx/unix/stackwalk.h +include/wx-3.2/wx/unix/stdpaths.h +include/wx-3.2/wx/unix/taskbarx11.h +include/wx-3.2/wx/unix/tls.h +include/wx-3.2/wx/unix/utilsx11.h +include/wx-3.2/wx/uri.h +include/wx-3.2/wx/url.h +include/wx-3.2/wx/ustring.h +include/wx-3.2/wx/utils.h +include/wx-3.2/wx/valgen.h +include/wx-3.2/wx/validate.h +include/wx-3.2/wx/valnum.h +include/wx-3.2/wx/valtext.h +include/wx-3.2/wx/variant.h +include/wx-3.2/wx/vector.h +include/wx-3.2/wx/version.h +include/wx-3.2/wx/versioninfo.h +include/wx-3.2/wx/vidmode.h +include/wx-3.2/wx/vlbox.h +include/wx-3.2/wx/vms_x_fix.h +include/wx-3.2/wx/volume.h +include/wx-3.2/wx/vscroll.h +include/wx-3.2/wx/weakref.h +include/wx-3.2/wx/webrequest.h +include/wx-3.2/wx/webview.h +include/wx-3.2/wx/webviewarchivehandler.h +include/wx-3.2/wx/webviewfshandler.h +include/wx-3.2/wx/wfstream.h +include/wx-3.2/wx/window.h +include/wx-3.2/wx/windowid.h +include/wx-3.2/wx/windowptr.h +include/wx-3.2/wx/withimages.h +include/wx-3.2/wx/wizard.h +include/wx-3.2/wx/wrapsizer.h +include/wx-3.2/wx/wupdlock.h +include/wx-3.2/wx/wx.h +include/wx-3.2/wx/wxchar.h +include/wx-3.2/wx/wxcrt.h +include/wx-3.2/wx/wxcrtbase.h +include/wx-3.2/wx/wxcrtvararg.h +include/wx-3.2/wx/wxhtml.h +include/wx-3.2/wx/wxprec.h +include/wx-3.2/wx/xlocale.h +include/wx-3.2/wx/xml/xml.h +include/wx-3.2/wx/xpmdecod.h +include/wx-3.2/wx/xpmhand.h +include/wx-3.2/wx/xrc/xh_activityindicator.h +include/wx-3.2/wx/xrc/xh_all.h +include/wx-3.2/wx/xrc/xh_animatctrl.h +include/wx-3.2/wx/xrc/xh_aui.h +include/wx-3.2/wx/xrc/xh_auitoolb.h +include/wx-3.2/wx/xrc/xh_bannerwindow.h +include/wx-3.2/wx/xrc/xh_bmp.h +include/wx-3.2/wx/xrc/xh_bmpbt.h +include/wx-3.2/wx/xrc/xh_bmpcbox.h +include/wx-3.2/wx/xrc/xh_bookctrlbase.h +include/wx-3.2/wx/xrc/xh_bttn.h +include/wx-3.2/wx/xrc/xh_cald.h +include/wx-3.2/wx/xrc/xh_chckb.h +include/wx-3.2/wx/xrc/xh_chckl.h +include/wx-3.2/wx/xrc/xh_choic.h +include/wx-3.2/wx/xrc/xh_choicbk.h +include/wx-3.2/wx/xrc/xh_clrpicker.h +include/wx-3.2/wx/xrc/xh_cmdlinkbn.h +include/wx-3.2/wx/xrc/xh_collpane.h +include/wx-3.2/wx/xrc/xh_combo.h +include/wx-3.2/wx/xrc/xh_comboctrl.h +include/wx-3.2/wx/xrc/xh_dataview.h +include/wx-3.2/wx/xrc/xh_datectrl.h +include/wx-3.2/wx/xrc/xh_dirpicker.h +include/wx-3.2/wx/xrc/xh_dlg.h +include/wx-3.2/wx/xrc/xh_editlbox.h +include/wx-3.2/wx/xrc/xh_filectrl.h +include/wx-3.2/wx/xrc/xh_filepicker.h +include/wx-3.2/wx/xrc/xh_fontpicker.h +include/wx-3.2/wx/xrc/xh_frame.h +include/wx-3.2/wx/xrc/xh_gauge.h +include/wx-3.2/wx/xrc/xh_gdctl.h +include/wx-3.2/wx/xrc/xh_grid.h +include/wx-3.2/wx/xrc/xh_html.h +include/wx-3.2/wx/xrc/xh_htmllbox.h +include/wx-3.2/wx/xrc/xh_hyperlink.h +include/wx-3.2/wx/xrc/xh_infobar.h +include/wx-3.2/wx/xrc/xh_listb.h +include/wx-3.2/wx/xrc/xh_listbk.h +include/wx-3.2/wx/xrc/xh_listc.h +include/wx-3.2/wx/xrc/xh_mdi.h +include/wx-3.2/wx/xrc/xh_menu.h +include/wx-3.2/wx/xrc/xh_notbk.h +include/wx-3.2/wx/xrc/xh_odcombo.h +include/wx-3.2/wx/xrc/xh_panel.h +include/wx-3.2/wx/xrc/xh_propdlg.h +include/wx-3.2/wx/xrc/xh_radbt.h +include/wx-3.2/wx/xrc/xh_radbx.h +include/wx-3.2/wx/xrc/xh_ribbon.h +include/wx-3.2/wx/xrc/xh_richtext.h +include/wx-3.2/wx/xrc/xh_scrol.h +include/wx-3.2/wx/xrc/xh_scwin.h +include/wx-3.2/wx/xrc/xh_simplebook.h +include/wx-3.2/wx/xrc/xh_sizer.h +include/wx-3.2/wx/xrc/xh_slidr.h +include/wx-3.2/wx/xrc/xh_spin.h +include/wx-3.2/wx/xrc/xh_split.h +include/wx-3.2/wx/xrc/xh_srchctrl.h +include/wx-3.2/wx/xrc/xh_statbar.h +include/wx-3.2/wx/xrc/xh_stbmp.h +include/wx-3.2/wx/xrc/xh_stbox.h +include/wx-3.2/wx/xrc/xh_stlin.h +include/wx-3.2/wx/xrc/xh_sttxt.h +include/wx-3.2/wx/xrc/xh_styledtextctrl.h +include/wx-3.2/wx/xrc/xh_text.h +include/wx-3.2/wx/xrc/xh_tglbtn.h +include/wx-3.2/wx/xrc/xh_timectrl.h +include/wx-3.2/wx/xrc/xh_toolb.h +include/wx-3.2/wx/xrc/xh_toolbk.h +include/wx-3.2/wx/xrc/xh_tree.h +include/wx-3.2/wx/xrc/xh_treebk.h +include/wx-3.2/wx/xrc/xh_unkwn.h +include/wx-3.2/wx/xrc/xh_wizrd.h +include/wx-3.2/wx/xrc/xmlres.h +include/wx-3.2/wx/xrc/xmlreshandler.h +include/wx-3.2/wx/xti.h +include/wx-3.2/wx/xti2.h +include/wx-3.2/wx/xtictor.h +include/wx-3.2/wx/xtihandler.h +include/wx-3.2/wx/xtiprop.h +include/wx-3.2/wx/xtistrm.h +include/wx-3.2/wx/xtitypes.h +include/wx-3.2/wx/xtixml.h +include/wx-3.2/wx/zipstrm.h +include/wx-3.2/wx/zstream.h +lib/libwx_baseu-3.2.so +lib/libwx_baseu-3.2.so.0 +lib/libwx_baseu-3.2.so.0.1.0 +lib/libwx_baseu_net-3.2.so +lib/libwx_baseu_net-3.2.so.0 +lib/libwx_baseu_net-3.2.so.0.1.0 +lib/libwx_baseu_xml-3.2.so +lib/libwx_baseu_xml-3.2.so.0 +lib/libwx_baseu_xml-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_adv-3.2.so +lib/libwx_%%GTKVER%%u_adv-3.2.so.0 +lib/libwx_%%GTKVER%%u_adv-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_aui-3.2.so +lib/libwx_%%GTKVER%%u_aui-3.2.so.0 +lib/libwx_%%GTKVER%%u_aui-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_core-3.2.so +lib/libwx_%%GTKVER%%u_core-3.2.so.0 +lib/libwx_%%GTKVER%%u_core-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_gl-3.2.so +lib/libwx_%%GTKVER%%u_gl-3.2.so.0 +lib/libwx_%%GTKVER%%u_gl-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_html-3.2.so +lib/libwx_%%GTKVER%%u_html-3.2.so.0 +lib/libwx_%%GTKVER%%u_html-3.2.so.0.1.0 +%%GSTREAMER%%lib/libwx_%%GTKVER%%u_media-3.2.so +%%GSTREAMER%%lib/libwx_%%GTKVER%%u_media-3.2.so.0 +%%GSTREAMER%%lib/libwx_%%GTKVER%%u_media-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_propgrid-3.2.so +lib/libwx_%%GTKVER%%u_propgrid-3.2.so.0 +lib/libwx_%%GTKVER%%u_propgrid-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_qa-3.2.so +lib/libwx_%%GTKVER%%u_qa-3.2.so.0 +lib/libwx_%%GTKVER%%u_qa-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_ribbon-3.2.so +lib/libwx_%%GTKVER%%u_ribbon-3.2.so.0 +lib/libwx_%%GTKVER%%u_ribbon-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_richtext-3.2.so +lib/libwx_%%GTKVER%%u_richtext-3.2.so.0 +lib/libwx_%%GTKVER%%u_richtext-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_stc-3.2.so +lib/libwx_%%GTKVER%%u_stc-3.2.so.0 +lib/libwx_%%GTKVER%%u_stc-3.2.so.0.1.0 +%%WEBKIT%%lib/libwx_%%GTKVER%%u_webview-3.2.so +%%WEBKIT%%lib/libwx_%%GTKVER%%u_webview-3.2.so.0 +%%WEBKIT%%lib/libwx_%%GTKVER%%u_webview-3.2.so.0.1.0 +lib/libwx_%%GTKVER%%u_xrc-3.2.so +lib/libwx_%%GTKVER%%u_xrc-3.2.so.0 +lib/libwx_%%GTKVER%%u_xrc-3.2.so.0.1.0 +%%WEBKIT%%lib/wx/3.2/web-extensions/webkit2_extu-3.2.so +lib/wx/include/%%GTKVER%%-unicode-3.2/wx/setup.h +share/aclocal/wxwin32.m4 +share/bakefile/presets/wx32.bkl +share/bakefile/presets/wx32_presets.py +share/bakefile/presets/wx32_unix.bkl +share/bakefile/presets/wx32_win32.bkl +share/bakefile/presets/wx32_xrc.bkl +%%NLS%%share/locale/ca/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/da/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/de/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/el/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/es/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/id/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/it/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wxstd-3.2.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wxstd-3.2.mo