Bug 33305

Summary: (no subject)
Product: Ports & Packages Reporter: Michal P. <doc>
Component: Individual Port(s)Assignee: GNATS administrator <gnats-admin>
Status: Closed FIXED    
Severity: Affects Only Me CC: doc
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Michal P. 2001-12-29 21:10:01 UTC
 Submitter-Id:	current-users
 Originator:	Michal Pasternak
 Confidential:	no
 Synopsis:	NEW PORT: devel/mingw-wxWindows
 Severity:	non-critical
 Priority:	low
 Category:ports
 Class:		update
 Release:	FreeBSD 4.4-STABLE i386
 Environment:	System: FreeBSD pr93.lublin.sdi.tpnet.pl 4.4-STABLE FreeBSD 4.4-STABLE #14: Mon Nov 26 05:27:32 CET 2001 doc@pr93.lublin.sdi.tpnet.pl:/usr/obj/usr/src/sys/DOCUS i386
 Description:
 
 
    wxWindows is a cross-platform GUI library. It supports Win, Mac and X11
    (Motif, GTK).
    
    This is a port of wxWindows library, which compiles under Mingw32
    (devel/mingw).
    
    It allows you to create Windows 9x/NT/XP GUI applications on FreeBSD. It
    supports OpenGL.
    
    Please make sure to add 'mingw-opengl-headers' also (I send it in another
    PR, at the same time I send this PR). The library will have OpenGL support
    then. This ports depends on 'mingw-opengl-headers'
    
    I tested this library using 'samples' included. It works, exe files work
    (at least on W2K), even those which use OpenGL.
 
    Thank you.
 
 Fix:
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	mingw-wxWindows
 #	mingw-wxWindows/files
 #	mingw-wxWindows/files/patch-ab
 #	mingw-wxWindows/files/patch-aa
 #	mingw-wxWindows/files/patch-ac
 #	mingw-wxWindows/files/patch-ad
 #	mingw-wxWindows/pkg-comment
 #	mingw-wxWindows/Makefile
 #	mingw-wxWindows/distinfo
 #	mingw-wxWindows/pkg-plist
 #	mingw-wxWindows/pkg-descr
 #
 echo c - mingw-wxWindows
 mkdir -p mingw-wxWindows > /dev/null 2>&1
 echo c - mingw-wxWindows/files
 mkdir -p mingw-wxWindows/files > /dev/null 2>&1
 echo x - mingw-wxWindows/files/patch-ab
 sed 's/^X//' >mingw-wxWindows/files/patch-ab << 'END-of-mingw-wxWindows/files/patch-ab'
 X--- src/msw/makefile.g95.orig	Wed Dec 26 00:52:32 2001
 X+++ src/msw/makefile.g95	Wed Dec 26 00:49:14 2001
 X@@ -672,3 +672,44 @@
 X endif
 X endif
 X 
 X+
 X+# FreeBSD Mingw32msvc installation
 X+# Dec, 25, 2001 -- Michal Pasternak <doc@lublin.t1.pl>
 X+
 X+PREFIX=/usr/local/i386-mingw32msvc
 X+FILEMODE=-g wheel -o root -m 644
 X+DIRMODE=-g wheel -o root -m 755
 X+INSTALL=/usr/bin/install
 X+
 X+install:
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/lib/libjpeg.a $(PREFIX)/lib
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/lib/libpng.a $(PREFIX)/lib
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/lib/libregex.a $(PREFIX)/lib
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/lib/libtiff.a $(PREFIX)/lib
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/lib/libwx.a $(PREFIX)/lib
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/lib/libzlib.a $(PREFIX)/lib
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/generic/
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/html/msw/
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/msw/
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/msw/ctl3d/	
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/msw/gnuwin32/
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/msw/gnuwin32/gl/
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/msw/ole/
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/protocol/
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/univ/
 X+	$(INSTALL) -d $(DIRMODE) $(PREFIX)/include/wx/unix/	
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/*.* $(PREFIX)/include/wx/
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/generic/*.* $(PREFIX)/include/wx/generic
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/html/*.* $(PREFIX)/include/wx/html
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/html/msw/*.* $(PREFIX)/include/wx/html/msw
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/msw/*.* $(PREFIX)/include/wx/msw
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/msw/ctl3d/*.* $(PREFIX)/include/wx/msw/ctl3d
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/msw/gnuwin32/*.* $(PREFIX)/include/wx/msw/gnuwin32
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/msw/gnuwin32/gl/*.* $(PREFIX)/include/wx/msw/gnuwin32/gl
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/msw/ole/*.* $(PREFIX)/include/wx/msw/ole
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/protocol/*.* $(PREFIX)/include/wx/protocol
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/univ/*.* $(PREFIX)/include/wx/univ
 X+	$(INSTALL) $(FILEMODE) $(WXDIR)/include/wx/unix/*.* $(PREFIX)/include/wx/unix
 X+
 X+deinstall:
 X+	rm -rf $(PREFIX)/include/wx/ $(PREFIX)/lib/libjpeg.a $(PREFIX)/lib/libzlib.a $(PREFIX)/lib/libjpeg.a $(PREFIX)/lib/libpng.a $(PREFIX)/lib/libregex.a $(PREFIX)/lib/libtiff.a $(PREFIX)/lib/libwx.a
 END-of-mingw-wxWindows/files/patch-ab
 echo x - mingw-wxWindows/files/patch-aa
 sed 's/^X//' >mingw-wxWindows/files/patch-aa << 'END-of-mingw-wxWindows/files/patch-aa'
 X--- src/makeg95.env.orig	Fri Dec 28 10:49:41 2001
 X+++ src/makeg95.env	Fri Dec 28 10:57:34 2001
 X@@ -39,7 +39,7 @@
 X COPY=cp
 X 
 X # Cross compiling? Provide the target prefix (eg., i386-mingw32-)
 X-# CROSS=i386-mingw32-
 X+CROSS=i386-mingw32msvc-
 X 
 X ########################## Compiler ##################################
 X 
 X@@ -99,10 +99,10 @@
 X # Miscellaneous compiler options
 X # GRG: the __MINGW32__ option is not needed anymore
 X # add "-DHAVE_W32API_H" if you have w32api >= 0.5
 X-OPTIONS = -DSTRICT # -D__MINGW32__
 X+OPTIONS = -DSTRICT -DHAVE_W32API_H # -D__MINGW32__
 X 
 X # Debugging information
 X-DEBUGFLAGS = -D__WXDEBUG__
 X+DEBUGFLAGS = # -D__WXDEBUG__
 X 
 X WIN95=1
 X 
 END-of-mingw-wxWindows/files/patch-aa
 echo x - mingw-wxWindows/files/patch-ac
 sed 's/^X//' >mingw-wxWindows/files/patch-ac << 'END-of-mingw-wxWindows/files/patch-ac'
 X--- include/wx/msw/setup.h.orig	Sat Dec 29 19:38:42 2001
 X+++ include/wx/msw/setup.h	Sat Dec 29 19:38:48 2001
 X@@ -730,7 +730,7 @@
 X #define wxUSE_HTML          1
 X 
 X // OpenGL canvas
 X-#define wxUSE_GLCANVAS       0
 X+#define wxUSE_GLCANVAS       1
 X 
 X // wxTreeLayout class
 X #define wxUSE_TREELAYOUT     1
 END-of-mingw-wxWindows/files/patch-ac
 echo x - mingw-wxWindows/files/patch-ad
 sed 's/^X//' >mingw-wxWindows/files/patch-ad << 'END-of-mingw-wxWindows/files/patch-ad'
 X--- src/msw/glcanvas.cpp.orig	Sat Dec 29 20:10:58 2001
 X+++ src/msw/glcanvas.cpp	Sat Dec 29 20:11:19 2001
 X@@ -434,11 +434,11 @@
 X 
 X   pixelFormat = ChoosePixelFormat((HDC) m_hDC, &pfd);
 X   if (pixelFormat == 0) {
 X-    wxLogWarning(_("ChoosePixelFormat failed."));
 X+    wxLogWarning(wxT("ChoosePixelFormat failed."));
 X   }
 X   else {
 X     if (SetPixelFormat((HDC) m_hDC, pixelFormat, &pfd) != TRUE) {
 X-      wxLogWarning(_("SetPixelFormat failed."));
 X+      wxLogWarning(wxT("SetPixelFormat failed."));
 X     }
 X   }
 X }
 X@@ -736,7 +736,7 @@
 X   pixelFormat = ChoosePixelFormat((HDC) ::GetDC(NULL), &pfd);
 X 
 X   if (pixelFormat == 0) {
 X-    wxLogError(_("Failed to initialize OpenGL"));
 X+    wxLogError(wxT("Failed to initialize OpenGL"));
 X     return FALSE;
 X   }
 X 
 END-of-mingw-wxWindows/files/patch-ad
 echo x - mingw-wxWindows/pkg-comment
 sed 's/^X//' >mingw-wxWindows/pkg-comment << 'END-of-mingw-wxWindows/pkg-comment'
 XThe wxWindows library for cross-development with Mingw32
 END-of-mingw-wxWindows/pkg-comment
 echo x - mingw-wxWindows/Makefile
 sed 's/^X//' >mingw-wxWindows/Makefile << 'END-of-mingw-wxWindows/Makefile'
 X# Ports collection makefile for: wxWindows for Mingw
 X# Date created:		25 dec 2001
 X# Whom: 		Michal Pasternak <doc@lublin.t1.pl>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=      wxWindows
 XPORTVERSION=   2.3.2
 XCATEGORIES=    devel
 XMASTER_SITES=	http://lublin.t1.pl/ ${MASTER_SITE_SOURCEFORGE}
 XMASTER_SITE_SUBDIR=	wxwindows
 XPKGNAMEPREFIX=	mingw-
 XDISTNAME=	wxMSW-${PORTVERSION}
 XEXTRACT_SUFX=	.zip
 X
 XMAINTAINER=    doc@lublin.t1.pl
 X
 XDEPENDS=	${PORTSDIR}/devel/mingw-opengl-headers
 X
 XBUILD_DEPENDS=	unix2dos:${PORTSDIR}/converters/unix2dos/ \
 X		i386-mingw32msvc-as:${PORTSDIR}/devel/mingw-binutils \
 X		mingwm10.dll:${PORTSDIR}/devel/mingw-bin-msvcrt \
 X		i386-mingw32msvc-gcc:${PORTSDIR}/devel/mingw-gcc \
 X
 XDIST_SUBDIR=	mingw
 X
 XUSE_ZIP=	yes
 XUSE_GMAKE=	yes
 XWRKSRC=		${WRKDIR}
 XMAKEFILE=	makefile.g95
 XMAKE_ARGS=	--directory=src/msw/
 X
 XBUILD_WRKSRC=	${WRKDIR}
 XALL_TARGET=
 X
 Xpost-extract:
 X	find ${WRKSRC}/* -type f -name "*.cpp" -or -name "*.h" -or -name "*.c" | xargs dos2unix
 X
 X.include <bsd.port.mk>
 END-of-mingw-wxWindows/Makefile
 echo x - mingw-wxWindows/distinfo
 sed 's/^X//' >mingw-wxWindows/distinfo << 'END-of-mingw-wxWindows/distinfo'
 XMD5 (mingw/wxMSW-2.3.2.zip) = f13c7d1142fcf13c541095b5178026df
 END-of-mingw-wxWindows/distinfo
 echo x - mingw-wxWindows/pkg-plist
 sed 's/^X//' >mingw-wxWindows/pkg-plist << 'END-of-mingw-wxWindows/pkg-plist'
 X@cwd /usr/local/i386-mingw32msvc/
 Xlib/libjpeg.a
 Xlib/libpng.a
 Xlib/libregex.a
 Xlib/libtiff.a
 Xlib/libwx.a
 Xlib/libzlib.a
 Xinclude/wx/accel.h
 Xinclude/wx/app.h
 Xinclude/wx/arrimpl.cpp
 Xinclude/wx/bitmap.h
 Xinclude/wx/bmpbuttn.h
 Xinclude/wx/brush.h
 Xinclude/wx/buffer.h
 Xinclude/wx/busyinfo.h
 Xinclude/wx/button.h
 Xinclude/wx/calctrl.h
 Xinclude/wx/caret.h
 Xinclude/wx/checkbox.h
 Xinclude/wx/checklst.h
 Xinclude/wx/chkconf.h
 Xinclude/wx/choicdlg.h
 Xinclude/wx/choice.h
 Xinclude/wx/clipbrd.h
 Xinclude/wx/clntdata.h
 Xinclude/wx/cmdline.h
 Xinclude/wx/cmdproc.h
 Xinclude/wx/cmndata.h
 Xinclude/wx/colordlg.h
 Xinclude/wx/colour.h
 Xinclude/wx/combobox.h
 Xinclude/wx/confbase.h
 Xinclude/wx/config.h
 Xinclude/wx/containr.h
 Xinclude/wx/control.h
 Xinclude/wx/cshelp.h
 Xinclude/wx/ctrlsub.h
 Xinclude/wx/cursor.h
 Xinclude/wx/dataobj.h
 Xinclude/wx/date.h
 Xinclude/wx/datetime.h
 Xinclude/wx/datetime.inl
 Xinclude/wx/datstrm.h
 Xinclude/wx/db.h
 Xinclude/wx/dbgrid.h
 Xinclude/wx/dbkeyg.h
 Xinclude/wx/dbtable.h
 Xinclude/wx/dc.h
 Xinclude/wx/dcclient.h
 Xinclude/wx/dcmemory.h
 Xinclude/wx/dcprint.h
 Xinclude/wx/dcps.h
 Xinclude/wx/dcscreen.h
 Xinclude/wx/dde.h
 Xinclude/wx/debug.h
 Xinclude/wx/defs.h
 Xinclude/wx/dialog.h
 Xinclude/wx/dialup.h
 Xinclude/wx/dir.h
 Xinclude/wx/dirctrl.h
 Xinclude/wx/dirdlg.h
 Xinclude/wx/dnd.h
 Xinclude/wx/docmdi.h
 Xinclude/wx/docview.h
 Xinclude/wx/dragimag.h
 Xinclude/wx/dynarray.h
 Xinclude/wx/dynlib.h
 Xinclude/wx/effects.h
 Xinclude/wx/encconv.h
 Xinclude/wx/event.h
 Xinclude/wx/evtloop.h
 Xinclude/wx/expr.h
 Xinclude/wx/fdrepdlg.h
 Xinclude/wx/ffile.h
 Xinclude/wx/file.h
 Xinclude/wx/fileconf.h
 Xinclude/wx/filedlg.h
 Xinclude/wx/filefn.h
 Xinclude/wx/filename.h
 Xinclude/wx/filesys.h
 Xinclude/wx/font.h
 Xinclude/wx/fontdlg.h
 Xinclude/wx/fontenc.h
 Xinclude/wx/fontenum.h
 Xinclude/wx/fontmap.h
 Xinclude/wx/fontutil.h
 Xinclude/wx/frame.h
 Xinclude/wx/fs_inet.h
 Xinclude/wx/fs_mem.h
 Xinclude/wx/fs_zip.h
 Xinclude/wx/gauge.h
 Xinclude/wx/gdicmn.h
 Xinclude/wx/gdiobj.h
 Xinclude/wx/generic/accel.h
 Xinclude/wx/generic/calctrl.h
 Xinclude/wx/generic/caret.h
 Xinclude/wx/generic/choicdgg.h
 Xinclude/wx/generic/colrdlgg.h
 Xinclude/wx/generic/cross.xpm
 Xinclude/wx/generic/dcpsg.h
 Xinclude/wx/generic/deffile.xpm
 Xinclude/wx/generic/dir_up.xpm
 Xinclude/wx/generic/dirctrlg.h
 Xinclude/wx/generic/dirdlgg.h
 Xinclude/wx/generic/dragimgg.h
 Xinclude/wx/generic/error.xpm
 Xinclude/wx/generic/exefile.xpm
 Xinclude/wx/generic/fdrepdlg.h
 Xinclude/wx/generic/filedlgg.h
 Xinclude/wx/generic/folder.xpm
 Xinclude/wx/generic/fontdlgg.h
 Xinclude/wx/generic/grid.h
 Xinclude/wx/generic/gridctrl.h
 Xinclude/wx/generic/gridg.h
 Xinclude/wx/generic/gridsel.h
 Xinclude/wx/generic/helpext.h
 Xinclude/wx/generic/helphtml.h
 Xinclude/wx/generic/helpwxht.h
 Xinclude/wx/generic/helpxlp.h
 Xinclude/wx/generic/home.xpm
 Xinclude/wx/generic/imaglist.h
 Xinclude/wx/generic/info.xpm
 Xinclude/wx/generic/laywin.h
 Xinclude/wx/generic/listctrl.h
 Xinclude/wx/generic/listview.xpm
 Xinclude/wx/generic/msgdlgg.h
 Xinclude/wx/generic/new_dir.xpm
 Xinclude/wx/generic/notebook.h
 Xinclude/wx/generic/paletteg.h
 Xinclude/wx/generic/panelg.h
 Xinclude/wx/generic/printps.h
 Xinclude/wx/generic/prntdlgg.h
 Xinclude/wx/generic/progdlgg.h
 Xinclude/wx/generic/question.xpm
 Xinclude/wx/generic/repview.xpm
 Xinclude/wx/generic/sashwin.h
 Xinclude/wx/generic/scrolwin.h
 Xinclude/wx/generic/spinctlg.h
 Xinclude/wx/generic/splash.h
 Xinclude/wx/generic/splitter.h
 Xinclude/wx/generic/statline.h
 Xinclude/wx/generic/statusbr.h
 Xinclude/wx/generic/tabg.h
 Xinclude/wx/generic/textdlgg.h
 Xinclude/wx/generic/tick.xpm
 Xinclude/wx/generic/tip.xpm
 Xinclude/wx/generic/treectlg.h
 Xinclude/wx/generic/treelay.h
 Xinclude/wx/generic/warning.xpm
 Xinclude/wx/generic/wizard.h
 Xinclude/wx/geometry.h
 Xinclude/wx/gifdecod.h
 Xinclude/wx/glcanvas.h
 Xinclude/wx/grid.h
 Xinclude/wx/gsocket.h
 Xinclude/wx/hash.h
 Xinclude/wx/help.h
 Xinclude/wx/helpbase.h
 Xinclude/wx/helphtml.h
 Xinclude/wx/helpwin.h
 Xinclude/wx/helpxlp.h
 Xinclude/wx/html/msw/wback.bmp
 Xinclude/wx/html/msw/wbkadd.bmp
 Xinclude/wx/html/msw/wbkdel.bmp
 Xinclude/wx/html/msw/wbook.ico
 Xinclude/wx/html/msw/wdown.bmp
 Xinclude/wx/html/msw/wfolder.ico
 Xinclude/wx/html/msw/wforward.bmp
 Xinclude/wx/html/msw/whelp.ico
 Xinclude/wx/html/msw/whlproot.ico
 Xinclude/wx/html/msw/wopen.bmp
 Xinclude/wx/html/msw/woptions.bmp
 Xinclude/wx/html/msw/wpage.ico
 Xinclude/wx/html/msw/wpanel.bmp
 Xinclude/wx/html/msw/wprint.bmp
 Xinclude/wx/html/msw/wup.bmp
 Xinclude/wx/html/msw/wupnode.bmp
 Xinclude/wx/html/msw/wxhtml.rc
 Xinclude/wx/html/forcelnk.h
 Xinclude/wx/html/helpctrl.h
 Xinclude/wx/html/helpdata.h
 Xinclude/wx/html/helpfrm.h
 Xinclude/wx/html/htmlcell.h
 Xinclude/wx/html/htmldefs.h
 Xinclude/wx/html/htmlfilt.h
 Xinclude/wx/html/htmlpars.h
 Xinclude/wx/html/htmlproc.h
 Xinclude/wx/html/htmltag.h
 Xinclude/wx/html/htmlwin.h
 Xinclude/wx/html/htmprint.h
 Xinclude/wx/html/m_templ.h
 Xinclude/wx/html/winpars.h
 Xinclude/wx/icon.h
 Xinclude/wx/imagbmp.h
 Xinclude/wx/image.h
 Xinclude/wx/imaggif.h
 Xinclude/wx/imagjpeg.h
 Xinclude/wx/imaglist.h
 Xinclude/wx/imagpcx.h
 Xinclude/wx/imagpng.h
 Xinclude/wx/imagpnm.h
 Xinclude/wx/imagtiff.h
 Xinclude/wx/imagxpm.h
 Xinclude/wx/intl.h
 Xinclude/wx/ioswrap.h
 Xinclude/wx/ipcbase.h
 Xinclude/wx/isql.h
 Xinclude/wx/isqlext.h
 Xinclude/wx/joystick.h
 Xinclude/wx/layout.h
 Xinclude/wx/laywin.h
 Xinclude/wx/list.h
 Xinclude/wx/listbox.h
 Xinclude/wx/listctrl.h
 Xinclude/wx/listimpl.cpp
 Xinclude/wx/log.h
 Xinclude/wx/longlong.h
 Xinclude/wx/matrix.h
 Xinclude/wx/mdi.h
 Xinclude/wx/memconf.h
 Xinclude/wx/memory.h
 Xinclude/wx/memtext.h
 Xinclude/wx/menu.h
 Xinclude/wx/menuitem.h
 Xinclude/wx/metafile.h
 Xinclude/wx/mimetype.h
 Xinclude/wx/minifram.h
 Xinclude/wx/module.h
 Xinclude/wx/msgdlg.h
 Xinclude/wx/mstream.h
 Xinclude/wx/msw/ctl3d/ctl3d.h
 Xinclude/wx/msw/gnuwin32/gl/gl.h
 Xinclude/wx/msw/gnuwin32/gl/glaux.h
 Xinclude/wx/msw/gnuwin32/gl/glu.h
 Xinclude/wx/msw/gnuwin32/extra.h
 Xinclude/wx/msw/gnuwin32/sql.h
 Xinclude/wx/msw/gnuwin32/sqlext.h
 Xinclude/wx/msw/gnuwin32/sqltypes.h
 Xinclude/wx/msw/gnuwin32/winresrc.h
 Xinclude/wx/msw/ole/automtn.h
 Xinclude/wx/msw/ole/dataform.h
 Xinclude/wx/msw/ole/dataobj.h
 Xinclude/wx/msw/ole/dataobj2.h
 Xinclude/wx/msw/ole/dropsrc.h
 Xinclude/wx/msw/ole/droptgt.h
 Xinclude/wx/msw/ole/oleutils.h
 Xinclude/wx/msw/ole/uuid.h
 Xinclude/wx/msw/accel.h
 Xinclude/wx/msw/app.h
 Xinclude/wx/msw/bitmap.h
 Xinclude/wx/msw/blank.cur
 Xinclude/wx/msw/bmpbuttn.h
 Xinclude/wx/msw/brush.h
 Xinclude/wx/msw/bullseye.cur
 Xinclude/wx/msw/button.h
 Xinclude/wx/msw/caret.h
 Xinclude/wx/msw/cdrom.ico
 Xinclude/wx/msw/checkbox.h
 Xinclude/wx/msw/checklst.h
 Xinclude/wx/msw/child.ico
 Xinclude/wx/msw/choice.h
 Xinclude/wx/msw/clipbrd.h
 Xinclude/wx/msw/clock.cur
 Xinclude/wx/msw/colordlg.h
 Xinclude/wx/msw/colour.h
 Xinclude/wx/msw/colours.bmp
 Xinclude/wx/msw/combobox.h
 Xinclude/wx/msw/computer.ico
 Xinclude/wx/msw/control.h
 Xinclude/wx/msw/cross.bmp
 Xinclude/wx/msw/csquery.bmp
 Xinclude/wx/msw/curico.h
 Xinclude/wx/msw/curicop.h
 Xinclude/wx/msw/cursor.h
 Xinclude/wx/msw/dc.h
 Xinclude/wx/msw/dcclient.h
 Xinclude/wx/msw/dcmemory.h
 Xinclude/wx/msw/dcprint.h
 Xinclude/wx/msw/dcscreen.h
 Xinclude/wx/msw/dde.h
 Xinclude/wx/msw/dialog.h
 Xinclude/wx/msw/dib.h
 Xinclude/wx/msw/dibutils.h
 Xinclude/wx/msw/dirdlg.h
 Xinclude/wx/msw/disable.bmp
 Xinclude/wx/msw/dragimag.h
 Xinclude/wx/msw/drive.ico
 Xinclude/wx/msw/enhmeta.h
 Xinclude/wx/msw/error.ico
 Xinclude/wx/msw/fdrepdlg.h
 Xinclude/wx/msw/file1.ico
 Xinclude/wx/msw/filedlg.h
 Xinclude/wx/msw/floppy.ico
 Xinclude/wx/msw/folder1.ico
 Xinclude/wx/msw/folder2.ico
 Xinclude/wx/msw/font.h
 Xinclude/wx/msw/fontdlg.h
 Xinclude/wx/msw/fontenum.h
 Xinclude/wx/msw/frame.h
 Xinclude/wx/msw/gauge95.h
 Xinclude/wx/msw/gaugemsw.h
 Xinclude/wx/msw/gccpriv.h
 Xinclude/wx/msw/gdiimage.h
 Xinclude/wx/msw/gdiobj.h
 Xinclude/wx/msw/glcanvas.h
 Xinclude/wx/msw/gsockmsw.h
 Xinclude/wx/msw/hand.cur
 Xinclude/wx/msw/heart.cur
 Xinclude/wx/msw/helpbest.h
 Xinclude/wx/msw/helpchm.h
 Xinclude/wx/msw/helpwin.h
 Xinclude/wx/msw/icon.h
 Xinclude/wx/msw/imaglist.h
 Xinclude/wx/msw/info.ico
 Xinclude/wx/msw/iniconf.h
 Xinclude/wx/msw/joystick.h
 Xinclude/wx/msw/listbox.h
 Xinclude/wx/msw/listctrl.h
 Xinclude/wx/msw/magnif1.cur
 Xinclude/wx/msw/mdi.h
 Xinclude/wx/msw/mdi.ico
 Xinclude/wx/msw/menu.h
 Xinclude/wx/msw/menuitem.h
 Xinclude/wx/msw/metafile.h
 Xinclude/wx/msw/microwin.h
 Xinclude/wx/msw/mimetype.h
 Xinclude/wx/msw/minifram.h
 Xinclude/wx/msw/msgdlg.h
 Xinclude/wx/msw/msvcrt.h
 Xinclude/wx/msw/noentry.cur
 Xinclude/wx/msw/notebook.h
 Xinclude/wx/msw/palette.h
 Xinclude/wx/msw/pbrush.cur
 Xinclude/wx/msw/pen.h
 Xinclude/wx/msw/pencil.cur
 Xinclude/wx/msw/pntleft.cur
 Xinclude/wx/msw/pntright.cur
 Xinclude/wx/msw/popupwin.h
 Xinclude/wx/msw/printdlg.h
 Xinclude/wx/msw/printwin.h
 Xinclude/wx/msw/private.h
 Xinclude/wx/msw/query.cur
 Xinclude/wx/msw/question.ico
 Xinclude/wx/msw/radiobox.h
 Xinclude/wx/msw/radiobut.h
 Xinclude/wx/msw/regconf.h
 Xinclude/wx/msw/region.h
 Xinclude/wx/msw/registry.h
 Xinclude/wx/msw/removble.ico
 Xinclude/wx/msw/roller.cur
 Xinclude/wx/msw/scrolbar.h
 Xinclude/wx/msw/settings.h
 Xinclude/wx/msw/setup.h
 Xinclude/wx/msw/setup0.h
 Xinclude/wx/msw/setup_microwin.h
 Xinclude/wx/msw/size.cur
 Xinclude/wx/msw/slider95.h
 Xinclude/wx/msw/slidrmsw.h
 Xinclude/wx/msw/spinbutt.h
 Xinclude/wx/msw/spinctrl.h
 Xinclude/wx/msw/statbmp.h
 Xinclude/wx/msw/statbox.h
 Xinclude/wx/msw/statbr95.h
 Xinclude/wx/msw/statline.h
 Xinclude/wx/msw/stattext.h
 Xinclude/wx/msw/std.ico
 Xinclude/wx/msw/tabctrl.h
 Xinclude/wx/msw/taskbar.h
 Xinclude/wx/msw/tbar95.h
 Xinclude/wx/msw/tbarmsw.h
 Xinclude/wx/msw/textctrl.h
 Xinclude/wx/msw/tglbtn.h
 Xinclude/wx/msw/tick.bmp
 Xinclude/wx/msw/timer.h
 Xinclude/wx/msw/tip.ico
 Xinclude/wx/msw/tooltip.h
 Xinclude/wx/msw/toplevel.h
 Xinclude/wx/msw/treectrl.h
 Xinclude/wx/msw/warning.ico
 Xinclude/wx/msw/watch1.cur
 Xinclude/wx/msw/wave.h
 Xinclude/wx/msw/window.h
 Xinclude/wx/msw/winundef.h
 Xinclude/wx/msw/wx.rc
 Xinclude/wx/notebook.h
 Xinclude/wx/object.h
 Xinclude/wx/objstrm.h
 Xinclude/wx/odbc.h
 Xinclude/wx/ownerdrw.h
 Xinclude/wx/palette.h
 Xinclude/wx/panel.h
 Xinclude/wx/paper.h
 Xinclude/wx/pen.h
 Xinclude/wx/platform.h
 Xinclude/wx/popupwin.h
 Xinclude/wx/print.h
 Xinclude/wx/printdlg.h
 Xinclude/wx/prntbase.h
 Xinclude/wx/process.h
 Xinclude/wx/progdlg.h
 Xinclude/wx/prop.h
 Xinclude/wx/propform.h
 Xinclude/wx/proplist.h
 Xinclude/wx/protocol/file.h
 Xinclude/wx/protocol/ftp.h
 Xinclude/wx/protocol/http.h
 Xinclude/wx/protocol/protocol.h
 Xinclude/wx/quantize.h
 Xinclude/wx/radiobox.h
 Xinclude/wx/radiobut.h
 Xinclude/wx/regex.h
 Xinclude/wx/region.h
 Xinclude/wx/resource.h
 Xinclude/wx/sashwin.h
 Xinclude/wx/sckaddr.h
 Xinclude/wx/sckipc.h
 Xinclude/wx/sckstrm.h
 Xinclude/wx/scrolbar.h
 Xinclude/wx/scrolwin.h
 Xinclude/wx/serbase.h
 Xinclude/wx/settings.h
 Xinclude/wx/setup.h
 Xinclude/wx/sizer.h
 Xinclude/wx/slider.h
 Xinclude/wx/snglinst.h
 Xinclude/wx/socket.h
 Xinclude/wx/spawnbrowser.h
 Xinclude/wx/spinbutt.h
 Xinclude/wx/spinctrl.h
 Xinclude/wx/splash.h
 Xinclude/wx/splitter.h
 Xinclude/wx/stack.h
 Xinclude/wx/statbmp.h
 Xinclude/wx/statbox.h
 Xinclude/wx/statline.h
 Xinclude/wx/stattext.h
 Xinclude/wx/statusbr.h
 Xinclude/wx/strconv.h
 Xinclude/wx/stream.h
 Xinclude/wx/string.h
 Xinclude/wx/sysopt.h
 Xinclude/wx/tab.h
 Xinclude/wx/tabctrl.h
 Xinclude/wx/taskbar.h
 Xinclude/wx/tbarbase.h
 Xinclude/wx/tbarsmpl.h
 Xinclude/wx/textbuf.h
 Xinclude/wx/textctrl.h
 Xinclude/wx/textdlg.h
 Xinclude/wx/textfile.h
 Xinclude/wx/tglbtn.h
 Xinclude/wx/thread.h
 Xinclude/wx/time.h
 Xinclude/wx/timer.h
 Xinclude/wx/tipdlg.h
 Xinclude/wx/tipwin.h
 Xinclude/wx/tokenzr.h
 Xinclude/wx/toolbar.h
 Xinclude/wx/tooltip.h
 Xinclude/wx/toplevel.h
 Xinclude/wx/treebase.h
 Xinclude/wx/treectrl.h
 Xinclude/wx/treelay.h
 Xinclude/wx/txtstrm.h
 Xinclude/wx/types.h
 Xinclude/wx/univ/app.h
 Xinclude/wx/univ/bmpbuttn.h
 Xinclude/wx/univ/button.h
 Xinclude/wx/univ/checkbox.h
 Xinclude/wx/univ/checklst.h
 Xinclude/wx/univ/choice.h
 Xinclude/wx/univ/colschem.h
 Xinclude/wx/univ/combobox.h
 Xinclude/wx/univ/control.h
 Xinclude/wx/univ/dialog.h
 Xinclude/wx/univ/frame.h
 Xinclude/wx/univ/gauge.h
 Xinclude/wx/univ/inpcons.h
 Xinclude/wx/univ/inphand.h
 Xinclude/wx/univ/listbox.h
 Xinclude/wx/univ/menu.h
 Xinclude/wx/univ/menuitem.h
 Xinclude/wx/univ/notebook.h
 Xinclude/wx/univ/radiobox.h
 Xinclude/wx/univ/radiobut.h
 Xinclude/wx/univ/renderer.h
 Xinclude/wx/univ/scrarrow.h
 Xinclude/wx/univ/scrolbar.h
 Xinclude/wx/univ/scrthumb.h
 Xinclude/wx/univ/scrtimer.h
 Xinclude/wx/univ/setup.h
 Xinclude/wx/univ/slider.h
 Xinclude/wx/univ/spinbutt.h
 Xinclude/wx/univ/statbmp.h
 Xinclude/wx/univ/statbox.h
 Xinclude/wx/univ/statline.h
 Xinclude/wx/univ/stattext.h
 Xinclude/wx/univ/statusbr.h
 Xinclude/wx/univ/textctrl.h
 Xinclude/wx/univ/theme.h
 Xinclude/wx/univ/toplevel.h
 Xinclude/wx/univ/window.h
 Xinclude/wx/unix/execute.h
 Xinclude/wx/unix/fontutil.h
 Xinclude/wx/unix/gsockunx.h
 Xinclude/wx/unix/mimetype.h
 Xinclude/wx/url.h
 Xinclude/wx/utils.h
 Xinclude/wx/valgen.h
 Xinclude/wx/validate.h
 Xinclude/wx/valtext.h
 Xinclude/wx/variant.h
 Xinclude/wx/vector.h
 Xinclude/wx/version.h
 Xinclude/wx/vms_x_fix.h
 Xinclude/wx/wave.h
 Xinclude/wx/wfstream.h
 Xinclude/wx/window.h
 Xinclude/wx/wizard.h
 Xinclude/wx/wx.h
 Xinclude/wx/wx_cw.h
 Xinclude/wx/wx_cw_cm.h
 Xinclude/wx/wx_cw_d.h
 Xinclude/wx/wx_cwc.h
 Xinclude/wx/wx_cwc_d.h
 Xinclude/wx/wx_cwu_d.h
 Xinclude/wx/wxchar.h
 Xinclude/wx/wxexpr.h
 Xinclude/wx/wxhtml.h
 Xinclude/wx/wxprec.h
 Xinclude/wx/xpmdecod.h
 Xinclude/wx/xpmhand.h
 Xinclude/wx/zipstrm.h
 Xinclude/wx/zstream.h
 X@dirrm include/wx/generic
 X@dirrm include/wx/html/msw
 X@dirrm include/wx/html
 X@dirrm include/wx/msw/ctl3d
 X@dirrm include/wx/msw/gnuwin32/gl
 X@dirrm include/wx/msw/gnuwin32
 X@dirrm include/wx/msw/ole
 X@dirrm include/wx/msw
 X@dirrm include/wx/protocol
 X@dirrm include/wx/univ
 X@dirrm include/wx/unix
 X@dirrm include/wx
 END-of-mingw-wxWindows/pkg-plist
 echo x - mingw-wxWindows/pkg-descr
 sed 's/^X//' >mingw-wxWindows/pkg-descr << 'END-of-mingw-wxWindows/pkg-descr'
 XA C++ package for platform independed program development.
 X
 XThis port allows to cross-compile applications with Mingw32
 Xto produce Windows executables on FreeBSD.
 X
 X-- Michal Pasternak <doc@lublin.t1.pl>
 X
 XWWW: http://www.wxwindows.org/
 END-of-mingw-wxWindows/pkg-descr
 exit
Comment 1 Mike Heffner freebsd_committer freebsd_triage 2002-01-07 21:21:51 UTC
State Changed
From-To: open->closed

Duplicate of ports/33488.