23094118 Upgrade wxwidgets to 3.0.2 or newer
authorPetr Sumbera <petr.sumbera@oracle.com>
Thu, 05 May 2016 07:38:15 -0700
changeset 5994 af9925efa591
parent 5993 54464a6c913c
child 5995 a107a73db207
23094118 Upgrade wxwidgets to 3.0.2 or newer
components/gnuplot/Makefile
components/gnuplot/depend.mk
components/gnuplot/gnuplot.p5m
components/gnuplot/patches/wxWidgets3-exit.patch
components/gnuplot/patches/wxWidgets3.patch
components/wxwidgets/Makefile
components/wxwidgets/patches/stdwcsf.patch
components/wxwidgets/wxwidgets.license
components/wxwidgets/wxwidgets.p5m
--- a/components/gnuplot/Makefile	Mon May 16 00:50:55 2016 -0700
+++ b/components/gnuplot/Makefile	Thu May 05 07:38:15 2016 -0700
@@ -23,6 +23,7 @@
 # Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
 #
 BUILD_BITS= 64
+COMPILER= gcc
 include ../../make-rules/shared-macros.mk
 #libreadline.so needs libcurses.so, but -z ignore will not leave a dependency.
 LD_Z_IGNORE=
@@ -39,6 +40,16 @@
 
 TPNO=			8452
 
+CXXFLAGS += -std=c++11
+
+# For now we will build against wxWidgets from this workspace and not
+# against the system one (which is older).
+# See also WX_CONFIG setting below.
+WX_PROTO=$(COMPONENT_DIR)/../wxwidgets/build/prototype/$(MACH)
+CXXFLAGS += -I$(WX_PROTO)$(USRLIBDIR64)/wx/include/gtk2-unicode-3.0
+CXXFLAGS += -I$(WX_PROTO)$(USRINCDIR)/wx-3.0
+LDFLAGS += -L$(WX_PROTO)$(USRLIBDIR64)
+
 COMPONENT_BUILD_TARGETS = all info
 
 include $(WS_MAKE_RULES)/common.mk
@@ -47,7 +58,12 @@
 CONFIGURE_OPTIONS  += --sysconfdir=$(ETCDIR)/gnu
 CONFIGURE_OPTIONS  += --infodir=$(CONFIGURE_INFODIR)
 CONFIGURE_OPTIONS  += --x-libraries=$(CONFIGURE_LIBDIR.$(BITS))
-CONFIGURE_OPTIONS  += WX_CONFIG="$(USRBINDIR64)/wx-config"
+CONFIGURE_OPTIONS  += WX_CONFIG="$(WX_PROTO)$(USRLIBDIR64)/wx/config/gtk2-unicode-3.0"
+
+# Ensure that wxWidgets are built first.
+../wxwidgets/build/$(MACH64)/.installed:
+	(cd ../wxwidgets ; $(GMAKE) install)
+$(CONFIGURE_64): ../wxwidgets/build/$(MACH64)/.installed
 
 REQUIRED_PACKAGES += image/library/libjpeg
 REQUIRED_PACKAGES += image/library/libpng
@@ -67,7 +83,8 @@
 REQUIRED_PACKAGES += shell/ksh93
 REQUIRED_PACKAGES += system/font/truetype/liberation
 REQUIRED_PACKAGES += system/font/xorg/xorg-core
-REQUIRED_PACKAGES += system/library/c++-runtime
+REQUIRED_PACKAGES += system/library/gcc/gcc-c++-runtime
+REQUIRED_PACKAGES += system/library/gcc/gcc-c-runtime
 REQUIRED_PACKAGES += system/library/fontconfig
 REQUIRED_PACKAGES += system/library/freetype-2
 REQUIRED_PACKAGES += system/library/math
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/gnuplot/depend.mk	Thu May 05 07:38:15 2016 -0700
@@ -0,0 +1,1 @@
+gnuplot:	wxwidgets
--- a/components/gnuplot/gnuplot.p5m	Mon May 16 00:50:55 2016 -0700
+++ b/components/gnuplot/gnuplot.p5m	Thu May 05 07:38:15 2016 -0700
@@ -38,7 +38,7 @@
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 
 
-file path=usr/bin/gnuplot mode=555
+file path=usr/bin/gnuplot mode=555 pkg.depend.bypass-generate=.*wx.*
 file path=usr/demo/gnuplot/1.dat
 file path=usr/demo/gnuplot/2.dat
 file path=usr/demo/gnuplot/3.dat
@@ -265,3 +265,8 @@
     pkg.debug.depend.file=usr/share/fonts/TrueType/liberation/LiberationSans-Regular.ttf
 depend type=require fmri=__TBD \
     pkg.debug.depend.file=usr/share/fonts/X11/Type1/cour.pfa
+
+# Temporary enforce dependency on wxwidgets package before wxWidgets 3.0
+# gets into repo and bypass-generate rule can be removed from gnuplot
+# line above.
+depend type=require fmri=pkg:/library/graphics/wxwidgets
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/gnuplot/patches/wxWidgets3-exit.patch	Thu May 05 07:38:15 2016 -0700
@@ -0,0 +1,342 @@
+Following commit was applied on Gnuplot 4.6.0. It avoids core dump on exit with wxWidgets 3.0.
+It can be removed with Gnuplot update to version 5.0 or later.
+
+https://github.com/gnuplot/gnuplot/commit/40d8c736f742f4c19cc4b5b3b3dc6552c220ae12
+
+From 40d8c736f742f4c19cc4b5b3b3dc6552c220ae12 Mon Sep 17 00:00:00 2001
+From: sfeam <sfeam>
+Date: Fri, 25 Oct 2013 04:45:22 +0000
+Subject: [PATCH] Add private handlers gp_exit() and gp_atexit()
+
+diff --git a/src/command.c b/src/command.c
+index 2c697ae..8662db1 100644
+--- a/src/command.c
++++ b/src/command.c
+@@ -890,7 +890,7 @@ exit_command()
+ {
+     /* If the command is "exit gnuplot" then do so */
+     if (equals(c_token+1,"gnuplot"))
+-	exit(0);
++	gp_exit(EXIT_SUCCESS);
+ 
+     /* else graphics will be tidied up in main */
+     command_exit_status = 1;
+@@ -2269,7 +2269,7 @@ void
+ done(int status)
+ {
+     term_reset();
+-    exit(status);
++    gp_exit(status);
+ }
+ 
+ /* please note that the vms version of read_line doesn't support variable line
+diff --git a/src/plot.c b/src/plot.c
+index 96266b5..de3e24a 100644
+--- a/src/plot.c
++++ b/src/plot.c
+@@ -432,7 +432,7 @@ main(int argc, char **argv)
+     /* reset the terminal when exiting */
+     /* this is done through gp_atexit so that other terminal functions
+      * can be registered to be executed before the terminal is reset. */
+-    GP_ATEXIT(term_reset);
++    gp_atexit(term_reset);
+ 
+ # if defined(_Windows) && ! defined(WGP_CONSOLE)
+     interactive = TRUE;
+@@ -569,7 +569,7 @@ main(int argc, char **argv)
+ 	     * In case you don't have one of these functions, or you don't
+ 	     * want to use them, 'write_history()' is called directly.
+ 	     */
+-	    GP_ATEXIT(wrapper_for_write_history);
++	    gp_atexit(wrapper_for_write_history);
+ #endif /* GNUPLOT_HISTORY */
+ 
+ 	    fprintf(stderr, "\nTerminal type set to '%s'\n", term->name);
+@@ -611,7 +611,7 @@ main(int argc, char **argv)
+ #endif /* VMS */
+ 	if (!interactive && !noinputfiles) {
+ 	    term_reset();
+-	    exit(EXIT_FAILURE);	/* exit on non-interactive error */
++	    gp_exit(EXIT_FAILURE);	/* exit on non-interactive error */
+ 	}
+     }
+ 
+@@ -642,12 +642,13 @@
+ 		--argc; ++argv;
+ 		if (argc <= 0) {
+ 		    fprintf(stderr, "syntax:  gnuplot -e \"commands\"\n");
+-		    return 0;
++		    gp_exit(EXIT_FAILURE);
+ 		}
+ 		do_string(*argv);
+ 
+ 	    } else {
+ 		load_file(loadpath_fopen(*argv, "r"), gp_strdup(*argv), FALSE);
++		gp_exit(EXIT_SUCCESS);
+ 	    }
+ 	}
+ #ifdef _Windows
+@@ -674,6 +674,10 @@ main(int argc, char **argv)
+ 
+     /* HBB 20040223: Not all compilers like exit() to end main() */
+     /* exit(exit_status); */
++#if ! defined(_Windows)
++    /* Windows does the cleanup later */
++    gp_exit_cleanup();
++#endif
+     return exit_status;
+ }
+ 
+diff --git a/src/stdfn.c b/src/stdfn.c
+index 14526ca..914c7c1 100644
+--- a/src/stdfn.c
++++ b/src/stdfn.c
+@@ -384,6 +384,80 @@ char * gp_basename(char *path)
+     return path;
+ }
+ 
++#ifdef HAVE_ATEXIT
++# define GP_ATEXIT(x) atexit((x))
++#elif defined(HAVE_ON_EXIT)
++# define GP_ATEXIT(x) on_exit((x),0)
++#else
++# define GP_ATEXIT(x) /* you lose */
++#endif
++
++struct EXIT_HANDLER {
++    void (*function)(void);
++    struct EXIT_HANDLER* next;
++};
++
++static struct EXIT_HANDLER* exit_handlers = NULL;
++
++/* Calls the cleanup functions registered using gp_atexit().
++ * Normally gnuplot should be exited using gp_exit(). In some cases, this is not
++ * possible (notably when returning from main(), where some compilers get
++ * confused because they expect a return statement at the very end. In that
++ * case, gp_exit_cleanup() should be called before the return statement.
++ */
++void gp_exit_cleanup(void)
++{
++    /* Call exit handlers registered using gp_atexit(). This is used instead of
++     * normal atexit-handlers, because some libraries (notably Qt) seem to have
++     * problems with the destruction order when some objects are only destructed
++     * on atexit(3). Circumvent this problem by calling the gnuplot
++     * atexit-handlers, before any global destructors are run.
++     */
++    while (exit_handlers) {
++        struct EXIT_HANDLER* handler = exit_handlers;
++        (*handler->function)();
++        /* note: assumes that function above has not called gp_atexit() */
++        exit_handlers = handler->next;
++        free(handler);
++    }
++}
++
++/* Called from exit(3). Verifies that all exit handlers have already been
++ * called.
++ */
++static void debug_exit_handler(void)
++{
++    if (exit_handlers) {
++        fprintf(stderr, "Gnuplot not exited using gp_exit(). Exit handlers may"
++                "not work correctly!\n");
++        gp_exit_cleanup();
++    }
++}
++
++/* Gnuplot replacement for atexit(3) */
++void gp_atexit(void (*function)(void))
++{
++    /* Register new handler */
++    static bool debug_exit_handler_registered = false;
++    struct EXIT_HANDLER* new_handler = (struct EXIT_HANDLER*) malloc(sizeof(struct EXIT_HANDLER));
++    new_handler->function = function;
++    new_handler->next = exit_handlers;
++    exit_handlers = new_handler;
++
++    if (!debug_exit_handler_registered) {
++        GP_ATEXIT(debug_exit_handler);
++        debug_exit_handler_registered = true;
++    }
++}
++
++/* Gnuplot replacement for exit(3). Calls the functions registered using
++ * gp_atexit(). Always use this function instead of exit(3)!
++ */
++void gp_exit(int status)
++{
++    gp_exit_cleanup();
++    exit(status);
++}
+ 
+ #if !defined(HAVE_DIRENT_H) && defined(WIN32)  && (!defined(__WATCOMC__))
+ /* BM: OpenWatcom has dirent functions in direct.h!*/
+diff --git a/src/stdfn.h b/src/stdfn.h
+index 9b2be3d..1224f57 100644
+--- a/src/stdfn.h
++++ b/src/stdfn.h
+@@ -370,13 +370,21 @@ size_t strnlen __PROTO((const char *str, size_t n));
+ #  define GP_SLEEP(delay) sleep ((unsigned int) (delay+0.5))
+ #endif
+ 
+-#ifdef HAVE_ATEXIT
+-# define GP_ATEXIT(x) atexit((x))
+-#elif defined(HAVE_ON_EXIT)
+-# define GP_ATEXIT(x) on_exit((x),0)
+-#else
+-# define GP_ATEXIT(x) /* you lose */
+-#endif
++/* Gnuplot replacement for atexit(3) */
++void gp_atexit __PROTO((void (*function)(void)));
++
++/* Gnuplot replacement for exit(3). Calls the functions registered using
++ * gp_atexit(). Always use this function instead of exit(3)!
++ */
++void gp_exit __PROTO((int status));
++
++/* Calls the cleanup functions registered using gp_atexit().
++ * Normally gnuplot should be exited using gp_exit(). In some cases, this is not
++ * possible (notably when returning from main(), where some compilers get
++ * confused because they expect a return statement at the very end. In that
++ * case, gp_exit_cleanup() should be called before the return statement.
++ */
++void gp_exit_cleanup __PROTO((void));
+ 
+ char * gp_basename __PROTO((char *path));
+ 
+diff --git a/src/wxterminal/gp_cairo.c b/src/wxterminal/gp_cairo.c
+index cc5a54a..35227fd 100644
+--- a/src/wxterminal/gp_cairo.c
++++ b/src/wxterminal/gp_cairo.c
+@@ -1724,7 +1724,7 @@
+ 	if (cairo_status (plot->cr)) {
+ 		printf("Cairo is unhappy: %s\n",
+ 			cairo_status_to_string (cairo_status (plot->cr)));
+-		exit(0);
++		gp_exit(EXIT_FAILURE);
+ 	}
+ 	cairo_set_source_rgb(plot->cr, plot->background.r, plot->background.g, plot->background.b);
+ 	cairo_paint(plot->cr);
+@@ -1735,7 +1735,7 @@
+ 	if (cairo_status (plot->cr)) {
+ 		printf("Cairo is unhappy: %s\n",
+ 			cairo_status_to_string (cairo_status (plot->cr)));
+-		exit(0);
++		gp_exit(EXIT_FAILURE);
+ 	}
+ 	cairo_set_source_rgba(plot->cr, 0.0, 0.0, 0.0, 0.0);
+ 	cairo_paint(plot->cr);
+diff --git a/src/wxterminal/gp_cairo_helpers.c b/src/wxterminal/gp_cairo_helpers.c
+index 76f773c..eb38f65 100644
+--- a/src/wxterminal/gp_cairo_helpers.c
++++ b/src/wxterminal/gp_cairo_helpers.c
+@@ -61,7 +61,7 @@ unsigned int * gp_cairo_helper_coordval_to_chars(coordval* image, int M, int N,
+ 	/* cairo image buffer, upper bits are alpha, then r, g and b
+ 	 * Depends on endianess */
+ 	image255 = (unsigned int*) malloc(M*N*sizeof(unsigned int));
+-	if (!image255) { fprintf(stderr,"cairo terminal: out of memory!\n"); exit(-1);}
++	if (!image255) { fprintf(stderr,"cairo terminal: out of memory!\n"); gp_exit(EXIT_FAILURE);}
+ 	image255copy = image255;
+ 
+ 	/* TrueColor 24-bit plot->color mode */
+diff --git a/src/wxterminal/wxt_gui.cpp b/src/wxterminal/wxt_gui.cpp
+index 3f6cb53..105340b 100644
+--- a/src/wxterminal/wxt_gui.cpp
++++ b/src/wxterminal/wxt_gui.cpp
+@@ -1566,7 +1566,7 @@
+ 		if (!wxInitialize()) {
+ 			fprintf(stderr,"Failed to initialize wxWidgets.\n");
+ 			wxt_abort_init = true;
+-			return;
++			gp_exit(EXIT_FAILURE);
+ 		}
+ 
+ 		/* app initialization */
+@@ -1600,7 +1600,7 @@ void wxt_init()
+ 		term_interlock = (void *)wxt_init;
+ 
+ 		/* register call for "persist" effect and cleanup */
+-		GP_ATEXIT(wxt_atexit);
++		gp_atexit(wxt_atexit);
+ 	}
+ 
+ 	wxt_sigint_check();
+--- a/term/be.trm
++++ b/term/be.trm
+@@ -165,7 +165,7 @@ BE_args(int argc, char *argv[])
+ 
+     if (!xargv) {
+ 	fputs ("not enough memory to copy argv - quitting\n", stderr);
+-	exit (EXIT_FAILURE);
++	gp_exit (EXIT_FAILURE);
+     }
+ 
+     /* We make a copy of the argument vector because
+@@ -231,7 +231,7 @@ BE_init()
+ 	    execvp(BE_command, optvec);
+ 	    /* if we get here, something went wrong */
+ 	    perror("exec failed");
+-	    exit(1);
++	    gp_exit(EXIT_FAILURE);
+ 	}
+ 	/* parent */
+ 	close(fdes[0]);		/* read end of pipe */
+@@ -239,7 +239,7 @@ BE_init()
+     } {
+ 	static int been_here = 0;
+ 	if (!been_here) {
+-	    atexit(BE_atexit);
++	    gp_atexit(BE_atexit);
+ 	    been_here = 1;
+ 	}
+     }
+diff --git a/term/x11.trm b/term/x11.trm
+index b0c5d1c..1e68684 100644
+--- a/term/x11.trm
++++ b/term/x11.trm
+@@ -1004,7 +1004,7 @@ X11_init()
+ 	    fprintf(stderr,"Expected X11 driver: %s\n",X11_full_command_path);
+ 	    perror("Exec failed");
+ 	    fprintf(stderr,"See 'help x11' for more details\n");
+-	    exit(EXIT_FAILURE);
++	    gp_exit(EXIT_FAILURE);
+ 	}
+ 	/* parent */
+ # ifdef PIPE_IPC
+@@ -1037,7 +1037,7 @@ X11_init()
+     }
+ 
+     if (!been_here) {
+-	GP_ATEXIT(X11_atexit);
++	gp_atexit(X11_atexit);
+ 	been_here++;
+     }
+     X11_send_endianess();
+@@ -1101,7 +1101,7 @@ X11_reset()
+ 
+ #define BEFORE_GRAPHICS \
+  if (!(X11_ipc = fopen(X11_tmp0, "w"))) { \
+-   perror(X11_tmp0); system(X11_shutdown); exit(1); \
++   perror(X11_tmp0); system(X11_shutdown); gp_exit(EXIT_FAILURE); \
+  }
+ 
+ #define AFTER_TEXT \
+@@ -1229,7 +1229,7 @@ X11_init()
+     {
+ 	static int been_here = 0;
+ 	if (!been_here) {
+-	    GP_ATEXIT(X11_atexit);
++	    gp_atexit(X11_atexit);
+ 	    been_here = 1;
+ 	}
+     }
+@@ -1252,7 +1252,7 @@ do { \
+    } \
+    status = sys$qiow(0, X11_channel, IO$_WRITEVBLK, &iosb, 0, 0, buffer, strlen(buffer), 0, 0, 0, 0); \
+    if ((status & SS$_NORMAL) == SS$_NORMAL) status = iosb.stat; \
+-   if((status & SS$_NORMAL) != SS$_NORMAL) exit(status); \
++   if((status & SS$_NORMAL) != SS$_NORMAL) gp_exit(status); \
+  } while (0)
+ 
+ #define PRINT0(fmt)          GO((buffer, fmt))
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/gnuplot/patches/wxWidgets3.patch	Thu May 05 07:38:15 2016 -0700
@@ -0,0 +1,51 @@
+Oficial fixes to make Gnuplot work with wxWidgets 3.0.
+Can be removed with Gnuplot update to version 5.0 or later.
+
+https://github.com/gnuplot/gnuplot/commit/a275a85b335fb358cea09d7e64204caca3193e1a
+https://github.com/gnuplot/gnuplot/commit/632f86b64659b9ad14bfae1c850ce268f0d39352
+
+--- gnuplot-4.6.0/src/wxterminal/wxt_gui.h
++++ gnuplot-4.6.0/src/wxterminal/wxt_gui.h
+@@ -203,6 +203,8 @@
+  * ====================================================================*/
+ 
+ #ifdef WXT_MULTITHREADED
++#include <X11/Xlib.h>	/* Magic fix for linking against wxgtk3.0 */
++
+ /* thread class, where the gui loop runs.
+  * Not needed with Windows, where the main loop
+  * already processes the gui messages */
+@@ -234,6 +236,10 @@
+ class wxtApp : public wxApp
+ {
+ public:
++#ifdef WXT_MULTITHREADED 
++	/* Magic fix needed by wxgtk3.0 */
++	wxtApp() : wxApp() { XInitThreads(); } 
++#endif 
+ 	/* This one is called just after wxWidgets initialization */
+ 	bool OnInit();
+ 	/* cleanup on exit */
+--- gnuplot-4.6.0/src/wxterminal/wxt_gui.cpp
++++ gnuplot-4.6.0/src/wxterminal/wxt_gui.cpp
+@@ -2493,6 +2498,20 @@
+ /* refresh the plot by (re)processing the plot commands list */
+ void wxtPanel::wxt_cairo_refresh()
+ {
++	/* This check may prevent the assert+die behavior seen with wxgtk3.0 */
++	/* Symptom:
++	  ./src/gtk/dcclient.cpp(2043): assert "m_window" failed in DoGetSize(): GetSize() doesn't work without window [in thread 7fb21f386700]
++	  Call stack:
++	  [00] wxOnAssert(char const*, int, char const*, char const*, wchar_t const*)
++	  [01] wxClientDCImpl::DoGetSize(int*, int*) const
++	  [02] wxBufferedDC::UnMask()                  
++	  wxwidgets documentation to the contrary, panel->IsShownOnScreen() is unreliable
++	 */
++	if (!wxt_current_window) {
++		FPRINTF((stderr,"wxt_cairo_refresh called before window exists\n"));
++		return;
++	}
++
+ 	/* Clear background. */
+ 	gp_cairo_solid_background(&plot);
+ 
--- a/components/wxwidgets/Makefile	Mon May 16 00:50:55 2016 -0700
+++ b/components/wxwidgets/Makefile	Thu May 05 07:38:15 2016 -0700
@@ -24,38 +24,31 @@
 #
 # 32-bit preferred as only *-config and source generation scripts delivered.
 BUILD_BITS= 32_and_64
+COMPILER= gcc
 include ../../make-rules/shared-macros.mk
 
-COMPONENT_NAME=		wxwidgets
-COMPONENT_VERSION=	2.8.12
-COMPONENT_SRC_NAME=	wxGTK
+COMPONENT_NAME=		wxWidgets
+COMPONENT_VERSION=	3.0.2
+COMPONENT_ARCHIVE=	$(COMPONENT_NAME)-$(COMPONENT_VERSION).tar.bz2
 COMPONENT_ARCHIVE_HASH=	\
-    sha256:13cf89f2c29bcb90bb56a31ac1af10f23003d3d43c3e4b24991518f5dc4e5abe
+    sha256:346879dc554f3ab8d6da2704f651ecb504a22e9d31c17ef5449b129ed711585d
 COMPONENT_ARCHIVE_URL=	http://prdownloads.sourceforge.net/wxwindows/$(COMPONENT_ARCHIVE)
 COMPONENT_PROJECT_URL=  http://www.wxwidgets.org/
 COMPONENT_BUGDB=	library/wxwidgets
 
-TPNO=			9216
+TPNO=			28307
 
-BUILD_32_and_64 += $(BUILD_DIR_32)/contrib/.built \
-	$(BUILD_DIR_64)/contrib/.built
-INSTALL_32_and_64 += $(BUILD_DIR_32)/contrib/.installed \
-	$(BUILD_DIR_64)/contrib/.installed
+CXXFLAGS += -std=c++11
+
 TEST_TARGET= $(NO_TESTS)
 include $(WS_MAKE_RULES)/common.mk
 
 PKG_PROTO_DIRS += $(COMPONENT_DIR)/man
 
-# get rid of compiler path set in RUNPATH
-LDFLAGS += $(studio_NORUNPATH)
 LDFLAGS += $(CC_BITS)
-LDFLAGS += $(studio_CXXLIB_CSTD)
 
-CONFIGURE_OPTIONS += --with-gtk
-CONFIGURE_OPTIONS += --enable-gtk2
-CONFIGURE_OPTIONS += --enable-unicode
+CONFIGURE_OPTIONS += --with-gtk=2
 CONFIGURE_OPTIONS += --enable-mimetype
-CONFIGURE_OPTIONS += --enable-gui
 CONFIGURE_OPTIONS += --enable-xrc
 CONFIGURE_OPTIONS += --with-subdirs
 CONFIGURE_OPTIONS += --with-expat
@@ -65,30 +58,25 @@
 CONFIGURE_OPTIONS += --with-opengl
 CONFIGURE_OPTIONS += --without-libmpack
 
-# I want to use userland's "build" target in contrib subdirectory, but I need
-# to skip the configure phase
-$(BUILD_DIR_32)/contrib/.configured \
-$(BUILD_DIR_64)/contrib/.configured:
-	$(TOUCH) $@
-
 ASLR_MODE =   $(ASLR_ENABLE)
 
 REQUIRED_PACKAGES += image/library/libjpeg
 REQUIRED_PACKAGES += image/library/libpng
 REQUIRED_PACKAGES += image/library/libtiff
-REQUIRED_PACKAGES += library/desktop/atk
+REQUIRED_PACKAGES += library/audio/gstreamer
+REQUIRED_PACKAGES += library/desktop/cairo
 REQUIRED_PACKAGES += library/desktop/gdk-pixbuf
 REQUIRED_PACKAGES += library/desktop/gtk2
 REQUIRED_PACKAGES += library/desktop/pango
 REQUIRED_PACKAGES += library/expat
 REQUIRED_PACKAGES += library/glib2
+REQUIRED_PACKAGES += library/libnotify
 REQUIRED_PACKAGES += library/sdl
 REQUIRED_PACKAGES += library/zlib
-REQUIRED_PACKAGES += shell/ksh93
-REQUIRED_PACKAGES += system/library/c++-runtime
+REQUIRED_PACKAGES += system/library
+REQUIRED_PACKAGES += system/library/gcc/gcc-c++-runtime
+REQUIRED_PACKAGES += system/library/gcc/gcc-c-runtime
 REQUIRED_PACKAGES += system/library/math
 REQUIRED_PACKAGES += x11/library/libsm
 REQUIRED_PACKAGES += x11/library/libx11
-REQUIRED_PACKAGES += x11/library/libxcursor
-REQUIRED_PACKAGES += x11/library/libxinerama
 REQUIRED_PACKAGES += x11/library/libxxf86vm
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/wxwidgets/patches/stdwcsf.patch	Thu May 05 07:38:15 2016 -0700
@@ -0,0 +1,40 @@
+Patch origin: in-house
+Patch status: Solaris-specific; not suitable for upstream
+
+Workaround for:
+
+23234483 - some functions are not exported in default C++ namespace in wchar.h
+
+--- wxWidgets-3.0.2/include/wx/wxcrtbase.h
++++ wxWidgets-3.0.2/include/wx/wxcrtbase.h
+@@ -180,7 +180,7 @@
+         !(defined(__CYGWIN__) || defined(__WX_STRICT_ANSI_GCC__))
+     #define wxCRT_StrdupW _wcsdup
+ #elif defined(HAVE_WCSDUP)
+-    #define wxCRT_StrdupW wcsdup
++    #define wxCRT_StrdupW std::wcsdup
+ #endif
+ 
+ #ifdef wxHAVE_TCHAR_SUPPORT
+@@ -238,7 +238,7 @@
+ #endif
+ 
+ #ifdef HAVE_WCSNLEN
+-    #define wxCRT_StrnlenW  wcsnlen
++    #define wxCRT_StrnlenW  std::wcsnlen
+ #endif
+ 
+ /* define wxCRT_StricmpA/W and wxCRT_StrnicmpA/W for various compilers */
+@@ -262,10 +262,10 @@
+     #define wxCRT_StrnicmpW _wcsnicmp
+ #elif defined(__UNIX__)
+     #ifdef HAVE_WCSCASECMP
+-        #define wxCRT_StricmpW wcscasecmp
++        #define wxCRT_StricmpW std::wcscasecmp
+     #endif
+     #ifdef HAVE_WCSNCASECMP
+-        #define wxCRT_StrnicmpW wcsncasecmp
++        #define wxCRT_StrnicmpW std::wcsncasecmp
+     #endif
+ /* #else -- use wxWidgets implementation */
+ #endif
--- a/components/wxwidgets/wxwidgets.license	Mon May 16 00:50:55 2016 -0700
+++ b/components/wxwidgets/wxwidgets.license	Thu May 05 07:38:15 2016 -0700
@@ -1,51 +1,860 @@
-		wxWindows Library Licence, Version 3.1
-		======================================
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+                          675 Mass Ave, Cambridge, MA 02139, USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
 
-  Copyright (c) 1998-2005 Julian Smart, Robert Roebling et al
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
 
-  Everyone is permitted to copy and distribute verbatim copies
-  of this licence document, but changing it is not allowed.
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
 
-                       WXWINDOWS LIBRARY LICENCE
-     TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-  
-  This library is free software; you can redistribute it and/or modify it
-  under the terms of the GNU Library General Public Licence as published by
-  the Free Software Foundation; either version 2 of the Licence, or (at
-  your option) any later version.
-  
-  This library is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library
-  General Public Licence for more details.
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
+	Appendix: How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) 19yy  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) 19yy name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
 
