summaryrefslogtreecommitdiff
path: root/x11/wxGTK
diff options
context:
space:
mode:
authortsarna <tsarna>2000-07-30 00:19:08 +0000
committertsarna <tsarna>2000-07-30 00:19:08 +0000
commit2826464a1f4963d97ce06e9056cfc18e619b36a9 (patch)
treef0ccb384e41124c9c022e9b874c9ca8666f91975 /x11/wxGTK
parent0ebb3702d91bb32755eebba6cf2cf0cb8c8c263e (diff)
downloadpkgsrc-2826464a1f4963d97ce06e9056cfc18e619b36a9.tar.gz
wxGTK: A GTK-based implementation of the wxWindows GUI library
Diffstat (limited to 'x11/wxGTK')
-rw-r--r--x11/wxGTK/Makefile23
-rw-r--r--x11/wxGTK/files/md53
-rw-r--r--x11/wxGTK/patches/patch-aa16
-rw-r--r--x11/wxGTK/patches/patch-ab196
-rw-r--r--x11/wxGTK/patches/patch-ac23
-rw-r--r--x11/wxGTK/pkg/COMMENT1
-rw-r--r--x11/wxGTK/pkg/DESCR16
-rw-r--r--x11/wxGTK/pkg/PLIST362
8 files changed, 640 insertions, 0 deletions
diff --git a/x11/wxGTK/Makefile b/x11/wxGTK/Makefile
new file mode 100644
index 00000000000..914418a389b
--- /dev/null
+++ b/x11/wxGTK/Makefile
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/07/30 00:19:08 tsarna Exp $
+#
+
+DISTNAME= wxGTK-2.2.0
+CATEGORIES= x11
+MASTER_SITES= ftp://wesley.informatik.uni-freiburg.de/pub/linux/wxxt/source/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= tsarna@netbsd.org
+HOMEPAGE= http://www.freiburg.linux.de/~wxxt/
+
+DEPENDS+= gtk+>=1.2.7:../../x11/gtk
+DEPENDS+= jpeg-6b:../../graphics/jpeg
+DEPENDS+= png>=1.0.3:../../graphics/png
+DEPENDS+= tiff>=3.5.2:../../graphics/tiff
+
+WRKSRC= ${WRKDIR}/wxGTK
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS+= --with-gtk --disable-threads
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/x11/wxGTK/files/md5 b/x11/wxGTK/files/md5
new file mode 100644
index 00000000000..23f46597fdc
--- /dev/null
+++ b/x11/wxGTK/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 2000/07/30 00:19:08 tsarna Exp $
+
+MD5 (wxGTK-2.2.0.tgz) = 69d37f49d02b5ac8fbcf91c29a09ca34
diff --git a/x11/wxGTK/patches/patch-aa b/x11/wxGTK/patches/patch-aa
new file mode 100644
index 00000000000..8a81ea3b686
--- /dev/null
+++ b/x11/wxGTK/patches/patch-aa
@@ -0,0 +1,16 @@
+$NetBSD: patch-aa,v 1.1.1.1 2000/07/30 00:19:08 tsarna Exp $
+
+We're Unix-like, not Windows-like.
+
+--- include/wx/defs.h.orig Wed Jul 26 20:36:00 2000
++++ include/wx/defs.h Wed Jul 26 20:36:21 2000
+@@ -25,7 +25,8 @@
+ #if defined(__UNIX__) || defined(__unix) || defined(__unix__) || \
+ defined(____SVR4____) || defined(__LINUX__) || defined(__sgi) || \
+ defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
+- defined(__EMX__) || defined(__VMS) || defined(__BEOS__)
++ defined(__EMX__) || defined(__VMS) || defined(__BEOS__) || \
++ defined(__NetBSD__)
+
+ #define __UNIX_LIKE__
+
diff --git a/x11/wxGTK/patches/patch-ab b/x11/wxGTK/patches/patch-ab
new file mode 100644
index 00000000000..dc0589441da
--- /dev/null
+++ b/x11/wxGTK/patches/patch-ab
@@ -0,0 +1,196 @@
+--- Makefile.in.orig Sun Jul 9 05:04:14 2000
++++ Makefile.in Thu Jul 27 21:55:59 2000
+@@ -37,16 +37,12 @@
+ VP4 = @top_srcdir@/src/generic
+ VP5 = @top_srcdir@/src/unix
+ VP6 = @top_srcdir@/src/html
+-VP7 = @top_srcdir@/src/png
+-VP8 = @top_srcdir@/src/jpeg
+-VP9 = @top_srcdir@/src/tiff
+-VP10 = @top_srcdir@/src/zlib
+ VP11 = @top_srcdir@/src/iodbc
+
+ # the comment at the end of the next line is needed because otherwise autoconf
+ # would remove this line completely - it contains a built-in hack to remove
+ # any VPATH assignment not containing ':'
+-VPATH = $(VP1)@PATH_IFS@$(VP2)@PATH_IFS@$(VP3)@PATH_IFS@$(VP4)@PATH_IFS@$(VP5)@PATH_IFS@$(VP6)@PATH_IFS@$(VP7)@PATH_IFS@$(VP8)@PATH_IFS@$(VP9)@PATH_IFS@$(VP10)@PATH_IFS@$(VP11) # ':' for autoconf
++VPATH = $(VP1)@PATH_IFS@$(VP2)@PATH_IFS@$(VP3)@PATH_IFS@$(VP4)@PATH_IFS@$(VP5)@PATH_IFS@$(VP6)@PATH_IFS@$(VP11) # ':' for autoconf
+
+ top_srcdir = @top_srcdir@
+ prefix = @prefix@
+@@ -75,6 +71,8 @@
+
+ top_builddir = .
+
++EXTRALIBS=-lz -L@prefix@/lib -R@prefix@/lib -ljpeg -lpng -ltiff
++
+ INSTALL = @INSTALL@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+ INSTALL_DATA = @INSTALL_DATA@
+@@ -110,10 +108,6 @@
+ COMMDIR = $(WXDIR)/src/common
+ HTMLDIR = $(WXDIR)/src/html
+ UNIXDIR = $(WXDIR)/src/unix
+-PNGDIR = $(WXDIR)/src/png
+-JPEGDIR = $(WXDIR)/src/jpeg
+-TIFFDIR = $(WXDIR)/src/tiff
+-ZLIBDIR = $(WXDIR)/src/zlib
+ GTKDIR = $(WXDIR)/src/gtk
+ MOTIFDIR = $(WXDIR)/src/motif
+ MSWDIR = $(WXDIR)/src/msw
+@@ -153,125 +147,6 @@
+ OBJECTS = @ALL_OBJECTS@
+ DEPFILES = @ALL_DEPFILES@
+
+-# the object files of sublibraries (we assume that they don't change [often],
+-# so we don't generate these lists with tmake but embed them here)
+-ZLIBOBJS = \
+- adler32.o \
+- compress.o \
+- crc32.o \
+- gzio.o \
+- uncompr.o \
+- deflate.o \
+- trees.o \
+- zutil.o \
+- inflate.o \
+- infblock.o \
+- inftrees.o \
+- infcodes.o \
+- infutil.o \
+- inffast.o
+-
+-PNGOBJS = \
+- png.o \
+- pngread.o \
+- pngrtran.o \
+- pngrutil.o \
+- pngpread.o \
+- pngtrans.o \
+- pngwrite.o \
+- pngwtran.o \
+- pngwutil.o \
+- pngerror.o \
+- pngmem.o \
+- pngwio.o \
+- pngrio.o \
+- pngget.o \
+- pngset.o
+-
+-
+-JPEGOBJS = \
+- jcomapi.o \
+- jutils.o \
+- jerror.o \
+- jmemmgr.o \
+- jmemnobs.o \
+- jcapimin.o \
+- jcapistd.o \
+- jctrans.o \
+- jcparam.o \
+- jdatadst.o \
+- jcinit.o \
+- jcmaster.o \
+- jcmarker.o \
+- jcmainct.o \
+- jcprepct.o \
+- jccoefct.o \
+- jccolor.o \
+- jcsample.o \
+- jchuff.o \
+- jcphuff.o \
+- jcdctmgr.o \
+- jfdctfst.o \
+- jfdctflt.o \
+- jfdctint.o \
+- jdapimin.o \
+- jdapistd.o \
+- jdtrans.o \
+- jdatasrc.o \
+- jdmaster.o \
+- jdinput.o \
+- jdmarker.o \
+- jdhuff.o \
+- jdphuff.o \
+- jdmainct.o \
+- jdcoefct.o \
+- jdpostct.o \
+- jddctmgr.o \
+- jidctfst.o \
+- jidctflt.o \
+- jidctint.o \
+- jidctred.o \
+- jdsample.o \
+- jdcolor.o \
+- jquant1.o \
+- jquant2.o \
+- jdmerge.o
+-
+-TIFFOBJS = \
+- tif_aux.o \
+- tif_close.o \
+- tif_codec.o \
+- tif_compress.o \
+- tif_dir.o \
+- tif_dirinfo.o \
+- tif_dirread.o \
+- tif_dirwrite.o \
+- tif_dumpmode.o \
+- tif_error.o \
+- tif_fax3.o \
+- tif_fax3sm.o \
+- tif_getimage.o \
+- tif_jpeg.o \
+- tif_flush.o \
+- tif_lzw.o \
+- tif_luv.o \
+- tif_next.o \
+- tif_open.o \
+- tif_packbits.o \
+- tif_pixarlog.o \
+- tif_predict.o \
+- tif_print.o \
+- tif_read.o \
+- tif_swab.o \
+- tif_strip.o \
+- tif_thunder.o \
+- tif_tile.o \
+- tif_unix.o \
+- tif_version.o \
+- tif_warning.o \
+- tif_write.o \
+- tif_zip.o
+-
+ IODBCOBJS = \
+ catalog.o \
+ connect.o \
+@@ -515,11 +390,6 @@
+ cp $(WXDIR)/lib/vms.opt $(DISTDIR)/lib
+ cp $(WXDIR)/lib/vms_gtk.opt $(DISTDIR)/lib
+ mkdir $(DISTDIR)/src
+- mkdir $(DISTDIR)/src/zlib
+- cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib
+- cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib
+- cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib
+- cp $(ZLIBDIR)/*.mms $(DISTDIR)/src/zlib
+
+ # this target is the common part of distribution script for all GUI toolkits,
+ # but is not used when building wxBase distribution
+@@ -550,7 +420,6 @@
+ mkdir $(DISTDIR)/src/html/bitmaps
+ mkdir $(DISTDIR)/src/$(TOOLKITDIR)
+ mkdir $(DISTDIR)/src/png
+- mkdir $(DISTDIR)/src/jpeg
+ mkdir $(DISTDIR)/src/tiff
+ mkdir $(DISTDIR)/src/iodbc
+ mkdir $(DISTDIR)/src/unix
+@@ -573,9 +442,6 @@
+ cp $(PNGDIR)/*.h $(DISTDIR)/src/png
+ cp $(PNGDIR)/*.c $(DISTDIR)/src/png
+ cp $(PNGDIR)/README $(DISTDIR)/src/png
+- cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg
+- cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg
+- cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg
+ cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff
+ cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff
+ cp $(TIFFDIR)/README $(DISTDIR)/src/tiff
diff --git a/x11/wxGTK/patches/patch-ac b/x11/wxGTK/patches/patch-ac
new file mode 100644
index 00000000000..120208630b4
--- /dev/null
+++ b/x11/wxGTK/patches/patch-ac
@@ -0,0 +1,23 @@
+--- configure.orig Thu Jul 27 21:25:46 2000
++++ configure Thu Jul 27 21:26:53 2000
+@@ -8706,14 +8706,14 @@
+ WX_LIBRARY_NAME_STATIC="lib${WX_LIBRARY}.a"
+ WX_LIBRARY_NAME_STATIC_GL="lib${WX_LIBRARY}_gl.a"
+
+-WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}-${WX_RELEASE}.so.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
+-WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
++WX_LIBRARY_NAME_SHARED="lib${WX_LIBRARY}.so.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
++WX_LIBRARY_NAME_SHARED_GL="lib${WX_LIBRARY}_gl.so.${WX_CURRENT}.${WX_REVISION}.${WX_AGE}"
+
+-WX_LIBRARY_LINK1="lib${WX_LIBRARY}-${WX_RELEASE}.so.${WX_CURRENT}"
+-WX_LIBRARY_LINK2="lib${WX_LIBRARY}-${WX_RELEASE}.so"
++WX_LIBRARY_LINK1="lib${WX_LIBRARY}.so.${WX_CURRENT}.${WX_REVISION}"
++WX_LIBRARY_LINK2="lib${WX_LIBRARY}.so.${WX_CURRENT}"
+ WX_LIBRARY_LINK3="lib${WX_LIBRARY}.so"
+-WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so.${WX_CURRENT}"
+-WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY}_gl-${WX_RELEASE}.so"
++WX_LIBRARY_LINK1_GL="lib${WX_LIBRARY}_gl.so.${WX_CURRENT}.${WX_REVISION}"
++WX_LIBRARY_LINK2_GL="lib${WX_LIBRARY}_gl.so.${WX_CURRENT}"
+ WX_LIBRARY_LINK3_GL="lib${WX_LIBRARY}_gl.so"
+
+ SHARED_LD=
diff --git a/x11/wxGTK/pkg/COMMENT b/x11/wxGTK/pkg/COMMENT
new file mode 100644
index 00000000000..a01709f0f63
--- /dev/null
+++ b/x11/wxGTK/pkg/COMMENT
@@ -0,0 +1 @@
+A GTK-based implementation of the wxWindows GUI library
diff --git a/x11/wxGTK/pkg/DESCR b/x11/wxGTK/pkg/DESCR
new file mode 100644
index 00000000000..89e1b80c257
--- /dev/null
+++ b/x11/wxGTK/pkg/DESCR
@@ -0,0 +1,16 @@
+A GTK+-based implementation of the wxWindows cross-platform GUI library.
+
+wxWindows is a set of libraries that allows C++ applications to compile
+and run on several different types of computer, with minimal source code
+changes. There is one library per supported GUI (such as Windows, GTK+,
+Motif, and Mac).
+
+wxWindows is free, well-established, well-documented, and very broad in
+its coverage of GUI functionality. It has some extras that make it
+stand out from the crowd, such as the many convenience dialogs, built-in
+HTML display and printing, virtual filesystems, easy-to-use OLE
+automation controller class, Open GL support, and many other features
+that make it easier to write modern and user-friendly applications.
+
+There is also a python interface available, wxPython (see the
+py-wxWindows pkg).
diff --git a/x11/wxGTK/pkg/PLIST b/x11/wxGTK/pkg/PLIST
new file mode 100644
index 00000000000..e4cc5dc2d91
--- /dev/null
+++ b/x11/wxGTK/pkg/PLIST
@@ -0,0 +1,362 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2000/07/30 00:19:08 tsarna Exp $
+bin/wxgtk-config
+bin/wx-config
+include/wx/gtk/accel.h
+include/wx/gtk/app.h
+include/wx/gtk/bitmap.h
+include/wx/gtk/bmpbuttn.h
+include/wx/gtk/brush.h
+include/wx/gtk/button.h
+include/wx/gtk/checkbox.h
+include/wx/gtk/checklst.h
+include/wx/gtk/choice.h
+include/wx/gtk/clipbrd.h
+include/wx/gtk/colour.h
+include/wx/gtk/combobox.h
+include/wx/gtk/control.h
+include/wx/gtk/cursor.h
+include/wx/gtk/dataform.h
+include/wx/gtk/dataobj.h
+include/wx/gtk/dataobj2.h
+include/wx/gtk/dc.h
+include/wx/gtk/dcclient.h
+include/wx/gtk/dcmemory.h
+include/wx/gtk/dcscreen.h
+include/wx/gtk/dialog.h
+include/wx/gtk/dnd.h
+include/wx/gtk/filedlg.h
+include/wx/gtk/font.h
+include/wx/gtk/fontdlg.h
+include/wx/gtk/frame.h
+include/wx/gtk/gauge.h
+include/wx/gtk/gdiobj.h
+include/wx/gtk/glcanvas.h
+include/wx/gtk/icon.h
+include/wx/gtk/joystick.h
+include/wx/gtk/listbox.h
+include/wx/gtk/mdi.h
+include/wx/gtk/menu.h
+include/wx/gtk/menuitem.h
+include/wx/gtk/minifram.h
+include/wx/gtk/notebook.h
+include/wx/gtk/palette.h
+include/wx/gtk/pen.h
+include/wx/gtk/radiobox.h
+include/wx/gtk/radiobut.h
+include/wx/gtk/region.h
+include/wx/gtk/scrolbar.h
+include/wx/gtk/settings.h
+include/wx/gtk/slider.h
+include/wx/gtk/spinbutt.h
+include/wx/gtk/spinctrl.h
+include/wx/gtk/statbmp.h
+include/wx/gtk/statbox.h
+include/wx/gtk/statline.h
+include/wx/gtk/timer.h
+include/wx/gtk/stattext.h
+include/wx/gtk/tbargtk.h
+include/wx/gtk/textctrl.h
+include/wx/gtk/tooltip.h
+include/wx/gtk/treectrl.h
+include/wx/gtk/wave.h
+include/wx/gtk/win_gtk.h
+include/wx/gtk/window.h
+include/wx/html/forcelnk.h
+include/wx/html/helpctrl.h
+include/wx/html/helpdata.h
+include/wx/html/helpfrm.h
+include/wx/html/htmlcell.h
+include/wx/html/htmldefs.h
+include/wx/html/htmlfilt.h
+include/wx/html/htmlpars.h
+include/wx/html/htmltag.h
+include/wx/html/htmlwin.h
+include/wx/html/htmprint.h
+include/wx/html/m_templ.h
+include/wx/html/winpars.h
+include/wx/generic/calctrl.h
+include/wx/generic/caret.h
+include/wx/generic/choicdgg.h
+include/wx/generic/colrdlgg.h
+include/wx/generic/dcpsg.h
+include/wx/generic/dirdlgg.h
+include/wx/generic/dragimgg.h
+include/wx/generic/filedlgg.h
+include/wx/generic/fontdlgg.h
+include/wx/generic/grid.h
+include/wx/generic/gridg.h
+include/wx/generic/helpext.h
+include/wx/generic/helphtml.h
+include/wx/generic/helpwxht.h
+include/wx/generic/helpxlp.h
+include/wx/generic/imaglist.h
+include/wx/generic/laywin.h
+include/wx/generic/listctrl.h
+include/wx/generic/msgdlgg.h
+include/wx/generic/notebook.h
+include/wx/generic/panelg.h
+include/wx/generic/plot.h
+include/wx/generic/printps.h
+include/wx/generic/prntdlgg.h
+include/wx/generic/progdlgg.h
+include/wx/generic/sashwin.h
+include/wx/generic/scrolwin.h
+include/wx/generic/splitter.h
+include/wx/generic/statusbr.h
+include/wx/generic/tabg.h
+include/wx/generic/textdlgg.h
+include/wx/generic/treectrl.h
+include/wx/generic/wizard.h
+include/wx/protocol/file.h
+include/wx/protocol/ftp.h
+include/wx/protocol/http.h
+include/wx/protocol/protocol.h
+include/wx/unix/execute.h
+include/wx/unix/fontutil.h
+include/wx/unix/gsockunx.h
+include/wx/unix/mimetype.h
+include/wx/accel.h
+include/wx/app.h
+include/wx/arrimpl.cpp
+include/wx/bitmap.h
+include/wx/bmpbuttn.h
+include/wx/brush.h
+include/wx/buffer.h
+include/wx/busyinfo.h
+include/wx/button.h
+include/wx/calctrl.h
+include/wx/caret.h
+include/wx/checkbox.h
+include/wx/checklst.h
+include/wx/choicdlg.h
+include/wx/choice.h
+include/wx/clipbrd.h
+include/wx/cmdline.h
+include/wx/cmndata.h
+include/wx/colordlg.h
+include/wx/colour.h
+include/wx/combobox.h
+include/wx/confbase.h
+include/wx/config.h
+include/wx/control.h
+include/wx/ctrlsub.h
+include/wx/cursor.h
+include/wx/dataobj.h
+include/wx/date.h
+include/wx/datetime.h
+include/wx/datetime.inl
+include/wx/datstrm.h
+include/wx/db.h
+include/wx/dbtable.h
+include/wx/dc.h
+include/wx/dcclient.h
+include/wx/dcmemory.h
+include/wx/dcprint.h
+include/wx/dcps.h
+include/wx/dcscreen.h
+include/wx/dde.h
+include/wx/debug.h
+include/wx/defs.h
+include/wx/dialog.h
+include/wx/dialup.h
+include/wx/dir.h
+include/wx/dirdlg.h
+include/wx/dnd.h
+include/wx/docmdi.h
+include/wx/docview.h
+include/wx/dragimag.h
+include/wx/dynarray.h
+include/wx/dynlib.h
+include/wx/encconv.h
+include/wx/event.h
+include/wx/expr.h
+include/wx/ffile.h
+include/wx/file.h
+include/wx/fileconf.h
+include/wx/filedlg.h
+include/wx/filefn.h
+include/wx/filesys.h
+include/wx/font.h
+include/wx/fontdlg.h
+include/wx/fontenc.h
+include/wx/fontenum.h
+include/wx/fontmap.h
+include/wx/fontutil.h
+include/wx/frame.h
+include/wx/fs_inet.h
+include/wx/fs_mem.h
+include/wx/fs_zip.h
+include/wx/gauge.h
+include/wx/gdicmn.h
+include/wx/gdiobj.h
+include/wx/geometry.h
+include/wx/gifdecod.h
+include/wx/glcanvas.h
+include/wx/grid.h
+include/wx/gsocket.h
+include/wx/hash.h
+include/wx/help.h
+include/wx/helpbase.h
+include/wx/helphtml.h
+include/wx/helpwin.h
+include/wx/helpxlp.h
+include/wx/icon.h
+include/wx/imagbmp.h
+include/wx/image.h
+include/wx/imaggif.h
+include/wx/imagjpeg.h
+include/wx/imaglist.h
+include/wx/imagpcx.h
+include/wx/imagpng.h
+include/wx/imagpnm.h
+include/wx/imagtiff.h
+include/wx/intl.h
+include/wx/ioswrap.h
+include/wx/ipcbase.h
+include/wx/isql.h
+include/wx/isqlext.h
+include/wx/joystick.h
+include/wx/layout.h
+include/wx/laywin.h
+include/wx/list.h
+include/wx/listbox.h
+include/wx/listctrl.h
+include/wx/listimpl.cpp
+include/wx/log.h
+include/wx/longlong.h
+include/wx/matrix.h
+include/wx/mdi.h
+include/wx/memconf.h
+include/wx/memory.h
+include/wx/menu.h
+include/wx/menuitem.h
+include/wx/metafile.h
+include/wx/mimetype.h
+include/wx/minifram.h
+include/wx/module.h
+include/wx/msgdlg.h
+include/wx/mstream.h
+include/wx/notebook.h
+include/wx/object.h
+include/wx/objstrm.h
+include/wx/odbc.h
+include/wx/ownerdrw.h
+include/wx/palette.h
+include/wx/panel.h
+include/wx/paper.h
+include/wx/pen.h
+include/wx/plot.h
+include/wx/print.h
+include/wx/printdlg.h
+include/wx/prntbase.h
+include/wx/process.h
+include/wx/progdlg.h
+include/wx/prop.h
+include/wx/propform.h
+include/wx/proplist.h
+include/wx/radiobox.h
+include/wx/radiobut.h
+include/wx/region.h
+include/wx/resource.h
+include/wx/sashwin.h
+include/wx/sckaddr.h
+include/wx/sckipc.h
+include/wx/sckstrm.h
+include/wx/scrolbar.h
+include/wx/scrolwin.h
+include/wx/serbase.h
+include/wx/settings.h
+include/wx/setup.h
+include/wx/sizer.h
+include/wx/slider.h
+include/wx/socket.h
+include/wx/spinbutt.h
+include/wx/spinctrl.h
+include/wx/splitter.h
+include/wx/statbmp.h
+include/wx/statbox.h
+include/wx/statline.h
+include/wx/stattext.h
+include/wx/statusbr.h
+include/wx/strconv.h
+include/wx/stream.h
+include/wx/string.h
+include/wx/tab.h
+include/wx/tabctrl.h
+include/wx/taskbar.h
+include/wx/tbarbase.h
+include/wx/tbarsmpl.h
+include/wx/textctrl.h
+include/wx/textdlg.h
+include/wx/textfile.h
+include/wx/thread.h
+include/wx/time.h
+include/wx/timer.h
+include/wx/tipdlg.h
+include/wx/tokenzr.h
+include/wx/toolbar.h
+include/wx/tooltip.h
+include/wx/treectrl.h
+include/wx/txtstrm.h
+include/wx/types.h
+include/wx/url.h
+include/wx/utils.h
+include/wx/valgen.h
+include/wx/validate.h
+include/wx/valtext.h
+include/wx/variant.h
+include/wx/version.h
+include/wx/wave.h
+include/wx/wfstream.h
+include/wx/window.h
+include/wx/wizard.h
+include/wx/wx.h
+include/wx/wx_cw.h
+include/wx/wx_cw_cm.h
+include/wx/wx_cw_d.h
+include/wx/wxchar.h
+include/wx/wxexpr.h
+include/wx/wxhtml.h
+include/wx/wxprec.h
+include/wx/xpmhand.h
+include/wx/zipstrm.h
+include/wx/zstream.h
+lib/libwx_gtk.so.0.0.0
+lib/wx/include/wx/gtk/setup.h
+share/wx/afm/Cour.afm
+share/wx/afm/CourBo.afm
+share/wx/afm/CourBoO.afm
+share/wx/afm/CourO.afm
+share/wx/afm/Helv.afm
+share/wx/afm/HelvBo.afm
+share/wx/afm/HelvBoO.afm
+share/wx/afm/HelvO.afm
+share/wx/afm/TimesBo.afm
+share/wx/afm/TimesBoO.afm
+share/wx/afm/TimesO.afm
+share/wx/afm/TimesRo.afm
+share/wx/gs_afm/Cour.afm
+share/wx/gs_afm/CourBo.afm
+share/wx/gs_afm/CourBoO.afm
+share/wx/gs_afm/CourO.afm
+share/wx/gs_afm/Helv.afm
+share/wx/gs_afm/HelvBo.afm
+share/wx/gs_afm/HelvBoO.afm
+share/wx/gs_afm/HelvO.afm
+share/wx/gs_afm/TimesBo.afm
+share/wx/gs_afm/TimesBoO.afm
+share/wx/gs_afm/TimesO.afm
+share/wx/gs_afm/TimesRo.afm
+@dirrm include/wx/gtk
+@dirrm include/wx/html
+@dirrm include/wx/generic
+@dirrm include/wx/protocol
+@dirrm include/wx/unix
+@dirrm include/wx
+@dirrm lib/wx/include/wx/gtk
+@dirrm lib/wx/include/wx
+@dirrm lib/wx/include
+@dirrm lib/wx
+@dirrm share/wx/afm
+@dirrm share/wx/gs_afm
+@dirrm share/wx