-  You should have received a copy of the GNU Library General Public Licence
-  along with this software, usually in a file named COPYING.LIB.  If not,
-  write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
-  Boston, MA 02111-1307 USA.
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Library General
+Public License instead of this License.
+
+
+------------------------------------------------------
+
+
+	  GNU LIBRARY GENERAL PUBLIC LICENSE
+	  ==================================
+                Version 2, June 1991
+
+ Copyright (C) 1991 Free Software Foundation, Inc.
+                    675 Mass Ave, Cambridge, MA 02139, USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the library GPL.  It is
+ numbered 2 because it goes with version 2 of the ordinary GPL.]
+
+                        Preamble
+
+The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General
+Public Licenses are intended to guarantee your freedom to share
+and change free software--to make sure the software is free for
+all its users.
+
+This license, the Library General Public License, applies to
+some specially designated Free Software Foundation software, and
+to any other libraries whose authors decide to use it.  You can
+use it for your libraries, too.
+
+When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure
+that you have the freedom to distribute copies of free software
+(and charge for this service if you wish), that you receive
+source code or can get it if you want it, that you can change
+the software or use pieces of it in new free programs; and that
+you know you can do these things.
+
+To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the
+rights. These restrictions translate to certain responsibilities
+for you if you distribute copies of the library, or if you
+modify it.
+
+For example, if you distribute copies of the library, whether
+gratis or for a fee, you must give the recipients all the rights
+that we gave you.  You must make sure that they, too, receive or
+can get the source code.  If you link a program with the
+library, you must provide complete object files to the
+recipients so that they can relink them with the library, after
+making changes to the library and recompiling it.  And you must
+show them these terms so they know their rights.
+
+Our method of protecting your rights has two steps: (1)
+copyright the library, and (2) offer you this license which
+gives you legal permission to copy, distribute and/or modify the
+library.
+
+Also, for each distributor's protection, we want to make certain
+that everyone understands that there is no warranty for this
+free library.  If the library is modified by someone else and
+passed on, we want its recipients to know that what they have is
+not the original version, so that any problems introduced by
+others will not reflect on the original authors' reputations.
+ 
+Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that companies
+distributing free software will individually obtain patent
+licenses, thus in effect transforming the program into
+proprietary software.  To prevent this, we have made it clear
+that any patent must be licensed for everyone's free use or not
+licensed at all.
+
+Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License, which was designed for
+utility programs.  This license, the GNU Library General Public
+License, applies to certain designated libraries.  This license
+is quite different from the ordinary one; be sure to read it in
+full, and don't assume that anything in it is the same as in the
+ordinary license.
+
+The reason we have a separate public license for some libraries
+is that they blur the distinction we usually make between
+modifying or adding to a program and simply using it.  Linking a
+program with a library, without changing the library, is in some
+sense simply using the library, and is analogous to running a
+utility program or application program.  However, in a textual
+and legal sense, the linked executable is a combined work, a
+derivative of the original library, and the ordinary General
+Public License treats it as such.
 
-  EXCEPTION NOTICE
+Because of this blurred distinction, using the ordinary General
+Public License for libraries did not effectively promote
+software sharing, because most developers did not use the
+libraries.  We concluded that weaker conditions might promote
+sharing better.
+
+However, unrestricted linking of non-free programs would deprive
+the users of those programs of all benefit from the free status
+of the libraries themselves.  This Library General Public
+License is intended to permit developers of non-free programs to
+use free libraries, while preserving your freedom as a user of
+such programs to change the free libraries that are incorporated
+in them.  (We have not seen how to achieve this as regards
+changes in header files, but we have achieved it as regards
+changes in the actual functions of the Library.)  The hope is
+that this will lead to faster development of free libraries.
+
+The precise terms and conditions for copying, distribution and
+modification follow.  Pay close attention to the difference
+between a "work based on the library" and a "work that uses the
+library".  The former contains code derived from the library,
+while the latter only works together with the library.
+
+Note that it is possible for a library to be covered by the
+ordinary General Public License rather than by this special one.
+
+                GNU LIBRARY GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0. This License Agreement applies to any software library which
+contains a notice placed by the copyright holder or other
+authorized party saying it may be distributed under the terms of
+this Library General Public License (also called "this
+License").  Each licensee is addressed as "you".
+
+A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application
+programs (which use some of those functions and data) to form
+executables.
+
+The "Library", below, refers to any such software library or
+work which has been distributed under these terms.  A "work
+based on the Library" means either the Library or any derivative
+work under copyright law: that is to say, a work containing the
+Library or a portion of it, either verbatim or with
+modifications and/or translated straightforwardly into another
+language.  (Hereinafter, translation is included without
+limitation in the term "modification".)
+
+"Source code" for a work means the preferred form of the work
+for making modifications to it.  For a library, complete source
+code means all the source code for all modules it contains, plus
+any associated interface definition files, plus the scripts used
+to control compilation and installation of the library.
+
+Activities other than copying, distribution and modification are
+not covered by this License; they are outside its scope.  The
+act of running a program using the Library is not restricted,
+and output from such a program is covered only if its contents
+constitute a work based on the Library (independent of the use
+of the Library in a tool for writing it).  Whether that is true
+depends on what the Library does and what the program that uses
+the Library does.
+  
+1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided
+that you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep
+intact all the notices that refer to this License and to the
+absence of any warranty; and distribute a copy of this License
+along with the Library.
+
+You may charge a fee for the physical act of transferring a
+copy, and you may at your option offer warranty protection in
+exchange for a fee.
+ 
+2. You may modify your copy or copies of the Library or any
+portion of it, thus forming a work based on the Library, and
+copy and distribute such modifications or work under the terms
+of Section 1 above, provided that you also meet all of these
+conditions:
+
+    a) The modified work must itself be a software library.
+
+    b) You must cause the files modified to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    c) You must cause the whole of the work to be licensed at no
+    charge to all third parties under the terms of this License.
+
+    d) If a facility in the modified Library refers to a function or a
+    table of data to be supplied by an application program that uses
+    the facility, other than as an argument passed when the facility
+    is invoked, then you must make a good faith effort to ensure that,
+    in the event an application does not supply such function or
+    table, the facility still operates, and performs whatever part of
+    its purpose remains meaningful.
 
-  1. As a special exception, the copyright holders of this library give
-  permission for additional uses of the text contained in this release of
-  the library as licenced under the wxWindows Library Licence, applying
-  either version 3.1 of the Licence, or (at your option) any later version of
-  the Licence as published by the copyright holders of version
-  3.1 of the Licence document.
+    (For example, a function in a library to compute square roots has
+    a purpose that is entirely well-defined independent of the
+    application.  Therefore, Subsection 2d requires that any
+    application-supplied function or table used by this function must
+    be optional: if the application does not supply it, the square
+    root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the
+Library, and can be reasonably considered independent and
+separate works in themselves, then this License, and its terms,
+do not apply to those sections when you distribute them as
+separate works.  But when you distribute the same sections as
+part of a whole which is a work based on the Library, the
+distribution of the whole must be on the terms of this License,
+whose permissions for other licensees extend to the entire
+whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or
+contest your rights to work written entirely by you; rather, the
+intent is to exercise the right to control the distribution of
+derivative or collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the
+Library with the Library (or with a work based on the Library)
+on a volume of a storage or distribution medium does not bring
+the other work under the scope of this License.
+
+3. You may opt to apply the terms of the ordinary GNU General
+Public License instead of this License to a given copy of the
+Library.  To do this, you must alter all the notices that refer
+to this License, so that they refer to the ordinary GNU General
+Public License, version 2, instead of to this License.  (If a
+newer version than version 2 of the ordinary GNU General Public
+License has appeared, then you can specify that version instead
+if you wish.)  Do not make any other change in these notices.
+ 
+Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to
+all subsequent copies and derivative works made from that copy.
+
+This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable
+form under the terms of Sections 1 and 2 above provided that you
+accompany it with the complete corresponding machine-readable
+source code, which must be distributed under the terms of
+Sections 1 and 2 above on a medium customarily used for software
+interchange.
 
-  2. The exception is that you may use, copy, link, modify and distribute
-  under your own terms, binary object code versions of works based
-  on the Library.
+If distribution of object code is made by offering access to
+copy from a designated place, then offering equivalent access to
+copy the source code from the same place satisfies the
+requirement to distribute the source code, even though third
+parties are not compelled to copy the source along with the
+object code.
+
+5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being
+compiled or linked with it, is called a "work that uses the
+Library".  Such a work, in isolation, is not a derivative work
+of the Library, and therefore falls outside the scope of this
+License.
+
+However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library
+(because it contains portions of the Library), rather than a
+"work that uses the library".  The executable is therefore
+covered by this License. Section 6 states terms for distribution
+of such executables.
+
+When a "work that uses the Library" uses material from a header
+file that is part of the Library, the object code for the work
+may be a derivative work of the Library even though the source
+code is not. Whether this is true is especially significant if
+the work can be linked without the Library, or if the work is
+itself a library.  The threshold for this to be true is not
+precisely defined by law.
+
+If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small
+inline functions (ten lines or less in length), then the use of
+the object file is unrestricted, regardless of whether it is
+legally a derivative work.  (Executables containing this object
+code plus portions of the Library will still fall under Section
+6.)
+
+Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of
+Section 6. Any executables containing that work also fall under
+Section 6, whether or not they are linked directly with the
+Library itself.
+ 
+6. As an exception to the Sections above, you may also compile
+or link a "work that uses the Library" with the Library to
+produce a work containing portions of the Library, and
+distribute that work under terms of your choice, provided that
+the terms permit modification of the work for the customer's own
+use and reverse engineering for debugging such modifications.
+
+You must give prominent notice with each copy of the work that
+the Library is used in it and that the Library and its use are
+covered by this License.  You must supply a copy of this
+License.  If the work during execution displays copyright
+notices, you must include the copyright notice for the Library
+among them, as well as a reference directing the user to the
+copy of this License.  Also, you must do one of these things:
 
-  3. If you copy code from files distributed under the terms of the GNU
-  General Public Licence or the GNU Library General Public Licence into a
-  copy of this library, as this licence permits, the exception does not
-  apply to the code that you add in this way.  To avoid misleading anyone as
-  to the status of such modified files, you must delete this exception
-  notice from such code and/or adjust the licensing conditions notice
-  accordingly.
+    a) Accompany the work with the complete corresponding
+    machine-readable source code for the Library including whatever
+    changes were used in the work (which must be distributed under
+    Sections 1 and 2 above); and, if the work is an executable linked
+    with the Library, with the complete machine-readable "work that
+    uses the Library", as object code and/or source code, so that the
+    user can modify the Library and then relink to produce a modified
+    executable containing the modified Library.  (It is understood
+    that the user who changes the contents of definitions files in the
+    Library will not necessarily be able to recompile the application
+    to use the modified definitions.)
+
+    b) Accompany the work with a written offer, valid for at
+    least three years, to give the same user the materials
+    specified in Subsection 6a, above, for a charge no more
+    than the cost of performing this distribution.
+
+    c) If distribution of the work is made by offering access to copy
+    from a designated place, offer equivalent access to copy the above
+    specified materials from the same place.
+
+    d) Verify that the user has already received a copy of these
+    materials or that you have already sent this user a copy.
+
+For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it.  However, as a special
+exception, the source code distributed need not include anything
+that is normally distributed (in either source or binary form)
+with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that
+component itself accompanies the executable.
+
+It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system.  Such a contradiction means you
+cannot use both them and the Library together in an executable
+that you distribute.
+ 
+7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other
+library facilities not covered by this License, and distribute
+such a combined library, provided that the separate distribution
+of the work based on the Library and of the other library
+facilities is otherwise permitted, and provided that you do
+these two things:
+
+    a) Accompany the combined library with a copy of the same work
+    based on the Library, uncombined with any other library
+    facilities.  This must be distributed under the terms of the
+    Sections above.
+
+    b) Give prominent notice with the combined library of the fact
+    that part of it is a work based on the Library, and explaining
+    where to find the accompanying uncombined form of the same work.
+
+8. You may not copy, modify, sublicense, link with, or
+distribute the Library except as expressly provided under this
+License.  Any attempt otherwise to copy, modify, sublicense,
+link with, or distribute the Library is void, and will
+automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you
+under this License will not have their licenses terminated so
+long as such parties remain in full compliance.
+
+9. You are not required to accept this License, since you have
+not signed it.  However, nothing else grants you permission to
+modify or distribute the Library or its derivative works.  These
+actions are prohibited by law if you do not accept this
+License.  Therefore, by modifying or distributing the Library
+(or any work based on the Library), you indicate your acceptance
+of this License to do so, and all its terms and conditions for
+copying, distributing or modifying the Library or works based on
+it.
+
+10. Each time you redistribute the Library (or any work based on
+the Library), the recipient automatically receives a license
+from the original licensor to copy, distribute, link with or
+modify the Library subject to these terms and conditions.  You
+may not impose any further restrictions on the recipients'
+exercise of the rights granted herein. You are not responsible
+for enforcing compliance by third parties to this License.
+ 
+11. If, as a consequence of a court judgment or allegation of
+patent infringement or for any other reason (not limited to
+patent issues), conditions are imposed on you (whether by court
+order, agreement or otherwise) that contradict the conditions of
+this License, they do not excuse you from the conditions of this
+License.  If you cannot distribute so as to satisfy
+simultaneously your obligations under this License and any other
+pertinent obligations, then as a consequence you may not
+distribute the Library at all.  For example, if a patent license
+would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you,
+then the only way you could satisfy both it and this License
+would be to refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable
+under any particular circumstance, the balance of the section is
+intended to apply, and the section as a whole is intended to
+apply in other circumstances.
 
-  4. If you write modifications of your own for this library, it is your
-  choice whether to permit this exception to apply to your modifications. 
-  If you do not wish that, you must delete the exception notice from such
-  code and/or adjust the licensing conditions notice accordingly.
+It is not the purpose of this section to induce you to infringe
+any patents or other property right claims or to contest
+validity of any such claims; this section has the sole purpose
+of protecting the integrity of the free software distribution
+system which is implemented by public license practices.  Many
+people have made generous contributions to the wide range of
+software distributed through that system in reliance on
+consistent application of that system; it is up to the
+author/donor to decide if he or she is willing to distribute
+software through any other system and a licensee cannot impose
+that choice.
+
+This section is intended to make thoroughly clear what is
+believed to be a consequence of the rest of this License.
+
+12. If the distribution and/or use of the Library is restricted
+in certain countries either by patents or by copyrighted
+interfaces, the original copyright holder who places the Library
+under this License may add an explicit geographical distribution
+limitation excluding those countries, so that distribution is
+permitted only in or among countries not thus excluded.  In such
+case, this License incorporates the limitation as if written in
+the body of this License.
+
+13. The Free Software Foundation may publish revised and/or new
+versions of the Library General Public License from time to
+time. Such new versions will be similar in spirit to the present
+version, but may differ in detail to address new problems or
+concerns.
+
+Each version is given a distinguishing version number.  If the
+Library specifies a version number of this License which applies
+to it and "any later version", you have the option of following
+the terms and conditions either of that version or of any later
+version published by the Free Software Foundation.  If the
+Library does not specify a license version number, you may
+choose any version ever published by the Free Software
+Foundation.
+
+14. If you wish to incorporate parts of the Library into other
+free programs whose distribution conditions are incompatible
+with these, write to the author to ask for permission.  For
+software which is copyrighted by the Free Software Foundation,
+write to the Free Software Foundation; we sometimes make
+exceptions for this.  Our decision will be guided by the two
+goals of preserving the free status of all derivatives of our
+free software and of promoting the sharing and reuse of software
+generally.
+
+                           NO WARRANTY
+
+  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND,
+EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
+DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+                    END OF TERMS AND CONDITIONS
+
+ Appendix: How to Apply These Terms to Your New Libraries
+
+If you develop a new library, and you want it to be of the
+greatest possible use to the public, we recommend making it free
+software that everyone can redistribute and change.  You can do
+so by permitting redistribution under these terms (or,
+alternatively, under the terms of the ordinary General Public
+License).
+
+To apply these terms, attach the following notices to the
+library.  It is safest to attach them to the start of each
+source file to most effectively convey the exclusion of
+warranty; and each file should have at least the "copyright"
+line and a pointer to where the full notice is found.
+
+    <one line to give the library's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
+
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public
+    License along with this library; if not, write to the Free
+    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the
+  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+  <signature of Ty Coon>, 1 April 1990
+  Ty Coon, President of Vice
+
+That's all there is to it!
+
--- a/components/wxwidgets/wxwidgets.p5m	Mon May 16 00:50:55 2016 -0700
+++ b/components/wxwidgets/wxwidgets.p5m	Thu May 05 07:38:15 2016 -0700
@@ -35,697 +35,831 @@
 set name=org.opensolaris.arc-caseid value=LSARC/2008/476
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 link path=usr/bin/$(MACH64)/wx-config \
-    target=../../lib/$(MACH64)/wx/config/gtk2-unicode-release-2.8
+    target=../../lib/$(MACH64)/wx/config/gtk2-unicode-3.0
 # wx-config embeds 'bindir'; ensure wxrc exists in usr/bin/$(MACH64)
-link path=usr/bin/$(MACH64)/wxrc target=../wxrc
-link path=usr/bin/wx-config target=../lib/wx/config/gtk2-unicode-release-2.8
-file usr/bin/$(MACH64)/wxrc path=usr/bin/wxrc
-file path=usr/include/wx-2.8/wx/aboutdlg.h
-file path=usr/include/wx-2.8/wx/accel.h
-file path=usr/include/wx-2.8/wx/access.h
-file path=usr/include/wx-2.8/wx/afterstd.h
-file path=usr/include/wx-2.8/wx/anidecod.h
-file path=usr/include/wx-2.8/wx/animate.h
-file path=usr/include/wx-2.8/wx/animdecod.h
-file path=usr/include/wx-2.8/wx/app.h
-file path=usr/include/wx-2.8/wx/apptrait.h
-file path=usr/include/wx-2.8/wx/archive.h
-file path=usr/include/wx-2.8/wx/arrimpl.cpp
-file path=usr/include/wx-2.8/wx/arrstr.h
-file path=usr/include/wx-2.8/wx/artprov.h
-file path=usr/include/wx-2.8/wx/aui/aui.h
-file path=usr/include/wx-2.8/wx/aui/auibar.h
-file path=usr/include/wx-2.8/wx/aui/auibook.h
-file path=usr/include/wx-2.8/wx/aui/dockart.h
-file path=usr/include/wx-2.8/wx/aui/floatpane.h
-file path=usr/include/wx-2.8/wx/aui/framemanager.h
-file path=usr/include/wx-2.8/wx/aui/tabmdi.h
-file path=usr/include/wx-2.8/wx/beforestd.h
-file path=usr/include/wx-2.8/wx/bitmap.h
-file path=usr/include/wx-2.8/wx/bmpbuttn.h
-file path=usr/include/wx-2.8/wx/bmpcbox.h
-file path=usr/include/wx-2.8/wx/bookctrl.h
-file path=usr/include/wx-2.8/wx/brush.h
-file path=usr/include/wx-2.8/wx/buffer.h
-file path=usr/include/wx-2.8/wx/build.h
-file path=usr/include/wx-2.8/wx/busyinfo.h
-file path=usr/include/wx-2.8/wx/button.h
-file path=usr/include/wx-2.8/wx/calctrl.h
-file path=usr/include/wx-2.8/wx/caret.h
-file path=usr/include/wx-2.8/wx/checkbox.h
-file path=usr/include/wx-2.8/wx/checklst.h
-file path=usr/include/wx-2.8/wx/chkconf.h
-file path=usr/include/wx-2.8/wx/choicdlg.h
-file path=usr/include/wx-2.8/wx/choice.h
-file path=usr/include/wx-2.8/wx/choicebk.h
-file path=usr/include/wx-2.8/wx/clipbrd.h
-file path=usr/include/wx-2.8/wx/clntdata.h
-file path=usr/include/wx-2.8/wx/clrpicker.h
-file path=usr/include/wx-2.8/wx/cmdline.h
-file path=usr/include/wx-2.8/wx/cmdproc.h
-file path=usr/include/wx-2.8/wx/cmndata.h
-file path=usr/include/wx-2.8/wx/collpane.h
-file path=usr/include/wx-2.8/wx/colordlg.h
-file path=usr/include/wx-2.8/wx/colour.h
-file path=usr/include/wx-2.8/wx/combo.h
-file path=usr/include/wx-2.8/wx/combobox.h
-file path=usr/include/wx-2.8/wx/confbase.h
-file path=usr/include/wx-2.8/wx/config.h
-file path=usr/include/wx-2.8/wx/containr.h
-file path=usr/include/wx-2.8/wx/control.h
-file path=usr/include/wx-2.8/wx/convauto.h
-file path=usr/include/wx-2.8/wx/cpp.h
-file path=usr/include/wx-2.8/wx/cshelp.h
-file path=usr/include/wx-2.8/wx/ctrlsub.h
-file path=usr/include/wx-2.8/wx/cursor.h
-file path=usr/include/wx-2.8/wx/dataobj.h
-file path=usr/include/wx-2.8/wx/dataview.h
-file path=usr/include/wx-2.8/wx/datectrl.h
-file path=usr/include/wx-2.8/wx/dateevt.h
-file path=usr/include/wx-2.8/wx/datetime.h
-file path=usr/include/wx-2.8/wx/datstrm.h
-file path=usr/include/wx-2.8/wx/db.h
-file path=usr/include/wx-2.8/wx/dbgrid.h
-file path=usr/include/wx-2.8/wx/dbkeyg.h
-file path=usr/include/wx-2.8/wx/dbtable.h
-file path=usr/include/wx-2.8/wx/dc.h
-file path=usr/include/wx-2.8/wx/dcbuffer.h
-file path=usr/include/wx-2.8/wx/dcclient.h
-file path=usr/include/wx-2.8/wx/dcgraph.h
-file path=usr/include/wx-2.8/wx/dcmemory.h
-file path=usr/include/wx-2.8/wx/dcmirror.h
-file path=usr/include/wx-2.8/wx/dcprint.h
-file path=usr/include/wx-2.8/wx/dcps.h
-file path=usr/include/wx-2.8/wx/dcscreen.h
-file path=usr/include/wx-2.8/wx/dde.h
-file path=usr/include/wx-2.8/wx/debug.h
-file path=usr/include/wx-2.8/wx/debugrpt.h
-file path=usr/include/wx-2.8/wx/defs.h
-file path=usr/include/wx-2.8/wx/dialog.h
-file path=usr/include/wx-2.8/wx/dialup.h
-file path=usr/include/wx-2.8/wx/dir.h
-file path=usr/include/wx-2.8/wx/dirctrl.h
-file path=usr/include/wx-2.8/wx/dirdlg.h
-file path=usr/include/wx-2.8/wx/display.h
-file path=usr/include/wx-2.8/wx/display_impl.h
-file path=usr/include/wx-2.8/wx/dlimpexp.h
-file path=usr/include/wx-2.8/wx/dnd.h
-file path=usr/include/wx-2.8/wx/docmdi.h
-file path=usr/include/wx-2.8/wx/docview.h
-file path=usr/include/wx-2.8/wx/dragimag.h
-file path=usr/include/wx-2.8/wx/dynarray.h
-file path=usr/include/wx-2.8/wx/dynlib.h
-file path=usr/include/wx-2.8/wx/dynload.h
-file path=usr/include/wx-2.8/wx/effects.h
-file path=usr/include/wx-2.8/wx/encconv.h
-file path=usr/include/wx-2.8/wx/encinfo.h
-file path=usr/include/wx-2.8/wx/event.h
-file path=usr/include/wx-2.8/wx/evtloop.h
-file path=usr/include/wx-2.8/wx/except.h
-file path=usr/include/wx-2.8/wx/fdrepdlg.h
-file path=usr/include/wx-2.8/wx/features.h
-file path=usr/include/wx-2.8/wx/ffile.h
-file path=usr/include/wx-2.8/wx/file.h
-file path=usr/include/wx-2.8/wx/fileconf.h
-file path=usr/include/wx-2.8/wx/filedlg.h
-file path=usr/include/wx-2.8/wx/filefn.h
-file path=usr/include/wx-2.8/wx/filename.h
-file path=usr/include/wx-2.8/wx/filepicker.h
-file path=usr/include/wx-2.8/wx/filesys.h
-file path=usr/include/wx-2.8/wx/fl/antiflickpl.h
-file path=usr/include/wx-2.8/wx/fl/bardragpl.h
-file path=usr/include/wx-2.8/wx/fl/barhintspl.h
-file path=usr/include/wx-2.8/wx/fl/cbcustom.h
-file path=usr/include/wx-2.8/wx/fl/controlbar.h
-file path=usr/include/wx-2.8/wx/fl/dynbarhnd.h
-file path=usr/include/wx-2.8/wx/fl/dyntbar.h
-file path=usr/include/wx-2.8/wx/fl/dyntbarhnd.h
-file path=usr/include/wx-2.8/wx/fl/fldefs.h
-file path=usr/include/wx-2.8/wx/fl/frmview.h
-file path=usr/include/wx-2.8/wx/fl/garbagec.h
-file path=usr/include/wx-2.8/wx/fl/gcupdatesmgr.h
-file path=usr/include/wx-2.8/wx/fl/hintanimpl.h
-file path=usr/include/wx-2.8/wx/fl/newbmpbtn.h
-file path=usr/include/wx-2.8/wx/fl/panedrawpl.h
-file path=usr/include/wx-2.8/wx/fl/rowdragpl.h
-file path=usr/include/wx-2.8/wx/fl/rowlayoutpl.h
-file path=usr/include/wx-2.8/wx/fl/toolwnd.h
-file path=usr/include/wx-2.8/wx/fl/updatesmgr.h
-file path=usr/include/wx-2.8/wx/fmappriv.h
-file path=usr/include/wx-2.8/wx/font.h
-file path=usr/include/wx-2.8/wx/fontdlg.h
-file path=usr/include/wx-2.8/wx/fontenc.h
-file path=usr/include/wx-2.8/wx/fontenum.h
-file path=usr/include/wx-2.8/wx/fontmap.h
-file path=usr/include/wx-2.8/wx/fontpicker.h
-file path=usr/include/wx-2.8/wx/fontutil.h
-file path=usr/include/wx-2.8/wx/frame.h
-file path=usr/include/wx-2.8/wx/fs_arc.h
-file path=usr/include/wx-2.8/wx/fs_filter.h
-file path=usr/include/wx-2.8/wx/fs_inet.h
-file path=usr/include/wx-2.8/wx/fs_mem.h
-file path=usr/include/wx-2.8/wx/fs_zip.h
-file path=usr/include/wx-2.8/wx/gauge.h
-file path=usr/include/wx-2.8/wx/gbsizer.h
-file path=usr/include/wx-2.8/wx/gdicmn.h
-file path=usr/include/wx-2.8/wx/gdiobj.h
-file path=usr/include/wx-2.8/wx/generic/aboutdlgg.h
-file path=usr/include/wx-2.8/wx/generic/accel.h
-file path=usr/include/wx-2.8/wx/generic/animate.h
-file path=usr/include/wx-2.8/wx/generic/bmpcbox.h
-file path=usr/include/wx-2.8/wx/generic/busyinfo.h
-file path=usr/include/wx-2.8/wx/generic/buttonbar.h
-file path=usr/include/wx-2.8/wx/generic/calctrl.h
-file path=usr/include/wx-2.8/wx/generic/caret.h
-file path=usr/include/wx-2.8/wx/generic/choicdgg.h
-file path=usr/include/wx-2.8/wx/generic/clrpickerg.h
-file path=usr/include/wx-2.8/wx/generic/collpaneg.h
-file path=usr/include/wx-2.8/wx/generic/colrdlgg.h
-file path=usr/include/wx-2.8/wx/generic/combo.h
-file path=usr/include/wx-2.8/wx/generic/dataview.h
-file path=usr/include/wx-2.8/wx/generic/datectrl.h
-file path=usr/include/wx-2.8/wx/generic/dcpsg.h
-file path=usr/include/wx-2.8/wx/generic/dirctrlg.h
-file path=usr/include/wx-2.8/wx/generic/dirdlgg.h
-file path=usr/include/wx-2.8/wx/generic/dragimgg.h
-file path=usr/include/wx-2.8/wx/generic/fdrepdlg.h
-file path=usr/include/wx-2.8/wx/generic/filedlgg.h
-file path=usr/include/wx-2.8/wx/generic/filepickerg.h
-file path=usr/include/wx-2.8/wx/generic/fontdlgg.h
-file path=usr/include/wx-2.8/wx/generic/fontpickerg.h
-file path=usr/include/wx-2.8/wx/generic/grid.h
-file path=usr/include/wx-2.8/wx/generic/gridctrl.h
-file path=usr/include/wx-2.8/wx/generic/gridsel.h
-file path=usr/include/wx-2.8/wx/generic/helpext.h
-file path=usr/include/wx-2.8/wx/generic/icon.h
-file path=usr/include/wx-2.8/wx/generic/imaglist.h
-file path=usr/include/wx-2.8/wx/generic/laywin.h
-file path=usr/include/wx-2.8/wx/generic/listctrl.h
-file path=usr/include/wx-2.8/wx/generic/logg.h
-file path=usr/include/wx-2.8/wx/generic/msgdlgg.h
-file path=usr/include/wx-2.8/wx/generic/notebook.h
-file path=usr/include/wx-2.8/wx/generic/numdlgg.h
-file path=usr/include/wx-2.8/wx/generic/paletteg.h
-file path=usr/include/wx-2.8/wx/generic/panelg.h
-file path=usr/include/wx-2.8/wx/generic/printps.h
-file path=usr/include/wx-2.8/wx/generic/prntdlgg.h
-file path=usr/include/wx-2.8/wx/generic/progdlgg.h
-file path=usr/include/wx-2.8/wx/generic/propdlg.h
-file path=usr/include/wx-2.8/wx/generic/sashwin.h
-file path=usr/include/wx-2.8/wx/generic/scrolwin.h
-file path=usr/include/wx-2.8/wx/generic/spinctlg.h
-file path=usr/include/wx-2.8/wx/generic/splash.h
-file path=usr/include/wx-2.8/wx/generic/splitter.h
-file path=usr/include/wx-2.8/wx/generic/srchctlg.h
-file path=usr/include/wx-2.8/wx/generic/statusbr.h
-file path=usr/include/wx-2.8/wx/generic/tabg.h
-file path=usr/include/wx-2.8/wx/generic/textdlgg.h
-file path=usr/include/wx-2.8/wx/generic/timer.h
-file path=usr/include/wx-2.8/wx/generic/treectlg.h
-file path=usr/include/wx-2.8/wx/generic/wizard.h
-file path=usr/include/wx-2.8/wx/geometry.h
-file path=usr/include/wx-2.8/wx/gifdecod.h
-file path=usr/include/wx-2.8/wx/gizmos/dynamicsash.h
-file path=usr/include/wx-2.8/wx/gizmos/editlbox.h
-file path=usr/include/wx-2.8/wx/gizmos/gizmos.h
-file path=usr/include/wx-2.8/wx/gizmos/ledctrl.h
-file path=usr/include/wx-2.8/wx/gizmos/multicell.h
-file path=usr/include/wx-2.8/wx/gizmos/splittree.h
-file path=usr/include/wx-2.8/wx/gizmos/statpict.h
-file path=usr/include/wx-2.8/wx/gizmos/xh_statpict.h
-file path=usr/include/wx-2.8/wx/glcanvas.h
-file path=usr/include/wx-2.8/wx/graphics.h
-file path=usr/include/wx-2.8/wx/grid.h
-file path=usr/include/wx-2.8/wx/gsocket.h
-file path=usr/include/wx-2.8/wx/gtk/accel.h
-file path=usr/include/wx-2.8/wx/gtk/animate.h
-file path=usr/include/wx-2.8/wx/gtk/app.h
-file path=usr/include/wx-2.8/wx/gtk/assertdlg_gtk.h
-file path=usr/include/wx-2.8/wx/gtk/bitmap.h
-file path=usr/include/wx-2.8/wx/gtk/bmpbuttn.h
-file path=usr/include/wx-2.8/wx/gtk/brush.h
-file path=usr/include/wx-2.8/wx/gtk/button.h
-file path=usr/include/wx-2.8/wx/gtk/checkbox.h
-file path=usr/include/wx-2.8/wx/gtk/checklst.h
-file path=usr/include/wx-2.8/wx/gtk/choice.h
-file path=usr/include/wx-2.8/wx/gtk/clipbrd.h
-file path=usr/include/wx-2.8/wx/gtk/clrpicker.h
-file path=usr/include/wx-2.8/wx/gtk/collpane.h
-file path=usr/include/wx-2.8/wx/gtk/colordlg.h
-file path=usr/include/wx-2.8/wx/gtk/colour.h
-file path=usr/include/wx-2.8/wx/gtk/combobox.h
-file path=usr/include/wx-2.8/wx/gtk/control.h
-file path=usr/include/wx-2.8/wx/gtk/cursor.h
-file path=usr/include/wx-2.8/wx/gtk/dataform.h
-file path=usr/include/wx-2.8/wx/gtk/dataobj.h
-file path=usr/include/wx-2.8/wx/gtk/dataobj2.h
-file path=usr/include/wx-2.8/wx/gtk/dc.h
-file path=usr/include/wx-2.8/wx/gtk/dcclient.h
-file path=usr/include/wx-2.8/wx/gtk/dcmemory.h
-file path=usr/include/wx-2.8/wx/gtk/dcscreen.h
-file path=usr/include/wx-2.8/wx/gtk/dialog.h
-file path=usr/include/wx-2.8/wx/gtk/dirdlg.h
-file path=usr/include/wx-2.8/wx/gtk/dnd.h
-file path=usr/include/wx-2.8/wx/gtk/filedlg.h
-file path=usr/include/wx-2.8/wx/gtk/filepicker.h
-file path=usr/include/wx-2.8/wx/gtk/font.h
-file path=usr/include/wx-2.8/wx/gtk/fontdlg.h
-file path=usr/include/wx-2.8/wx/gtk/fontpicker.h
-file path=usr/include/wx-2.8/wx/gtk/frame.h
-file path=usr/include/wx-2.8/wx/gtk/gauge.h
-file path=usr/include/wx-2.8/wx/gtk/glcanvas.h
-file path=usr/include/wx-2.8/wx/gtk/gnome/gprint.h
-file path=usr/include/wx-2.8/wx/gtk/gnome/gvfs.h
-file path=usr/include/wx-2.8/wx/gtk/listbox.h
-file path=usr/include/wx-2.8/wx/gtk/mdi.h
-file path=usr/include/wx-2.8/wx/gtk/menu.h
-file path=usr/include/wx-2.8/wx/gtk/menuitem.h
-file path=usr/include/wx-2.8/wx/gtk/minifram.h
-file path=usr/include/wx-2.8/wx/gtk/msgdlg.h
-file path=usr/include/wx-2.8/wx/gtk/notebook.h
-file path=usr/include/wx-2.8/wx/gtk/pen.h
-file path=usr/include/wx-2.8/wx/gtk/popupwin.h
-file path=usr/include/wx-2.8/wx/gtk/radiobox.h
-file path=usr/include/wx-2.8/wx/gtk/radiobut.h
-file path=usr/include/wx-2.8/wx/gtk/region.h
-file path=usr/include/wx-2.8/wx/gtk/scrolbar.h
-file path=usr/include/wx-2.8/wx/gtk/scrolwin.h
-file path=usr/include/wx-2.8/wx/gtk/slider.h
-file path=usr/include/wx-2.8/wx/gtk/spinbutt.h
-file path=usr/include/wx-2.8/wx/gtk/spinctrl.h
-file path=usr/include/wx-2.8/wx/gtk/statbmp.h
-file path=usr/include/wx-2.8/wx/gtk/statbox.h
-file path=usr/include/wx-2.8/wx/gtk/statline.h
-file path=usr/include/wx-2.8/wx/gtk/stattext.h
-file path=usr/include/wx-2.8/wx/gtk/tbargtk.h
-file path=usr/include/wx-2.8/wx/gtk/textctrl.h
-file path=usr/include/wx-2.8/wx/gtk/tglbtn.h
-file path=usr/include/wx-2.8/wx/gtk/timer.h
-file path=usr/include/wx-2.8/wx/gtk/tooltip.h
-file path=usr/include/wx-2.8/wx/gtk/toplevel.h
-file path=usr/include/wx-2.8/wx/gtk/treectrl.h
-file path=usr/include/wx-2.8/wx/gtk/treeentry_gtk.h
-file path=usr/include/wx-2.8/wx/gtk/win_gtk.h
-file path=usr/include/wx-2.8/wx/gtk/window.h
-file path=usr/include/wx-2.8/wx/hash.h
-file path=usr/include/wx-2.8/wx/hashmap.h
-file path=usr/include/wx-2.8/wx/hashset.h
-file path=usr/include/wx-2.8/wx/help.h
-file path=usr/include/wx-2.8/wx/helpbase.h
-file path=usr/include/wx-2.8/wx/helphtml.h
-file path=usr/include/wx-2.8/wx/helpwin.h
-file path=usr/include/wx-2.8/wx/html/forcelnk.h
-file path=usr/include/wx-2.8/wx/html/helpctrl.h
-file path=usr/include/wx-2.8/wx/html/helpdata.h
-file path=usr/include/wx-2.8/wx/html/helpdlg.h
-file path=usr/include/wx-2.8/wx/html/helpfrm.h
-file path=usr/include/wx-2.8/wx/html/helpwnd.h
-file path=usr/include/wx-2.8/wx/html/htmlcell.h
-file path=usr/include/wx-2.8/wx/html/htmldefs.h
-file path=usr/include/wx-2.8/wx/html/htmlfilt.h
-file path=usr/include/wx-2.8/wx/html/htmlpars.h
-file path=usr/include/wx-2.8/wx/html/htmlproc.h
-file path=usr/include/wx-2.8/wx/html/htmltag.h
-file path=usr/include/wx-2.8/wx/html/htmlwin.h
-file path=usr/include/wx-2.8/wx/html/htmprint.h
-file path=usr/include/wx-2.8/wx/html/m_templ.h
-file path=usr/include/wx-2.8/wx/html/winpars.h
-file path=usr/include/wx-2.8/wx/htmllbox.h
-file path=usr/include/wx-2.8/wx/hyperlink.h
-file path=usr/include/wx-2.8/wx/icon.h
-file path=usr/include/wx-2.8/wx/iconbndl.h
-file path=usr/include/wx-2.8/wx/iconloc.h
-file path=usr/include/wx-2.8/wx/imagbmp.h
-file path=usr/include/wx-2.8/wx/image.h
-file path=usr/include/wx-2.8/wx/imaggif.h
-file path=usr/include/wx-2.8/wx/imagiff.h
-file path=usr/include/wx-2.8/wx/imagjpeg.h
-file path=usr/include/wx-2.8/wx/imaglist.h
-file path=usr/include/wx-2.8/wx/imagpcx.h
-file path=usr/include/wx-2.8/wx/imagpng.h
-file path=usr/include/wx-2.8/wx/imagpnm.h
-file path=usr/include/wx-2.8/wx/imagtga.h
-file path=usr/include/wx-2.8/wx/imagtiff.h
-file path=usr/include/wx-2.8/wx/imagxpm.h
-file path=usr/include/wx-2.8/wx/init.h
-file path=usr/include/wx-2.8/wx/intl.h
-file path=usr/include/wx-2.8/wx/iosfwrap.h
-file path=usr/include/wx-2.8/wx/ioswrap.h
-file path=usr/include/wx-2.8/wx/ipc.h
-file path=usr/include/wx-2.8/wx/ipcbase.h
-file path=usr/include/wx-2.8/wx/isql.h
-file path=usr/include/wx-2.8/wx/isqlext.h
-file path=usr/include/wx-2.8/wx/joystick.h
-file path=usr/include/wx-2.8/wx/layout.h
-file path=usr/include/wx-2.8/wx/laywin.h
-file path=usr/include/wx-2.8/wx/link.h
-file path=usr/include/wx-2.8/wx/list.h
-file path=usr/include/wx-2.8/wx/listbase.h
-file path=usr/include/wx-2.8/wx/listbook.h
-file path=usr/include/wx-2.8/wx/listbox.h
-file path=usr/include/wx-2.8/wx/listctrl.h
-file path=usr/include/wx-2.8/wx/listimpl.cpp
-file path=usr/include/wx-2.8/wx/log.h
-file path=usr/include/wx-2.8/wx/longlong.h
-file path=usr/include/wx-2.8/wx/math.h
-file path=usr/include/wx-2.8/wx/matrix.h
-file path=usr/include/wx-2.8/wx/mdi.h
-file path=usr/include/wx-2.8/wx/mediactrl.h
-file path=usr/include/wx-2.8/wx/memconf.h
-file path=usr/include/wx-2.8/wx/memory.h
-file path=usr/include/wx-2.8/wx/memtext.h
-file path=usr/include/wx-2.8/wx/menu.h
-file path=usr/include/wx-2.8/wx/menuitem.h
-file path=usr/include/wx-2.8/wx/metafile.h
-file path=usr/include/wx-2.8/wx/mimetype.h
-file path=usr/include/wx-2.8/wx/minifram.h
-file path=usr/include/wx-2.8/wx/module.h
-file path=usr/include/wx-2.8/wx/msgdlg.h
-file path=usr/include/wx-2.8/wx/msgout.h
-file path=usr/include/wx-2.8/wx/mstream.h
-file path=usr/include/wx-2.8/wx/notebook.h
-file path=usr/include/wx-2.8/wx/numdlg.h
-file path=usr/include/wx-2.8/wx/object.h
-file path=usr/include/wx-2.8/wx/odcombo.h
-file path=usr/include/wx-2.8/wx/ogl/basic.h
-file path=usr/include/wx-2.8/wx/ogl/basicp.h
-file path=usr/include/wx-2.8/wx/ogl/bmpshape.h
-file path=usr/include/wx-2.8/wx/ogl/canvas.h
-file path=usr/include/wx-2.8/wx/ogl/composit.h
-file path=usr/include/wx-2.8/wx/ogl/constrnt.h
-file path=usr/include/wx-2.8/wx/ogl/divided.h
-file path=usr/include/wx-2.8/wx/ogl/drawn.h
-file path=usr/include/wx-2.8/wx/ogl/drawnp.h
-file path=usr/include/wx-2.8/wx/ogl/lines.h
-file path=usr/include/wx-2.8/wx/ogl/linesp.h
-file path=usr/include/wx-2.8/wx/ogl/mfutils.h
-file path=usr/include/wx-2.8/wx/ogl/misc.h
-file path=usr/include/wx-2.8/wx/ogl/ogl.h
-file path=usr/include/wx-2.8/wx/ogl/ogldiag.h
-file path=usr/include/wx-2.8/wx/overlay.h
-file path=usr/include/wx-2.8/wx/ownerdrw.h
-file path=usr/include/wx-2.8/wx/palette.h
-file path=usr/include/wx-2.8/wx/panel.h
-file path=usr/include/wx-2.8/wx/paper.h
-file path=usr/include/wx-2.8/wx/pen.h
-file path=usr/include/wx-2.8/wx/pickerbase.h
-file path=usr/include/wx-2.8/wx/platform.h
-file path=usr/include/wx-2.8/wx/platinfo.h
-file path=usr/include/wx-2.8/wx/plot/plot.h
-file path=usr/include/wx-2.8/wx/plot/plot_dwn.bmp
-file path=usr/include/wx-2.8/wx/plot/plot_enl.bmp
-file path=usr/include/wx-2.8/wx/plot/plot_shr.bmp
-file path=usr/include/wx-2.8/wx/plot/plot_up.bmp
-file path=usr/include/wx-2.8/wx/plot/plot_zin.bmp
-file path=usr/include/wx-2.8/wx/plot/plot_zot.bmp
-file path=usr/include/wx-2.8/wx/plot/wxplot.rc
-file path=usr/include/wx-2.8/wx/popupwin.h
-file path=usr/include/wx-2.8/wx/power.h
-file path=usr/include/wx-2.8/wx/print.h
-file path=usr/include/wx-2.8/wx/printdlg.h
-file path=usr/include/wx-2.8/wx/prntbase.h
-file path=usr/include/wx-2.8/wx/process.h
-file path=usr/include/wx-2.8/wx/progdlg.h
-file path=usr/include/wx-2.8/wx/propdlg.h
-file path=usr/include/wx-2.8/wx/protocol/file.h
-file path=usr/include/wx-2.8/wx/protocol/ftp.h
-file path=usr/include/wx-2.8/wx/protocol/http.h
-file path=usr/include/wx-2.8/wx/protocol/protocol.h
-file path=usr/include/wx-2.8/wx/ptr_scpd.h
-file path=usr/include/wx-2.8/wx/quantize.h
-file path=usr/include/wx-2.8/wx/radiobox.h
-file path=usr/include/wx-2.8/wx/radiobut.h
-file path=usr/include/wx-2.8/wx/rawbmp.h
-file path=usr/include/wx-2.8/wx/recguard.h
-file path=usr/include/wx-2.8/wx/regex.h
-file path=usr/include/wx-2.8/wx/region.h
-file path=usr/include/wx-2.8/wx/renderer.h
-file path=usr/include/wx-2.8/wx/richtext/richtextbuffer.h
-file path=usr/include/wx-2.8/wx/richtext/richtextctrl.h
-file path=usr/include/wx-2.8/wx/richtext/richtextformatdlg.h
-file path=usr/include/wx-2.8/wx/richtext/richtexthtml.h
-file path=usr/include/wx-2.8/wx/richtext/richtextprint.h
-file path=usr/include/wx-2.8/wx/richtext/richtextstyledlg.h
-file path=usr/include/wx-2.8/wx/richtext/richtextstyles.h
-file path=usr/include/wx-2.8/wx/richtext/richtextsymboldlg.h
-file path=usr/include/wx-2.8/wx/richtext/richtextxml.h
-file path=usr/include/wx-2.8/wx/sashwin.h
-file path=usr/include/wx-2.8/wx/sckaddr.h
-file path=usr/include/wx-2.8/wx/sckipc.h
-file path=usr/include/wx-2.8/wx/sckstrm.h
-file path=usr/include/wx-2.8/wx/scopeguard.h
-file path=usr/include/wx-2.8/wx/scrolbar.h
-file path=usr/include/wx-2.8/wx/scrolwin.h
-file path=usr/include/wx-2.8/wx/selstore.h
-file path=usr/include/wx-2.8/wx/settings.h
-file path=usr/include/wx-2.8/wx/sizer.h
-file path=usr/include/wx-2.8/wx/slider.h
-file path=usr/include/wx-2.8/wx/snglinst.h
-file path=usr/include/wx-2.8/wx/socket.h
-file path=usr/include/wx-2.8/wx/sound.h
-file path=usr/include/wx-2.8/wx/spinbutt.h
-file path=usr/include/wx-2.8/wx/spinctrl.h
-file path=usr/include/wx-2.8/wx/splash.h
-file path=usr/include/wx-2.8/wx/splitter.h
-file path=usr/include/wx-2.8/wx/srchctrl.h
-file path=usr/include/wx-2.8/wx/sstream.h
-file path=usr/include/wx-2.8/wx/stack.h
-file path=usr/include/wx-2.8/wx/stackwalk.h
-file path=usr/include/wx-2.8/wx/statbmp.h
-file path=usr/include/wx-2.8/wx/statbox.h
-file path=usr/include/wx-2.8/wx/statline.h
-file path=usr/include/wx-2.8/wx/stattext.h
-file path=usr/include/wx-2.8/wx/statusbr.h
-file path=usr/include/wx-2.8/wx/stc/stc.h
-file path=usr/include/wx-2.8/wx/stdpaths.h
-file path=usr/include/wx-2.8/wx/stockitem.h
-file path=usr/include/wx-2.8/wx/stopwatch.h
-file path=usr/include/wx-2.8/wx/strconv.h
-file path=usr/include/wx-2.8/wx/stream.h
-file path=usr/include/wx-2.8/wx/string.h
-file path=usr/include/wx-2.8/wx/svg/dcsvg.h
-file path=usr/include/wx-2.8/wx/sysopt.h
-file path=usr/include/wx-2.8/wx/tab.h
-file path=usr/include/wx-2.8/wx/tabctrl.h
-file path=usr/include/wx-2.8/wx/tarstrm.h
-file path=usr/include/wx-2.8/wx/taskbar.h
-file path=usr/include/wx-2.8/wx/tbarbase.h
-file path=usr/include/wx-2.8/wx/textbuf.h
-file path=usr/include/wx-2.8/wx/textctrl.h
-file path=usr/include/wx-2.8/wx/textdlg.h
-file path=usr/include/wx-2.8/wx/textfile.h
-file path=usr/include/wx-2.8/wx/tglbtn.h
-file path=usr/include/wx-2.8/wx/thread.h
-file path=usr/include/wx-2.8/wx/thrimpl.cpp
-file path=usr/include/wx-2.8/wx/timer.h
-file path=usr/include/wx-2.8/wx/tipdlg.h
-file path=usr/include/wx-2.8/wx/tipwin.h
-file path=usr/include/wx-2.8/wx/tokenzr.h
-file path=usr/include/wx-2.8/wx/toolbar.h
-file path=usr/include/wx-2.8/wx/toolbook.h
-file path=usr/include/wx-2.8/wx/tooltip.h
-file path=usr/include/wx-2.8/wx/toplevel.h
-file path=usr/include/wx-2.8/wx/treebase.h
-file path=usr/include/wx-2.8/wx/treebook.h
-file path=usr/include/wx-2.8/wx/treectrl.h
-file path=usr/include/wx-2.8/wx/txtstrm.h
-file path=usr/include/wx-2.8/wx/types.h
-file path=usr/include/wx-2.8/wx/unix/apptbase.h
-file path=usr/include/wx-2.8/wx/unix/apptrait.h
-file path=usr/include/wx-2.8/wx/unix/execute.h
-file path=usr/include/wx-2.8/wx/unix/fontutil.h
-file path=usr/include/wx-2.8/wx/unix/gsockunx.h
-file path=usr/include/wx-2.8/wx/unix/joystick.h
-file path=usr/include/wx-2.8/wx/unix/mimetype.h
-file path=usr/include/wx-2.8/wx/unix/pipe.h
-file path=usr/include/wx-2.8/wx/unix/private.h
-file path=usr/include/wx-2.8/wx/unix/sound.h
-file path=usr/include/wx-2.8/wx/unix/stackwalk.h
-file path=usr/include/wx-2.8/wx/unix/stdpaths.h
-file path=usr/include/wx-2.8/wx/unix/taskbarx11.h
-file path=usr/include/wx-2.8/wx/unix/utilsx11.h
-file path=usr/include/wx-2.8/wx/uri.h
-file path=usr/include/wx-2.8/wx/url.h
-file path=usr/include/wx-2.8/wx/utils.h
-file path=usr/include/wx-2.8/wx/valgen.h
-file path=usr/include/wx-2.8/wx/validate.h
-file path=usr/include/wx-2.8/wx/valtext.h
-file path=usr/include/wx-2.8/wx/variant.h
-file path=usr/include/wx-2.8/wx/vector.h
-file path=usr/include/wx-2.8/wx/version.h
-file path=usr/include/wx-2.8/wx/vidmode.h
-file path=usr/include/wx-2.8/wx/vlbox.h
-file path=usr/include/wx-2.8/wx/vms_x_fix.h
-file path=usr/include/wx-2.8/wx/volume.h
-file path=usr/include/wx-2.8/wx/vscroll.h
-file path=usr/include/wx-2.8/wx/wave.h
-file path=usr/include/wx-2.8/wx/wfstream.h
-file path=usr/include/wx-2.8/wx/window.h
-file path=usr/include/wx-2.8/wx/wizard.h
-file path=usr/include/wx-2.8/wx/wupdlock.h
-file path=usr/include/wx-2.8/wx/wx.h
-file path=usr/include/wx-2.8/wx/wxchar.h
-file path=usr/include/wx-2.8/wx/wxhtml.h
-file path=usr/include/wx-2.8/wx/wxprec.h
-file path=usr/include/wx-2.8/wx/xml/xml.h
-file path=usr/include/wx-2.8/wx/xpmdecod.h
-file path=usr/include/wx-2.8/wx/xpmhand.h
-file path=usr/include/wx-2.8/wx/xrc/xh_all.h
-file path=usr/include/wx-2.8/wx/xrc/xh_animatctrl.h
-file path=usr/include/wx-2.8/wx/xrc/xh_bmp.h
-file path=usr/include/wx-2.8/wx/xrc/xh_bmpbt.h
-file path=usr/include/wx-2.8/wx/xrc/xh_bmpcbox.h
-file path=usr/include/wx-2.8/wx/xrc/xh_bttn.h
-file path=usr/include/wx-2.8/wx/xrc/xh_cald.h
-file path=usr/include/wx-2.8/wx/xrc/xh_chckb.h
-file path=usr/include/wx-2.8/wx/xrc/xh_chckl.h
-file path=usr/include/wx-2.8/wx/xrc/xh_choic.h
-file path=usr/include/wx-2.8/wx/xrc/xh_choicbk.h
-file path=usr/include/wx-2.8/wx/xrc/xh_clrpicker.h
-file path=usr/include/wx-2.8/wx/xrc/xh_collpane.h
-file path=usr/include/wx-2.8/wx/xrc/xh_combo.h
-file path=usr/include/wx-2.8/wx/xrc/xh_datectrl.h
-file path=usr/include/wx-2.8/wx/xrc/xh_dirpicker.h
-file path=usr/include/wx-2.8/wx/xrc/xh_dlg.h
-file path=usr/include/wx-2.8/wx/xrc/xh_filepicker.h
-file path=usr/include/wx-2.8/wx/xrc/xh_fontpicker.h
-file path=usr/include/wx-2.8/wx/xrc/xh_frame.h
-file path=usr/include/wx-2.8/wx/xrc/xh_gauge.h
-file path=usr/include/wx-2.8/wx/xrc/xh_gdctl.h
-file path=usr/include/wx-2.8/wx/xrc/xh_grid.h
-file path=usr/include/wx-2.8/wx/xrc/xh_html.h
-file path=usr/include/wx-2.8/wx/xrc/xh_htmllbox.h
-file path=usr/include/wx-2.8/wx/xrc/xh_hyperlink.h
-file path=usr/include/wx-2.8/wx/xrc/xh_listb.h
-file path=usr/include/wx-2.8/wx/xrc/xh_listbk.h
-file path=usr/include/wx-2.8/wx/xrc/xh_listc.h
-file path=usr/include/wx-2.8/wx/xrc/xh_mdi.h
-file path=usr/include/wx-2.8/wx/xrc/xh_menu.h
-file path=usr/include/wx-2.8/wx/xrc/xh_notbk.h
-file path=usr/include/wx-2.8/wx/xrc/xh_odcombo.h
-file path=usr/include/wx-2.8/wx/xrc/xh_panel.h
-file path=usr/include/wx-2.8/wx/xrc/xh_propdlg.h
-file path=usr/include/wx-2.8/wx/xrc/xh_radbt.h
-file path=usr/include/wx-2.8/wx/xrc/xh_radbx.h
-file path=usr/include/wx-2.8/wx/xrc/xh_scrol.h
-file path=usr/include/wx-2.8/wx/xrc/xh_scwin.h
-file path=usr/include/wx-2.8/wx/xrc/xh_sizer.h
-file path=usr/include/wx-2.8/wx/xrc/xh_slidr.h
-file path=usr/include/wx-2.8/wx/xrc/xh_spin.h
-file path=usr/include/wx-2.8/wx/xrc/xh_split.h
-file path=usr/include/wx-2.8/wx/xrc/xh_statbar.h
-file path=usr/include/wx-2.8/wx/xrc/xh_stbmp.h
-file path=usr/include/wx-2.8/wx/xrc/xh_stbox.h
-file path=usr/include/wx-2.8/wx/xrc/xh_stlin.h
-file path=usr/include/wx-2.8/wx/xrc/xh_sttxt.h
-file path=usr/include/wx-2.8/wx/xrc/xh_text.h
-file path=usr/include/wx-2.8/wx/xrc/xh_tglbtn.h
-file path=usr/include/wx-2.8/wx/xrc/xh_toolb.h
-file path=usr/include/wx-2.8/wx/xrc/xh_tree.h
-file path=usr/include/wx-2.8/wx/xrc/xh_treebk.h
-file path=usr/include/wx-2.8/wx/xrc/xh_unkwn.h
-file path=usr/include/wx-2.8/wx/xrc/xh_wizrd.h
-file path=usr/include/wx-2.8/wx/xrc/xmlres.h
-file path=usr/include/wx-2.8/wx/xti.h
-file path=usr/include/wx-2.8/wx/xtistrm.h
-file path=usr/include/wx-2.8/wx/xtixml.h
-file path=usr/include/wx-2.8/wx/zipstrm.h
-file path=usr/include/wx-2.8/wx/zstream.h
-link path=usr/lib/$(MACH64)/libwx_baseu-2.8.so target=libwx_baseu-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_baseu-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_baseu_net-2.8.so \
-    target=libwx_baseu_net-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_baseu_net-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_baseu_xml-2.8.so \
-    target=libwx_baseu_xml-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_baseu_xml-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_adv-2.8.so \
-    target=libwx_gtk2u_adv-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_adv-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_aui-2.8.so \
-    target=libwx_gtk2u_aui-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_aui-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_core-2.8.so \
-    target=libwx_gtk2u_core-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_core-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_fl-2.8.so target=libwx_gtk2u_fl-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_fl-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_gizmos-2.8.so \
-    target=libwx_gtk2u_gizmos-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_gizmos-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_gizmos_xrc-2.8.so \
-    target=libwx_gtk2u_gizmos_xrc-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_gizmos_xrc-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_gl-2.8.so target=libwx_gtk2u_gl-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_gl-2.8.so.0 \
+link path=usr/bin/$(MACH64)/wxrc target=../wxrc-3.0
+link path=usr/bin/$(MACH64)/wxrc-3.0 target=../wxrc-3.0
+link path=usr/bin/wx-config target=../lib/wx/config/gtk2-unicode-3.0
+link path=usr/bin/wxrc target=wxrc-3.0
+file usr/bin/$(MACH64)/wxrc-3.0 path=usr/bin/wxrc-3.0
+file path=usr/include/wx-3.0/wx/aboutdlg.h
+file path=usr/include/wx-3.0/wx/accel.h
+file path=usr/include/wx-3.0/wx/access.h
+file path=usr/include/wx-3.0/wx/affinematrix2d.h
+file path=usr/include/wx-3.0/wx/affinematrix2dbase.h
+file path=usr/include/wx-3.0/wx/afterstd.h
+file path=usr/include/wx-3.0/wx/anidecod.h
+file path=usr/include/wx-3.0/wx/animate.h
+file path=usr/include/wx-3.0/wx/animdecod.h
+file path=usr/include/wx-3.0/wx/any.h
+file path=usr/include/wx-3.0/wx/anybutton.h
+file path=usr/include/wx-3.0/wx/anystr.h
+file path=usr/include/wx-3.0/wx/app.h
+file path=usr/include/wx-3.0/wx/apptrait.h
+file path=usr/include/wx-3.0/wx/archive.h
+file path=usr/include/wx-3.0/wx/arrimpl.cpp
+file path=usr/include/wx-3.0/wx/arrstr.h
+file path=usr/include/wx-3.0/wx/artprov.h
+file path=usr/include/wx-3.0/wx/atomic.h
+file path=usr/include/wx-3.0/wx/aui/aui.h
+file path=usr/include/wx-3.0/wx/aui/auibar.h
+file path=usr/include/wx-3.0/wx/aui/auibook.h
+file path=usr/include/wx-3.0/wx/aui/dockart.h
+file path=usr/include/wx-3.0/wx/aui/floatpane.h
+file path=usr/include/wx-3.0/wx/aui/framemanager.h
+file path=usr/include/wx-3.0/wx/aui/tabart.h
+file path=usr/include/wx-3.0/wx/aui/tabartgtk.h
+file path=usr/include/wx-3.0/wx/aui/tabmdi.h
+file path=usr/include/wx-3.0/wx/bannerwindow.h
+file path=usr/include/wx-3.0/wx/base64.h
+file path=usr/include/wx-3.0/wx/beforestd.h
+file path=usr/include/wx-3.0/wx/bitmap.h
+file path=usr/include/wx-3.0/wx/bmpbuttn.h
+file path=usr/include/wx-3.0/wx/bmpcbox.h
+file path=usr/include/wx-3.0/wx/bookctrl.h
+file path=usr/include/wx-3.0/wx/brush.h
+file path=usr/include/wx-3.0/wx/buffer.h
+file path=usr/include/wx-3.0/wx/build.h
+file path=usr/include/wx-3.0/wx/busyinfo.h
+file path=usr/include/wx-3.0/wx/button.h
+file path=usr/include/wx-3.0/wx/calctrl.h
+file path=usr/include/wx-3.0/wx/caret.h
+file path=usr/include/wx-3.0/wx/chartype.h
+file path=usr/include/wx-3.0/wx/checkbox.h
+file path=usr/include/wx-3.0/wx/checkeddelete.h
+file path=usr/include/wx-3.0/wx/checklst.h
+file path=usr/include/wx-3.0/wx/chkconf.h
+file path=usr/include/wx-3.0/wx/choicdlg.h
+file path=usr/include/wx-3.0/wx/choice.h
+file path=usr/include/wx-3.0/wx/choicebk.h
+file path=usr/include/wx-3.0/wx/clipbrd.h
+file path=usr/include/wx-3.0/wx/clntdata.h
+file path=usr/include/wx-3.0/wx/clrpicker.h
+file path=usr/include/wx-3.0/wx/cmdargs.h
+file path=usr/include/wx-3.0/wx/cmdline.h
+file path=usr/include/wx-3.0/wx/cmdproc.h
+file path=usr/include/wx-3.0/wx/cmndata.h
+file path=usr/include/wx-3.0/wx/collpane.h
+file path=usr/include/wx-3.0/wx/colordlg.h
+file path=usr/include/wx-3.0/wx/colour.h
+file path=usr/include/wx-3.0/wx/colourdata.h
+file path=usr/include/wx-3.0/wx/combo.h
+file path=usr/include/wx-3.0/wx/combobox.h
+file path=usr/include/wx-3.0/wx/commandlinkbutton.h
+file path=usr/include/wx-3.0/wx/compiler.h
+file path=usr/include/wx-3.0/wx/compositewin.h
+file path=usr/include/wx-3.0/wx/confbase.h
+file path=usr/include/wx-3.0/wx/config.h
+file path=usr/include/wx-3.0/wx/containr.h
+file path=usr/include/wx-3.0/wx/control.h
+file path=usr/include/wx-3.0/wx/convauto.h
+file path=usr/include/wx-3.0/wx/cpp.h
+file path=usr/include/wx-3.0/wx/crt.h
+file path=usr/include/wx-3.0/wx/cshelp.h
+file path=usr/include/wx-3.0/wx/ctrlsub.h
+file path=usr/include/wx-3.0/wx/cursor.h
+file path=usr/include/wx-3.0/wx/custombgwin.h
+file path=usr/include/wx-3.0/wx/dataobj.h
+file path=usr/include/wx-3.0/wx/dataview.h
+file path=usr/include/wx-3.0/wx/datectrl.h
+file path=usr/include/wx-3.0/wx/dateevt.h
+file path=usr/include/wx-3.0/wx/datetime.h
+file path=usr/include/wx-3.0/wx/datetimectrl.h
+file path=usr/include/wx-3.0/wx/datstrm.h
+file path=usr/include/wx-3.0/wx/dc.h
+file path=usr/include/wx-3.0/wx/dcbuffer.h
+file path=usr/include/wx-3.0/wx/dcclient.h
+file path=usr/include/wx-3.0/wx/dcgraph.h
+file path=usr/include/wx-3.0/wx/dcmemory.h
+file path=usr/include/wx-3.0/wx/dcmirror.h
+file path=usr/include/wx-3.0/wx/dcprint.h
+file path=usr/include/wx-3.0/wx/dcps.h
+file path=usr/include/wx-3.0/wx/dcscreen.h
+file path=usr/include/wx-3.0/wx/dcsvg.h
+file path=usr/include/wx-3.0/wx/dde.h
+file path=usr/include/wx-3.0/wx/debug.h
+file path=usr/include/wx-3.0/wx/debugrpt.h
+file path=usr/include/wx-3.0/wx/defs.h
+file path=usr/include/wx-3.0/wx/dialog.h
+file path=usr/include/wx-3.0/wx/dialup.h
+file path=usr/include/wx-3.0/wx/dir.h
+file path=usr/include/wx-3.0/wx/dirctrl.h
+file path=usr/include/wx-3.0/wx/dirdlg.h
+file path=usr/include/wx-3.0/wx/display.h
+file path=usr/include/wx-3.0/wx/display_impl.h
+file path=usr/include/wx-3.0/wx/dlimpexp.h
+file path=usr/include/wx-3.0/wx/dlist.h
+file path=usr/include/wx-3.0/wx/dnd.h
+file path=usr/include/wx-3.0/wx/docmdi.h
+file path=usr/include/wx-3.0/wx/docview.h
+file path=usr/include/wx-3.0/wx/dragimag.h
+file path=usr/include/wx-3.0/wx/dvrenderers.h
+file path=usr/include/wx-3.0/wx/dynarray.h
+file path=usr/include/wx-3.0/wx/dynlib.h
+file path=usr/include/wx-3.0/wx/dynload.h
+file path=usr/include/wx-3.0/wx/editlbox.h
+file path=usr/include/wx-3.0/wx/effects.h
+file path=usr/include/wx-3.0/wx/encconv.h
+file path=usr/include/wx-3.0/wx/encinfo.h
+file path=usr/include/wx-3.0/wx/event.h
+file path=usr/include/wx-3.0/wx/eventfilter.h
+file path=usr/include/wx-3.0/wx/evtloop.h
+file path=usr/include/wx-3.0/wx/evtloopsrc.h
+file path=usr/include/wx-3.0/wx/except.h
+file path=usr/include/wx-3.0/wx/fdrepdlg.h
+file path=usr/include/wx-3.0/wx/features.h
+file path=usr/include/wx-3.0/wx/ffile.h
+file path=usr/include/wx-3.0/wx/file.h
+file path=usr/include/wx-3.0/wx/fileconf.h
+file path=usr/include/wx-3.0/wx/filectrl.h
+file path=usr/include/wx-3.0/wx/filedlg.h
+file path=usr/include/wx-3.0/wx/filefn.h
+file path=usr/include/wx-3.0/wx/filehistory.h
+file path=usr/include/wx-3.0/wx/filename.h
+file path=usr/include/wx-3.0/wx/filepicker.h
+file path=usr/include/wx-3.0/wx/filesys.h
+file path=usr/include/wx-3.0/wx/flags.h
+file path=usr/include/wx-3.0/wx/fmappriv.h
+file path=usr/include/wx-3.0/wx/font.h
+file path=usr/include/wx-3.0/wx/fontdata.h
+file path=usr/include/wx-3.0/wx/fontdlg.h
+file path=usr/include/wx-3.0/wx/fontenc.h
+file path=usr/include/wx-3.0/wx/fontenum.h
+file path=usr/include/wx-3.0/wx/fontmap.h
+file path=usr/include/wx-3.0/wx/fontpicker.h
+file path=usr/include/wx-3.0/wx/fontutil.h
+file path=usr/include/wx-3.0/wx/frame.h
+file path=usr/include/wx-3.0/wx/fs_arc.h
+file path=usr/include/wx-3.0/wx/fs_filter.h
+file path=usr/include/wx-3.0/wx/fs_inet.h
+file path=usr/include/wx-3.0/wx/fs_mem.h
+file path=usr/include/wx-3.0/wx/fs_zip.h
+file path=usr/include/wx-3.0/wx/fswatcher.h
+file path=usr/include/wx-3.0/wx/gauge.h
+file path=usr/include/wx-3.0/wx/gbsizer.h
+file path=usr/include/wx-3.0/wx/gdicmn.h
+file path=usr/include/wx-3.0/wx/gdiobj.h
+file path=usr/include/wx-3.0/wx/generic/aboutdlgg.h
+file path=usr/include/wx-3.0/wx/generic/accel.h
+file path=usr/include/wx-3.0/wx/generic/bmpcbox.h
+file path=usr/include/wx-3.0/wx/generic/busyinfo.h
+file path=usr/include/wx-3.0/wx/generic/buttonbar.h
+file path=usr/include/wx-3.0/wx/generic/calctrlg.h
+file path=usr/include/wx-3.0/wx/generic/caret.h
+file path=usr/include/wx-3.0/wx/generic/choicdgg.h
+file path=usr/include/wx-3.0/wx/generic/colrdlgg.h
+file path=usr/include/wx-3.0/wx/generic/combo.h
+file path=usr/include/wx-3.0/wx/generic/custombgwin.h
+file path=usr/include/wx-3.0/wx/generic/dataview.h
+file path=usr/include/wx-3.0/wx/generic/datectrl.h
+file path=usr/include/wx-3.0/wx/generic/dcpsg.h
+file path=usr/include/wx-3.0/wx/generic/dirctrlg.h
+file path=usr/include/wx-3.0/wx/generic/dragimgg.h
+file path=usr/include/wx-3.0/wx/generic/dvrenderer.h
+file path=usr/include/wx-3.0/wx/generic/dvrenderers.h
+file path=usr/include/wx-3.0/wx/generic/fdrepdlg.h
+file path=usr/include/wx-3.0/wx/generic/filectrlg.h
+file path=usr/include/wx-3.0/wx/generic/filepickerg.h
+file path=usr/include/wx-3.0/wx/generic/fontdlgg.h
+file path=usr/include/wx-3.0/wx/generic/fswatcher.h
+file path=usr/include/wx-3.0/wx/generic/grid.h
+file path=usr/include/wx-3.0/wx/generic/gridctrl.h
+file path=usr/include/wx-3.0/wx/generic/grideditors.h
+file path=usr/include/wx-3.0/wx/generic/gridsel.h
+file path=usr/include/wx-3.0/wx/generic/headerctrlg.h
+file path=usr/include/wx-3.0/wx/generic/helpext.h
+file path=usr/include/wx-3.0/wx/generic/hyperlink.h
+file path=usr/include/wx-3.0/wx/generic/icon.h
+file path=usr/include/wx-3.0/wx/generic/imaglist.h
+file path=usr/include/wx-3.0/wx/generic/infobar.h
+file path=usr/include/wx-3.0/wx/generic/laywin.h
+file path=usr/include/wx-3.0/wx/generic/listctrl.h
+file path=usr/include/wx-3.0/wx/generic/logg.h
+file path=usr/include/wx-3.0/wx/generic/msgdlgg.h
+file path=usr/include/wx-3.0/wx/generic/notebook.h
+file path=usr/include/wx-3.0/wx/generic/notifmsg.h
+file path=usr/include/wx-3.0/wx/generic/numdlgg.h
+file path=usr/include/wx-3.0/wx/generic/paletteg.h
+file path=usr/include/wx-3.0/wx/generic/panelg.h
+file path=usr/include/wx-3.0/wx/generic/printps.h
+file path=usr/include/wx-3.0/wx/generic/prntdlgg.h
+file path=usr/include/wx-3.0/wx/generic/progdlgg.h
+file path=usr/include/wx-3.0/wx/generic/propdlg.h
+file path=usr/include/wx-3.0/wx/generic/richmsgdlgg.h
+file path=usr/include/wx-3.0/wx/generic/sashwin.h
+file path=usr/include/wx-3.0/wx/generic/scrolwin.h
+file path=usr/include/wx-3.0/wx/generic/spinctlg.h
+file path=usr/include/wx-3.0/wx/generic/splash.h
+file path=usr/include/wx-3.0/wx/generic/splitter.h
+file path=usr/include/wx-3.0/wx/generic/srchctlg.h
+file path=usr/include/wx-3.0/wx/generic/statbmpg.h
+file path=usr/include/wx-3.0/wx/generic/stattextg.h
+file path=usr/include/wx-3.0/wx/generic/statusbr.h
+file path=usr/include/wx-3.0/wx/generic/textdlgg.h
+file path=usr/include/wx-3.0/wx/generic/timectrl.h
+file path=usr/include/wx-3.0/wx/generic/treectlg.h
+file path=usr/include/wx-3.0/wx/generic/wizard.h
+file path=usr/include/wx-3.0/wx/geometry.h
+file path=usr/include/wx-3.0/wx/gifdecod.h
+file path=usr/include/wx-3.0/wx/glcanvas.h
+file path=usr/include/wx-3.0/wx/graphics.h
+file path=usr/include/wx-3.0/wx/grid.h
+file path=usr/include/wx-3.0/wx/gtk/accel.h
+file path=usr/include/wx-3.0/wx/gtk/animate.h
+file path=usr/include/wx-3.0/wx/gtk/anybutton.h
+file path=usr/include/wx-3.0/wx/gtk/app.h
+file path=usr/include/wx-3.0/wx/gtk/assertdlg_gtk.h
+file path=usr/include/wx-3.0/wx/gtk/bitmap.h
+file path=usr/include/wx-3.0/wx/gtk/bmpbuttn.h
+file path=usr/include/wx-3.0/wx/gtk/bmpcbox.h
+file path=usr/include/wx-3.0/wx/gtk/brush.h
+file path=usr/include/wx-3.0/wx/gtk/button.h
+file path=usr/include/wx-3.0/wx/gtk/calctrl.h
+file path=usr/include/wx-3.0/wx/gtk/checkbox.h
+file path=usr/include/wx-3.0/wx/gtk/checklst.h
+file path=usr/include/wx-3.0/wx/gtk/chkconf.h
+file path=usr/include/wx-3.0/wx/gtk/choice.h
+file path=usr/include/wx-3.0/wx/gtk/clipbrd.h
+file path=usr/include/wx-3.0/wx/gtk/clrpicker.h
+file path=usr/include/wx-3.0/wx/gtk/collpane.h
+file path=usr/include/wx-3.0/wx/gtk/colordlg.h
+file path=usr/include/wx-3.0/wx/gtk/colour.h
+file path=usr/include/wx-3.0/wx/gtk/combobox.h
+file path=usr/include/wx-3.0/wx/gtk/control.h
+file path=usr/include/wx-3.0/wx/gtk/cursor.h
+file path=usr/include/wx-3.0/wx/gtk/dataform.h
+file path=usr/include/wx-3.0/wx/gtk/dataobj.h
+file path=usr/include/wx-3.0/wx/gtk/dataobj2.h
+file path=usr/include/wx-3.0/wx/gtk/dataview.h
+file path=usr/include/wx-3.0/wx/gtk/dialog.h
+file path=usr/include/wx-3.0/wx/gtk/dirdlg.h
+file path=usr/include/wx-3.0/wx/gtk/dnd.h
+file path=usr/include/wx-3.0/wx/gtk/dvrenderer.h
+file path=usr/include/wx-3.0/wx/gtk/dvrenderers.h
+file path=usr/include/wx-3.0/wx/gtk/evtloop.h
+file path=usr/include/wx-3.0/wx/gtk/evtloopsrc.h
+file path=usr/include/wx-3.0/wx/gtk/filectrl.h
+file path=usr/include/wx-3.0/wx/gtk/filedlg.h
+file path=usr/include/wx-3.0/wx/gtk/filehistory.h
+file path=usr/include/wx-3.0/wx/gtk/filepicker.h
+file path=usr/include/wx-3.0/wx/gtk/font.h
+file path=usr/include/wx-3.0/wx/gtk/fontdlg.h
+file path=usr/include/wx-3.0/wx/gtk/fontpicker.h
+file path=usr/include/wx-3.0/wx/gtk/frame.h
+file path=usr/include/wx-3.0/wx/gtk/gauge.h
+file path=usr/include/wx-3.0/wx/gtk/glcanvas.h
+file path=usr/include/wx-3.0/wx/gtk/gnome/gvfs.h
+file path=usr/include/wx-3.0/wx/gtk/hildon/notifmsg.h
+file path=usr/include/wx-3.0/wx/gtk/hyperlink.h
+file path=usr/include/wx-3.0/wx/gtk/infobar.h
+file path=usr/include/wx-3.0/wx/gtk/listbox.h
+file path=usr/include/wx-3.0/wx/gtk/mdi.h
+file path=usr/include/wx-3.0/wx/gtk/menu.h
+file path=usr/include/wx-3.0/wx/gtk/menuitem.h
+file path=usr/include/wx-3.0/wx/gtk/minifram.h
+file path=usr/include/wx-3.0/wx/gtk/msgdlg.h
+file path=usr/include/wx-3.0/wx/gtk/nonownedwnd.h
+file path=usr/include/wx-3.0/wx/gtk/notebook.h
+file path=usr/include/wx-3.0/wx/gtk/notifmsg.h
+file path=usr/include/wx-3.0/wx/gtk/pen.h
+file path=usr/include/wx-3.0/wx/gtk/popupwin.h
+file path=usr/include/wx-3.0/wx/gtk/print.h
+file path=usr/include/wx-3.0/wx/gtk/radiobox.h
+file path=usr/include/wx-3.0/wx/gtk/radiobut.h
+file path=usr/include/wx-3.0/wx/gtk/region.h
+file path=usr/include/wx-3.0/wx/gtk/scrolbar.h
+file path=usr/include/wx-3.0/wx/gtk/scrolwin.h
+file path=usr/include/wx-3.0/wx/gtk/slider.h
+file path=usr/include/wx-3.0/wx/gtk/spinbutt.h
+file path=usr/include/wx-3.0/wx/gtk/spinctrl.h
+file path=usr/include/wx-3.0/wx/gtk/statbmp.h
+file path=usr/include/wx-3.0/wx/gtk/statbox.h
+file path=usr/include/wx-3.0/wx/gtk/statline.h
+file path=usr/include/wx-3.0/wx/gtk/stattext.h
+file path=usr/include/wx-3.0/wx/gtk/taskbar.h
+file path=usr/include/wx-3.0/wx/gtk/textctrl.h
+file path=usr/include/wx-3.0/wx/gtk/textentry.h
+file path=usr/include/wx-3.0/wx/gtk/tglbtn.h
+file path=usr/include/wx-3.0/wx/gtk/toolbar.h
+file path=usr/include/wx-3.0/wx/gtk/tooltip.h
+file path=usr/include/wx-3.0/wx/gtk/toplevel.h
+file path=usr/include/wx-3.0/wx/gtk/webview_webkit.h
+file path=usr/include/wx-3.0/wx/gtk/webviewhistoryitem_webkit.h
+file path=usr/include/wx-3.0/wx/gtk/window.h
+file path=usr/include/wx-3.0/wx/hash.h
+file path=usr/include/wx-3.0/wx/hashmap.h
+file path=usr/include/wx-3.0/wx/hashset.h
+file path=usr/include/wx-3.0/wx/headercol.h
+file path=usr/include/wx-3.0/wx/headerctrl.h
+file path=usr/include/wx-3.0/wx/help.h
+file path=usr/include/wx-3.0/wx/helpbase.h
+file path=usr/include/wx-3.0/wx/helphtml.h
+file path=usr/include/wx-3.0/wx/helpwin.h
+file path=usr/include/wx-3.0/wx/html/forcelnk.h
+file path=usr/include/wx-3.0/wx/html/helpctrl.h
+file path=usr/include/wx-3.0/wx/html/helpdata.h
+file path=usr/include/wx-3.0/wx/html/helpdlg.h
+file path=usr/include/wx-3.0/wx/html/helpfrm.h
+file path=usr/include/wx-3.0/wx/html/helpwnd.h
+file path=usr/include/wx-3.0/wx/html/htmlcell.h
+file path=usr/include/wx-3.0/wx/html/htmldefs.h
+file path=usr/include/wx-3.0/wx/html/htmlfilt.h
+file path=usr/include/wx-3.0/wx/html/htmlpars.h
+file path=usr/include/wx-3.0/wx/html/htmlproc.h
+file path=usr/include/wx-3.0/wx/html/htmltag.h
+file path=usr/include/wx-3.0/wx/html/htmlwin.h
+file path=usr/include/wx-3.0/wx/html/htmprint.h
+file path=usr/include/wx-3.0/wx/html/m_templ.h
+file path=usr/include/wx-3.0/wx/html/styleparams.h
+file path=usr/include/wx-3.0/wx/html/winpars.h
+file path=usr/include/wx-3.0/wx/htmllbox.h
+file path=usr/include/wx-3.0/wx/hyperlink.h
+file path=usr/include/wx-3.0/wx/icon.h
+file path=usr/include/wx-3.0/wx/iconbndl.h
+file path=usr/include/wx-3.0/wx/iconloc.h
+file path=usr/include/wx-3.0/wx/imagbmp.h
+file path=usr/include/wx-3.0/wx/image.h
+file path=usr/include/wx-3.0/wx/imaggif.h
+file path=usr/include/wx-3.0/wx/imagiff.h
+file path=usr/include/wx-3.0/wx/imagjpeg.h
+file path=usr/include/wx-3.0/wx/imaglist.h
+file path=usr/include/wx-3.0/wx/imagpcx.h
+file path=usr/include/wx-3.0/wx/imagpng.h
+file path=usr/include/wx-3.0/wx/imagpnm.h
+file path=usr/include/wx-3.0/wx/imagtga.h
+file path=usr/include/wx-3.0/wx/imagtiff.h
+file path=usr/include/wx-3.0/wx/imagxpm.h
+file path=usr/include/wx-3.0/wx/infobar.h
+file path=usr/include/wx-3.0/wx/init.h
+file path=usr/include/wx-3.0/wx/intl.h
+file path=usr/include/wx-3.0/wx/iosfwrap.h
+file path=usr/include/wx-3.0/wx/ioswrap.h
+file path=usr/include/wx-3.0/wx/ipc.h
+file path=usr/include/wx-3.0/wx/ipcbase.h
+file path=usr/include/wx-3.0/wx/itemid.h
+file path=usr/include/wx-3.0/wx/joystick.h
+file path=usr/include/wx-3.0/wx/kbdstate.h
+file path=usr/include/wx-3.0/wx/language.h
+file path=usr/include/wx-3.0/wx/layout.h
+file path=usr/include/wx-3.0/wx/laywin.h
+file path=usr/include/wx-3.0/wx/link.h
+file path=usr/include/wx-3.0/wx/list.h
+file path=usr/include/wx-3.0/wx/listbase.h
+file path=usr/include/wx-3.0/wx/listbook.h
+file path=usr/include/wx-3.0/wx/listbox.h
+file path=usr/include/wx-3.0/wx/listctrl.h
+file path=usr/include/wx-3.0/wx/listimpl.cpp
+file path=usr/include/wx-3.0/wx/log.h
+file path=usr/include/wx-3.0/wx/longlong.h
+file path=usr/include/wx-3.0/wx/math.h
+file path=usr/include/wx-3.0/wx/matrix.h
+file path=usr/include/wx-3.0/wx/mdi.h
+file path=usr/include/wx-3.0/wx/mediactrl.h
+file path=usr/include/wx-3.0/wx/memconf.h
+file path=usr/include/wx-3.0/wx/memory.h
+file path=usr/include/wx-3.0/wx/memtext.h
+file path=usr/include/wx-3.0/wx/menu.h
+file path=usr/include/wx-3.0/wx/menuitem.h
+file path=usr/include/wx-3.0/wx/meta/convertible.h
+file path=usr/include/wx-3.0/wx/meta/if.h
+file path=usr/include/wx-3.0/wx/meta/implicitconversion.h
+file path=usr/include/wx-3.0/wx/meta/int2type.h
+file path=usr/include/wx-3.0/wx/meta/movable.h
+file path=usr/include/wx-3.0/wx/meta/pod.h
+file path=usr/include/wx-3.0/wx/meta/removeref.h
+file path=usr/include/wx-3.0/wx/metafile.h
+file path=usr/include/wx-3.0/wx/mimetype.h
+file path=usr/include/wx-3.0/wx/minifram.h
+file path=usr/include/wx-3.0/wx/modalhook.h
+file path=usr/include/wx-3.0/wx/module.h
+file path=usr/include/wx-3.0/wx/mousemanager.h
+file path=usr/include/wx-3.0/wx/mousestate.h
+file path=usr/include/wx-3.0/wx/msgdlg.h
+file path=usr/include/wx-3.0/wx/msgout.h
+file path=usr/include/wx-3.0/wx/msgqueue.h
+file path=usr/include/wx-3.0/wx/mstream.h
+file path=usr/include/wx-3.0/wx/nativewin.h
+file path=usr/include/wx-3.0/wx/nonownedwnd.h
+file path=usr/include/wx-3.0/wx/notebook.h
+file path=usr/include/wx-3.0/wx/notifmsg.h
+file path=usr/include/wx-3.0/wx/numdlg.h
+file path=usr/include/wx-3.0/wx/numformatter.h
+file path=usr/include/wx-3.0/wx/object.h
+file path=usr/include/wx-3.0/wx/odcombo.h
+file path=usr/include/wx-3.0/wx/overlay.h
+file path=usr/include/wx-3.0/wx/ownerdrw.h
+file path=usr/include/wx-3.0/wx/palette.h
+file path=usr/include/wx-3.0/wx/panel.h
+file path=usr/include/wx-3.0/wx/paper.h
+file path=usr/include/wx-3.0/wx/pen.h
+file path=usr/include/wx-3.0/wx/persist.h
+file path=usr/include/wx-3.0/wx/persist/bookctrl.h
+file path=usr/include/wx-3.0/wx/persist/splitter.h
+file path=usr/include/wx-3.0/wx/persist/toplevel.h
+file path=usr/include/wx-3.0/wx/persist/treebook.h
+file path=usr/include/wx-3.0/wx/persist/window.h
+file path=usr/include/wx-3.0/wx/pickerbase.h
+file path=usr/include/wx-3.0/wx/platform.h
+file path=usr/include/wx-3.0/wx/platinfo.h
+file path=usr/include/wx-3.0/wx/popupwin.h
+file path=usr/include/wx-3.0/wx/position.h
+file path=usr/include/wx-3.0/wx/power.h
+file path=usr/include/wx-3.0/wx/preferences.h
+file path=usr/include/wx-3.0/wx/print.h
+file path=usr/include/wx-3.0/wx/printdlg.h
+file path=usr/include/wx-3.0/wx/private/pipestream.h
+file path=usr/include/wx-3.0/wx/private/streamtempinput.h
+file path=usr/include/wx-3.0/wx/prntbase.h
+file path=usr/include/wx-3.0/wx/process.h
+file path=usr/include/wx-3.0/wx/progdlg.h
+file path=usr/include/wx-3.0/wx/propdlg.h
+file path=usr/include/wx-3.0/wx/propgrid/advprops.h
+file path=usr/include/wx-3.0/wx/propgrid/editors.h
+file path=usr/include/wx-3.0/wx/propgrid/manager.h
+file path=usr/include/wx-3.0/wx/propgrid/property.h
+file path=usr/include/wx-3.0/wx/propgrid/propgrid.h
+file path=usr/include/wx-3.0/wx/propgrid/propgriddefs.h
+file path=usr/include/wx-3.0/wx/propgrid/propgridiface.h
+file path=usr/include/wx-3.0/wx/propgrid/propgridpagestate.h
+file path=usr/include/wx-3.0/wx/propgrid/props.h
+file path=usr/include/wx-3.0/wx/protocol/file.h
+file path=usr/include/wx-3.0/wx/protocol/ftp.h
+file path=usr/include/wx-3.0/wx/protocol/http.h
+file path=usr/include/wx-3.0/wx/protocol/log.h
+file path=usr/include/wx-3.0/wx/protocol/protocol.h
+file path=usr/include/wx-3.0/wx/ptr_scpd.h
+file path=usr/include/wx-3.0/wx/ptr_shrd.h
+file path=usr/include/wx-3.0/wx/quantize.h
+file path=usr/include/wx-3.0/wx/radiobox.h
+file path=usr/include/wx-3.0/wx/radiobut.h
+file path=usr/include/wx-3.0/wx/range.h
+file path=usr/include/wx-3.0/wx/rawbmp.h
+file path=usr/include/wx-3.0/wx/rearrangectrl.h
+file path=usr/include/wx-3.0/wx/recguard.h
+file path=usr/include/wx-3.0/wx/regex.h
+file path=usr/include/wx-3.0/wx/region.h
+file path=usr/include/wx-3.0/wx/renderer.h
+file path=usr/include/wx-3.0/wx/ribbon/art.h
+file path=usr/include/wx-3.0/wx/ribbon/art_internal.h
+file path=usr/include/wx-3.0/wx/ribbon/bar.h
+file path=usr/include/wx-3.0/wx/ribbon/buttonbar.h
+file path=usr/include/wx-3.0/wx/ribbon/control.h
+file path=usr/include/wx-3.0/wx/ribbon/gallery.h
+file path=usr/include/wx-3.0/wx/ribbon/page.h
+file path=usr/include/wx-3.0/wx/ribbon/panel.h
+file path=usr/include/wx-3.0/wx/ribbon/toolbar.h
+file path=usr/include/wx-3.0/wx/richmsgdlg.h
+file path=usr/include/wx-3.0/wx/richtext/richtextbackgroundpage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextborderspage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextbuffer.h
+file path=usr/include/wx-3.0/wx/richtext/richtextbulletspage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextctrl.h
+file path=usr/include/wx-3.0/wx/richtext/richtextdialogpage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextfontpage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextformatdlg.h
+file path=usr/include/wx-3.0/wx/richtext/richtexthtml.h
+file path=usr/include/wx-3.0/wx/richtext/richtextimagedlg.h
+file path=usr/include/wx-3.0/wx/richtext/richtextindentspage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextliststylepage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextmarginspage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextprint.h
+file path=usr/include/wx-3.0/wx/richtext/richtextsizepage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextstyledlg.h
+file path=usr/include/wx-3.0/wx/richtext/richtextstylepage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextstyles.h
+file path=usr/include/wx-3.0/wx/richtext/richtextsymboldlg.h
+file path=usr/include/wx-3.0/wx/richtext/richtexttabspage.h
+file path=usr/include/wx-3.0/wx/richtext/richtextuicustomization.h
+file path=usr/include/wx-3.0/wx/richtext/richtextxml.h
+file path=usr/include/wx-3.0/wx/richtooltip.h
+file path=usr/include/wx-3.0/wx/rtti.h
+file path=usr/include/wx-3.0/wx/sashwin.h
+file path=usr/include/wx-3.0/wx/sckaddr.h
+file path=usr/include/wx-3.0/wx/sckipc.h
+file path=usr/include/wx-3.0/wx/sckstrm.h
+file path=usr/include/wx-3.0/wx/scopedarray.h
+file path=usr/include/wx-3.0/wx/scopedptr.h
+file path=usr/include/wx-3.0/wx/scopeguard.h
+file path=usr/include/wx-3.0/wx/scrolbar.h
+file path=usr/include/wx-3.0/wx/scrolwin.h
+file path=usr/include/wx-3.0/wx/selstore.h
+file path=usr/include/wx-3.0/wx/settings.h
+file path=usr/include/wx-3.0/wx/sharedptr.h
+file path=usr/include/wx-3.0/wx/simplebook.h
+file path=usr/include/wx-3.0/wx/sizer.h
+file path=usr/include/wx-3.0/wx/slider.h
+file path=usr/include/wx-3.0/wx/snglinst.h
+file path=usr/include/wx-3.0/wx/socket.h
+file path=usr/include/wx-3.0/wx/sound.h
+file path=usr/include/wx-3.0/wx/spinbutt.h
+file path=usr/include/wx-3.0/wx/spinctrl.h
+file path=usr/include/wx-3.0/wx/splash.h
+file path=usr/include/wx-3.0/wx/splitter.h
+file path=usr/include/wx-3.0/wx/srchctrl.h
+file path=usr/include/wx-3.0/wx/sstream.h
+file path=usr/include/wx-3.0/wx/stack.h
+file path=usr/include/wx-3.0/wx/stackwalk.h
+file path=usr/include/wx-3.0/wx/statbmp.h
+file path=usr/include/wx-3.0/wx/statbox.h
+file path=usr/include/wx-3.0/wx/statline.h
+file path=usr/include/wx-3.0/wx/stattext.h
+file path=usr/include/wx-3.0/wx/statusbr.h
+file path=usr/include/wx-3.0/wx/stc/stc.h
+file path=usr/include/wx-3.0/wx/stdpaths.h
+file path=usr/include/wx-3.0/wx/stdstream.h
+file path=usr/include/wx-3.0/wx/stockitem.h
+file path=usr/include/wx-3.0/wx/stopwatch.h
+file path=usr/include/wx-3.0/wx/strconv.h
+file path=usr/include/wx-3.0/wx/stream.h
+file path=usr/include/wx-3.0/wx/string.h
+file path=usr/include/wx-3.0/wx/stringimpl.h
+file path=usr/include/wx-3.0/wx/stringops.h
+file path=usr/include/wx-3.0/wx/strvararg.h
+file path=usr/include/wx-3.0/wx/sysopt.h
+file path=usr/include/wx-3.0/wx/tarstrm.h
+file path=usr/include/wx-3.0/wx/taskbar.h
+file path=usr/include/wx-3.0/wx/tbarbase.h
+file path=usr/include/wx-3.0/wx/testing.h
+file path=usr/include/wx-3.0/wx/textbuf.h
+file path=usr/include/wx-3.0/wx/textcompleter.h
+file path=usr/include/wx-3.0/wx/textctrl.h
+file path=usr/include/wx-3.0/wx/textdlg.h
+file path=usr/include/wx-3.0/wx/textentry.h
+file path=usr/include/wx-3.0/wx/textfile.h
+file path=usr/include/wx-3.0/wx/textwrapper.h
+file path=usr/include/wx-3.0/wx/tglbtn.h
+file path=usr/include/wx-3.0/wx/thread.h
+file path=usr/include/wx-3.0/wx/thrimpl.cpp
+file path=usr/include/wx-3.0/wx/time.h
+file path=usr/include/wx-3.0/wx/timectrl.h
+file path=usr/include/wx-3.0/wx/timer.h
+file path=usr/include/wx-3.0/wx/tipdlg.h
+file path=usr/include/wx-3.0/wx/tipwin.h
+file path=usr/include/wx-3.0/wx/tls.h
+file path=usr/include/wx-3.0/wx/tokenzr.h
+file path=usr/include/wx-3.0/wx/toolbar.h
+file path=usr/include/wx-3.0/wx/toolbook.h
+file path=usr/include/wx-3.0/wx/tooltip.h
+file path=usr/include/wx-3.0/wx/toplevel.h
+file path=usr/include/wx-3.0/wx/tracker.h
+file path=usr/include/wx-3.0/wx/translation.h
+file path=usr/include/wx-3.0/wx/treebase.h
+file path=usr/include/wx-3.0/wx/treebook.h
+file path=usr/include/wx-3.0/wx/treectrl.h
+file path=usr/include/wx-3.0/wx/treelist.h
+file path=usr/include/wx-3.0/wx/txtstrm.h
+file path=usr/include/wx-3.0/wx/typeinfo.h
+file path=usr/include/wx-3.0/wx/types.h
+file path=usr/include/wx-3.0/wx/uiaction.h
+file path=usr/include/wx-3.0/wx/unichar.h
+file path=usr/include/wx-3.0/wx/unix/app.h
+file path=usr/include/wx-3.0/wx/unix/apptbase.h
+file path=usr/include/wx-3.0/wx/unix/apptrait.h
+file path=usr/include/wx-3.0/wx/unix/chkconf.h
+file path=usr/include/wx-3.0/wx/unix/evtloop.h
+file path=usr/include/wx-3.0/wx/unix/evtloopsrc.h
+file path=usr/include/wx-3.0/wx/unix/execute.h
+file path=usr/include/wx-3.0/wx/unix/fontutil.h
+file path=usr/include/wx-3.0/wx/unix/fswatcher_inotify.h
+file path=usr/include/wx-3.0/wx/unix/fswatcher_kqueue.h
+file path=usr/include/wx-3.0/wx/unix/glx11.h
+file path=usr/include/wx-3.0/wx/unix/joystick.h
+file path=usr/include/wx-3.0/wx/unix/mimetype.h
+file path=usr/include/wx-3.0/wx/unix/pipe.h
+file path=usr/include/wx-3.0/wx/unix/private/pipestream.h
+file path=usr/include/wx-3.0/wx/unix/sound.h
+file path=usr/include/wx-3.0/wx/unix/stackwalk.h
+file path=usr/include/wx-3.0/wx/unix/stdpaths.h
+file path=usr/include/wx-3.0/wx/unix/taskbarx11.h
+file path=usr/include/wx-3.0/wx/unix/tls.h
+file path=usr/include/wx-3.0/wx/unix/utilsx11.h
+file path=usr/include/wx-3.0/wx/uri.h
+file path=usr/include/wx-3.0/wx/url.h
+file path=usr/include/wx-3.0/wx/ustring.h
+file path=usr/include/wx-3.0/wx/utils.h
+file path=usr/include/wx-3.0/wx/valgen.h
+file path=usr/include/wx-3.0/wx/validate.h
+file path=usr/include/wx-3.0/wx/valnum.h
+file path=usr/include/wx-3.0/wx/valtext.h
+file path=usr/include/wx-3.0/wx/variant.h
+file path=usr/include/wx-3.0/wx/vector.h
+file path=usr/include/wx-3.0/wx/version.h
+file path=usr/include/wx-3.0/wx/versioninfo.h
+file path=usr/include/wx-3.0/wx/vidmode.h
+file path=usr/include/wx-3.0/wx/vlbox.h
+file path=usr/include/wx-3.0/wx/vms_x_fix.h
+file path=usr/include/wx-3.0/wx/volume.h
+file path=usr/include/wx-3.0/wx/vscroll.h
+file path=usr/include/wx-3.0/wx/weakref.h
+file path=usr/include/wx-3.0/wx/webview.h
+file path=usr/include/wx-3.0/wx/webviewarchivehandler.h
+file path=usr/include/wx-3.0/wx/webviewfshandler.h
+file path=usr/include/wx-3.0/wx/wfstream.h
+file path=usr/include/wx-3.0/wx/window.h
+file path=usr/include/wx-3.0/wx/windowid.h
+file path=usr/include/wx-3.0/wx/windowptr.h
+file path=usr/include/wx-3.0/wx/withimages.h
+file path=usr/include/wx-3.0/wx/wizard.h
+file path=usr/include/wx-3.0/wx/wrapsizer.h
+file path=usr/include/wx-3.0/wx/wupdlock.h
+file path=usr/include/wx-3.0/wx/wx.h
+file path=usr/include/wx-3.0/wx/wxchar.h
+file path=usr/include/wx-3.0/wx/wxcrt.h
+file path=usr/include/wx-3.0/wx/wxcrtbase.h
+file path=usr/include/wx-3.0/wx/wxcrtvararg.h
+file path=usr/include/wx-3.0/wx/wxhtml.h
+file path=usr/include/wx-3.0/wx/wxprec.h
+file path=usr/include/wx-3.0/wx/xlocale.h
+file path=usr/include/wx-3.0/wx/xml/xml.h
+file path=usr/include/wx-3.0/wx/xpmdecod.h
+file path=usr/include/wx-3.0/wx/xpmhand.h
+file path=usr/include/wx-3.0/wx/xrc/xh_all.h
+file path=usr/include/wx-3.0/wx/xrc/xh_animatctrl.h
+file path=usr/include/wx-3.0/wx/xrc/xh_auinotbk.h
+file path=usr/include/wx-3.0/wx/xrc/xh_bannerwindow.h
+file path=usr/include/wx-3.0/wx/xrc/xh_bmp.h
+file path=usr/include/wx-3.0/wx/xrc/xh_bmpbt.h
+file path=usr/include/wx-3.0/wx/xrc/xh_bmpcbox.h
+file path=usr/include/wx-3.0/wx/xrc/xh_bttn.h
+file path=usr/include/wx-3.0/wx/xrc/xh_cald.h
+file path=usr/include/wx-3.0/wx/xrc/xh_chckb.h
+file path=usr/include/wx-3.0/wx/xrc/xh_chckl.h
+file path=usr/include/wx-3.0/wx/xrc/xh_choic.h
+file path=usr/include/wx-3.0/wx/xrc/xh_choicbk.h
+file path=usr/include/wx-3.0/wx/xrc/xh_clrpicker.h
+file path=usr/include/wx-3.0/wx/xrc/xh_cmdlinkbn.h
+file path=usr/include/wx-3.0/wx/xrc/xh_collpane.h
+file path=usr/include/wx-3.0/wx/xrc/xh_combo.h
+file path=usr/include/wx-3.0/wx/xrc/xh_comboctrl.h
+file path=usr/include/wx-3.0/wx/xrc/xh_datectrl.h
+file path=usr/include/wx-3.0/wx/xrc/xh_dirpicker.h
+file path=usr/include/wx-3.0/wx/xrc/xh_dlg.h
+file path=usr/include/wx-3.0/wx/xrc/xh_editlbox.h
+file path=usr/include/wx-3.0/wx/xrc/xh_filectrl.h
+file path=usr/include/wx-3.0/wx/xrc/xh_filepicker.h
+file path=usr/include/wx-3.0/wx/xrc/xh_fontpicker.h
+file path=usr/include/wx-3.0/wx/xrc/xh_frame.h
+file path=usr/include/wx-3.0/wx/xrc/xh_gauge.h
+file path=usr/include/wx-3.0/wx/xrc/xh_gdctl.h
+file path=usr/include/wx-3.0/wx/xrc/xh_grid.h
+file path=usr/include/wx-3.0/wx/xrc/xh_html.h
+file path=usr/include/wx-3.0/wx/xrc/xh_htmllbox.h
+file path=usr/include/wx-3.0/wx/xrc/xh_hyperlink.h
+file path=usr/include/wx-3.0/wx/xrc/xh_listb.h
+file path=usr/include/wx-3.0/wx/xrc/xh_listbk.h
+file path=usr/include/wx-3.0/wx/xrc/xh_listc.h
+file path=usr/include/wx-3.0/wx/xrc/xh_mdi.h
+file path=usr/include/wx-3.0/wx/xrc/xh_menu.h
+file path=usr/include/wx-3.0/wx/xrc/xh_notbk.h
+file path=usr/include/wx-3.0/wx/xrc/xh_odcombo.h
+file path=usr/include/wx-3.0/wx/xrc/xh_panel.h
+file path=usr/include/wx-3.0/wx/xrc/xh_propdlg.h
+file path=usr/include/wx-3.0/wx/xrc/xh_radbt.h
+file path=usr/include/wx-3.0/wx/xrc/xh_radbx.h
+file path=usr/include/wx-3.0/wx/xrc/xh_ribbon.h
+file path=usr/include/wx-3.0/wx/xrc/xh_richtext.h
+file path=usr/include/wx-3.0/wx/xrc/xh_scrol.h
+file path=usr/include/wx-3.0/wx/xrc/xh_scwin.h
+file path=usr/include/wx-3.0/wx/xrc/xh_simplebook.h
+file path=usr/include/wx-3.0/wx/xrc/xh_sizer.h
+file path=usr/include/wx-3.0/wx/xrc/xh_slidr.h
+file path=usr/include/wx-3.0/wx/xrc/xh_spin.h
+file path=usr/include/wx-3.0/wx/xrc/xh_split.h
+file path=usr/include/wx-3.0/wx/xrc/xh_srchctrl.h
+file path=usr/include/wx-3.0/wx/xrc/xh_statbar.h
+file path=usr/include/wx-3.0/wx/xrc/xh_stbmp.h
+file path=usr/include/wx-3.0/wx/xrc/xh_stbox.h
+file path=usr/include/wx-3.0/wx/xrc/xh_stlin.h
+file path=usr/include/wx-3.0/wx/xrc/xh_sttxt.h
+file path=usr/include/wx-3.0/wx/xrc/xh_text.h
+file path=usr/include/wx-3.0/wx/xrc/xh_tglbtn.h
+file path=usr/include/wx-3.0/wx/xrc/xh_timectrl.h
+file path=usr/include/wx-3.0/wx/xrc/xh_toolb.h
+file path=usr/include/wx-3.0/wx/xrc/xh_toolbk.h
+file path=usr/include/wx-3.0/wx/xrc/xh_tree.h
+file path=usr/include/wx-3.0/wx/xrc/xh_treebk.h
+file path=usr/include/wx-3.0/wx/xrc/xh_unkwn.h
+file path=usr/include/wx-3.0/wx/xrc/xh_wizrd.h
+file path=usr/include/wx-3.0/wx/xrc/xmlres.h
+file path=usr/include/wx-3.0/wx/xrc/xmlreshandler.h
+file path=usr/include/wx-3.0/wx/xti.h
+file path=usr/include/wx-3.0/wx/xti2.h
+file path=usr/include/wx-3.0/wx/xtictor.h
+file path=usr/include/wx-3.0/wx/xtihandler.h
+file path=usr/include/wx-3.0/wx/xtiprop.h
+file path=usr/include/wx-3.0/wx/xtistrm.h
+file path=usr/include/wx-3.0/wx/xtitypes.h
+file path=usr/include/wx-3.0/wx/xtixml.h
+file path=usr/include/wx-3.0/wx/zipstrm.h
+file path=usr/include/wx-3.0/wx/zstream.h
+link path=usr/lib/$(MACH64)/libwx_baseu-3.0.so target=libwx_baseu-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_baseu-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_baseu_net-3.0.so \
+    target=libwx_baseu_net-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_baseu_net-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_baseu_xml-3.0.so \
+    target=libwx_baseu_xml-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_baseu_xml-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_adv-3.0.so \
+    target=libwx_gtk2u_adv-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_adv-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_aui-3.0.so \
+    target=libwx_gtk2u_aui-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_aui-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_core-3.0.so \
+    target=libwx_gtk2u_core-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_core-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_gl-3.0.so target=libwx_gtk2u_gl-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_gl-3.0.so.0 \
     pkg.depend.bypass-generate=.*
-link path=usr/lib/$(MACH64)/libwx_gtk2u_html-2.8.so \
-    target=libwx_gtk2u_html-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_html-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_ogl-2.8.so \
-    target=libwx_gtk2u_ogl-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_ogl-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_plot-2.8.so \
-    target=libwx_gtk2u_plot-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_plot-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_qa-2.8.so target=libwx_gtk2u_qa-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_qa-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_richtext-2.8.so \
-    target=libwx_gtk2u_richtext-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_richtext-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_stc-2.8.so \
-    target=libwx_gtk2u_stc-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_stc-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_svg-2.8.so \
-    target=libwx_gtk2u_svg-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_svg-2.8.so.0
-link path=usr/lib/$(MACH64)/libwx_gtk2u_xrc-2.8.so \
-    target=libwx_gtk2u_xrc-2.8.so.0
-file path=usr/lib/$(MACH64)/libwx_gtk2u_xrc-2.8.so.0
-file path=usr/lib/$(MACH64)/wx/config/gtk2-unicode-release-2.8 mode=0555
-file path=usr/lib/$(MACH64)/wx/include/gtk2-unicode-release-2.8/wx/setup.h
-link path=usr/lib/libwx_baseu-2.8.so target=libwx_baseu-2.8.so.0
-file path=usr/lib/libwx_baseu-2.8.so.0
-link path=usr/lib/libwx_baseu_net-2.8.so target=libwx_baseu_net-2.8.so.0
-file path=usr/lib/libwx_baseu_net-2.8.so.0
-link path=usr/lib/libwx_baseu_xml-2.8.so target=libwx_baseu_xml-2.8.so.0
-file path=usr/lib/libwx_baseu_xml-2.8.so.0
-link path=usr/lib/libwx_gtk2u_adv-2.8.so target=libwx_gtk2u_adv-2.8.so.0
-file path=usr/lib/libwx_gtk2u_adv-2.8.so.0
-link path=usr/lib/libwx_gtk2u_aui-2.8.so target=libwx_gtk2u_aui-2.8.so.0
-file path=usr/lib/libwx_gtk2u_aui-2.8.so.0
-link path=usr/lib/libwx_gtk2u_core-2.8.so target=libwx_gtk2u_core-2.8.so.0
-file path=usr/lib/libwx_gtk2u_core-2.8.so.0
-link path=usr/lib/libwx_gtk2u_fl-2.8.so target=libwx_gtk2u_fl-2.8.so.0
-file path=usr/lib/libwx_gtk2u_fl-2.8.so.0
-link path=usr/lib/libwx_gtk2u_gizmos-2.8.so target=libwx_gtk2u_gizmos-2.8.so.0
-file path=usr/lib/libwx_gtk2u_gizmos-2.8.so.0
-link path=usr/lib/libwx_gtk2u_gizmos_xrc-2.8.so \
-    target=libwx_gtk2u_gizmos_xrc-2.8.so.0
-file path=usr/lib/libwx_gtk2u_gizmos_xrc-2.8.so.0
-link path=usr/lib/libwx_gtk2u_gl-2.8.so target=libwx_gtk2u_gl-2.8.so.0
-file path=usr/lib/libwx_gtk2u_gl-2.8.so.0 pkg.depend.bypass-generate=.*
-link path=usr/lib/libwx_gtk2u_html-2.8.so target=libwx_gtk2u_html-2.8.so.0
-file path=usr/lib/libwx_gtk2u_html-2.8.so.0
-link path=usr/lib/libwx_gtk2u_ogl-2.8.so target=libwx_gtk2u_ogl-2.8.so.0
-file path=usr/lib/libwx_gtk2u_ogl-2.8.so.0
-link path=usr/lib/libwx_gtk2u_plot-2.8.so target=libwx_gtk2u_plot-2.8.so.0
-file path=usr/lib/libwx_gtk2u_plot-2.8.so.0
-link path=usr/lib/libwx_gtk2u_qa-2.8.so target=libwx_gtk2u_qa-2.8.so.0
-file path=usr/lib/libwx_gtk2u_qa-2.8.so.0
-link path=usr/lib/libwx_gtk2u_richtext-2.8.so \
-    target=libwx_gtk2u_richtext-2.8.so.0
-file path=usr/lib/libwx_gtk2u_richtext-2.8.so.0
-link path=usr/lib/libwx_gtk2u_stc-2.8.so target=libwx_gtk2u_stc-2.8.so.0
-file path=usr/lib/libwx_gtk2u_stc-2.8.so.0
-link path=usr/lib/libwx_gtk2u_svg-2.8.so target=libwx_gtk2u_svg-2.8.so.0
-file path=usr/lib/libwx_gtk2u_svg-2.8.so.0
-link path=usr/lib/libwx_gtk2u_xrc-2.8.so target=libwx_gtk2u_xrc-2.8.so.0
-file path=usr/lib/libwx_gtk2u_xrc-2.8.so.0
-file path=usr/lib/wx/config/gtk2-unicode-release-2.8 mode=0555
-file path=usr/lib/wx/include/gtk2-unicode-release-2.8/wx/setup.h
+link path=usr/lib/$(MACH64)/libwx_gtk2u_html-3.0.so \
+    target=libwx_gtk2u_html-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_html-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_media-3.0.so \
+    target=libwx_gtk2u_media-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_media-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_propgrid-3.0.so \
+    target=libwx_gtk2u_propgrid-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_propgrid-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_qa-3.0.so target=libwx_gtk2u_qa-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_qa-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_ribbon-3.0.so \
+    target=libwx_gtk2u_ribbon-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_ribbon-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_richtext-3.0.so \
+    target=libwx_gtk2u_richtext-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_richtext-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_stc-3.0.so \
+    target=libwx_gtk2u_stc-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_stc-3.0.so.0
+link path=usr/lib/$(MACH64)/libwx_gtk2u_xrc-3.0.so \
+    target=libwx_gtk2u_xrc-3.0.so.0
+file path=usr/lib/$(MACH64)/libwx_gtk2u_xrc-3.0.so.0
+file path=usr/lib/$(MACH64)/wx/config/gtk2-unicode-3.0 mode=0555
+file path=usr/lib/$(MACH64)/wx/include/gtk2-unicode-3.0/wx/setup.h
+link path=usr/lib/libwx_baseu-3.0.so target=libwx_baseu-3.0.so.0
+file path=usr/lib/libwx_baseu-3.0.so.0
+link path=usr/lib/libwx_baseu_net-3.0.so target=libwx_baseu_net-3.0.so.0
+file path=usr/lib/libwx_baseu_net-3.0.so.0
+link path=usr/lib/libwx_baseu_xml-3.0.so target=libwx_baseu_xml-3.0.so.0
+file path=usr/lib/libwx_baseu_xml-3.0.so.0
+link path=usr/lib/libwx_gtk2u_adv-3.0.so target=libwx_gtk2u_adv-3.0.so.0
+file path=usr/lib/libwx_gtk2u_adv-3.0.so.0
+link path=usr/lib/libwx_gtk2u_aui-3.0.so target=libwx_gtk2u_aui-3.0.so.0
+file path=usr/lib/libwx_gtk2u_aui-3.0.so.0
+link path=usr/lib/libwx_gtk2u_core-3.0.so target=libwx_gtk2u_core-3.0.so.0
+file path=usr/lib/libwx_gtk2u_core-3.0.so.0
+link path=usr/lib/libwx_gtk2u_gl-3.0.so target=libwx_gtk2u_gl-3.0.so.0
+file path=usr/lib/libwx_gtk2u_gl-3.0.so.0 pkg.depend.bypass-generate=.*
+link path=usr/lib/libwx_gtk2u_html-3.0.so target=libwx_gtk2u_html-3.0.so.0
+file path=usr/lib/libwx_gtk2u_html-3.0.so.0
+link path=usr/lib/libwx_gtk2u_media-3.0.so target=libwx_gtk2u_media-3.0.so.0
+file path=usr/lib/libwx_gtk2u_media-3.0.so.0
+link path=usr/lib/libwx_gtk2u_propgrid-3.0.so \
+    target=libwx_gtk2u_propgrid-3.0.so.0
+file path=usr/lib/libwx_gtk2u_propgrid-3.0.so.0
+link path=usr/lib/libwx_gtk2u_qa-3.0.so target=libwx_gtk2u_qa-3.0.so.0
+file path=usr/lib/libwx_gtk2u_qa-3.0.so.0
+link path=usr/lib/libwx_gtk2u_ribbon-3.0.so target=libwx_gtk2u_ribbon-3.0.so.0
+file path=usr/lib/libwx_gtk2u_ribbon-3.0.so.0
+link path=usr/lib/libwx_gtk2u_richtext-3.0.so \
+    target=libwx_gtk2u_richtext-3.0.so.0
+file path=usr/lib/libwx_gtk2u_richtext-3.0.so.0
+link path=usr/lib/libwx_gtk2u_stc-3.0.so target=libwx_gtk2u_stc-3.0.so.0
+file path=usr/lib/libwx_gtk2u_stc-3.0.so.0
+link path=usr/lib/libwx_gtk2u_xrc-3.0.so target=libwx_gtk2u_xrc-3.0.so.0
+file path=usr/lib/libwx_gtk2u_xrc-3.0.so.0
+file path=usr/lib/wx/config/gtk2-unicode-3.0 mode=0555
+file path=usr/lib/wx/include/gtk2-unicode-3.0/wx/setup.h
 file path=usr/share/aclocal/wxwin.m4
+file path=usr/share/bakefile/presets/wx.bkl
+file path=usr/share/bakefile/presets/wx_presets.py
+file path=usr/share/bakefile/presets/wx_unix.bkl
+file path=usr/share/bakefile/presets/wx_win32.bkl
+file path=usr/share/bakefile/presets/wx_xrc.bkl
+file path=usr/share/locale/ca/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/cs/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/da/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/de/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/el/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/es/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/fi/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/fr/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/hu/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/id/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/it/LC_MESSAGES/wxmsw.mo
+file path=usr/share/locale/it/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/ja/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/nl/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/pl/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/ru/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/sl/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/sv/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/tr/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/uk/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/zh_CN/LC_MESSAGES/wxstd.mo
+file path=usr/share/locale/zh_TW/LC_MESSAGES/wxstd.mo
 file wx-config.1 path=usr/share/man/man1/wx-config.1
 file wxrc.1 path=usr/share/man/man1/wxrc.1
-license wxwidgets.license license="wxWindows Library license"
+license wxwidgets.license license="GPLv2, LGPLv2"
 depend type=require fmri=service/opengl/ogl-select