Date: Sat, 2 Sep 2006 19:31:44 +0200 (CEST) From: Jona Joachim <walkingshadow@grummel.net> To: FreeBSD-gnats-submit@FreeBSD.org Cc: walkingshadow@grummel.net Subject: ports/102797: new port: x11-toolkits/wxd wxWidgets bindings for the D programming language Message-ID: <20060902173145.1359D7E18@nirvana.lan.net> Resent-Message-ID: <200609021740.k82HeIZZ066364@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 102797 >Category: ports >Synopsis: new port: x11-toolkits/wxd wxWidgets bindings for the D programming language >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 02 17:40:17 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Jona Joachim >Release: FreeBSD 6.1-STABLE i386 >Organization: none >Environment: System: FreeBSD nirvana.lan.net 6.1-STABLE FreeBSD 6.1-STABLE #0: Fri Jul 21 18:52:28 CEST 2006 default@nirvana.lan.net:/usr/obj/usr/src/sys/HYPOCENTER i386 >Description: wxD is a wxWidgets binding for the D programming language. Cheers, Jona >How-To-Repeat: >Fix: --- wxd.shar begins here --- # 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: # # wxd # wxd/Makefile # wxd/pkg-descr # wxd/distinfo # wxd/files # wxd/files/patch-Makefile # wxd/files/patch-wx-Makefile # wxd/files/patch-wxc-Makefile # wxd/pkg-plist # echo c - wxd mkdir -p wxd > /dev/null 2>&1 echo x - wxd/Makefile sed 's/^X//' >wxd/Makefile << 'END-of-wxd/Makefile' X# New ports collection makefile for: wxd X# Date created: 29 August 2006 X# Whom: Jona Joachim <walkingshadow@grummel.net> X# X# $FreeBSD$ X# X XPORTNAME= wxd XPORTVERSION= 0.07 XCATEGORIES= x11-toolkits devel XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} XEXTRACT_SUFX= .tgz X XMAINTAINER= walkingshadow@grummel.net XCOMMENT= wxWidgets bindings for the D programming language X XBUILD_DEPENDS= gdc:${PORTSDIR}/lang/gdc X XUSE_GMAKE= yes XUSE_LDCONFIG= yes XUSE_WX= 2.6 XWX_UNICODE= yes XWRKSRC= ${WRKDIR}/${PORTNAME} X Xpre-patch: X @${RM} ${WRKSRC}/Makefile X @${MV} ${WRKSRC}/GNUmakefile ${WRKSRC}/Makefile X @${RM} ${WRKSRC}/wxc/Makefile X @${MV} ${WRKSRC}/wxc/GNUmakefile ${WRKSRC}/wxc/Makefile X @${RM} ${WRKSRC}/wx/Makefile X @${MV} ${WRKSRC}/wx/GNUmakefile ${WRKSRC}/wx/Makefile X Xpost-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${EXAMPLESDIR} X @${CP} -R ${WRKSRC}/Samples/* ${EXAMPLESDIR} X.endif X X.include <bsd.port.pre.mk> X X.if ${OSVERSION} < 500000 XIGNORE= needs FreeBSD 5.x or later X.endif X X.include <bsd.port.post.mk> END-of-wxd/Makefile echo x - wxd/pkg-descr sed 's/^X//' >wxd/pkg-descr << 'END-of-wxd/pkg-descr' XwxWidgets is a C++ cross-platform GUI toolkit, which supports XWindows, Macintosh, and Unix-like OSs - such as Linux,FreeBSD with XX11/Motif/GTK - and more. Link with the appropriate library for Xyour platform and compiler, and your application will adopt the Xlook and feel appropriate to that platform. X XD is a general purpose systems and applications programming Xlanguage. It is a higher level language than C++, but retains the Xability to write high performance code and interface directly Xwith the operating system API's and with hardware. D is not a Xscripting language, nor an interpreted language. X XwxD is wxWidgets bindings for the D programming language. X XWWW: http://wxd.sourceforge.net/ END-of-wxd/pkg-descr echo x - wxd/distinfo sed 's/^X//' >wxd/distinfo << 'END-of-wxd/distinfo' XMD5 (wxd-0.07.tgz) = 13408508a459c89a2e4c104935b7e6a3 XSHA256 (wxd-0.07.tgz) = 68e813775f2bf3d057650e097659107fb2e1d8ecf9dc9879a9bcda2f267c7d49 XSIZE (wxd-0.07.tgz) = 1025177 END-of-wxd/distinfo echo c - wxd/files mkdir -p wxd/files > /dev/null 2>&1 echo x - wxd/files/patch-Makefile sed 's/^X//' >wxd/files/patch-Makefile << 'END-of-wxd/files/patch-Makefile' X--- /home/default/ports/wxd/work/wxd/GNUmakefile Sat Aug 26 23:30:32 2006 X+++ Makefile Thu Aug 31 19:14:34 2006 X@@ -1,26 +1,21 @@ X-MAKE=make X- X+#Makefile X+#call: gmake MAKE=gmake WX_CONFIG=wxgtk2-2.6-config (wxgtk2u-2.6-config) X OS=$(shell uname) X-ARCH=$(shell (arch 2>/dev/null || echo i386) | sed -e s/i.86/x86/ ) X+ARCH=$(shell (uname -m) | sed -e s/i.86/x86/ ) X X-ifeq ("$(OS) $(ARCH)","Linux x86") X-COMPILER=DMD X-DMD=dmd X-else X COMPILER=GDC X-DMD=gdmd X-endif X+DMD=gdc X X PLATFORM=$(shell cat wxc/platform 2>/dev/null ) X export PLATFORM X X CXX_WXD = $(CXX) -D__$(COMPILER)__ X-DMD_WXD = $(DMD) -version=__$(PLATFORM)__ X+DMD_WXD = $(DMD) -fversion=__$(PLATFORM)__ X X all: wxc/platform X $(MAKE) CXX="$(CXX_WXD)" -C wxc X $(MAKE) DMD="$(DMD_WXD)" -C wx X- $(MAKE) DMD="$(DMD_WXD)" -C Samples X+# $(MAKE) DMD="$(DMD_WXD)" -C Samples X X install: X $(MAKE) CXX="$(CXX_WXD)" install -C wxc END-of-wxd/files/patch-Makefile echo x - wxd/files/patch-wx-Makefile sed 's/^X//' >wxd/files/patch-wx-Makefile << 'END-of-wxd/files/patch-wx-Makefile' X--- /home/default/ports/wxd/work/wxd/wx/GNUmakefile Sat Aug 26 23:26:21 2006 X+++ wx/Makefile Thu Aug 31 19:36:21 2006 X@@ -1,3 +1,4 @@ X+#wx/Makefile X LIBTARGET = ../libwxd.a X X OBJECTS = \ X@@ -167,10 +168,10 @@ X X all: $(LIBTARGET) X X-DMD = dmd X-DFLAGS = -O -w -g X+DMD = gdc X+DFLAGS += -O2 X X-prefix=/usr/local X+prefix=$(PREFIX) X exec_prefix=$(prefix) X includedir=$(prefix)/include X libdir=$(exec_prefix)/lib X@@ -179,11 +180,11 @@ X RANLIB = ranlib X X install: $(LIBTARGET) X- $(INSTALL) -d $(DESTDIR)$(libdir) X- $(INSTALL) -p $(LIBTARGET) $(DESTDIR)$(libdir) X- $(INSTALL) -d $(DESTDIR)$(includedir)/d/wx X- $(INSTALL) -p *.d $(DESTDIR)$(libdir)/d/wx X- -$(RANLIB) $(DESTDIR)$(libdir)/`basename $(LIBTARGET)` X+ $(INSTALL) -d $(libdir) X+ $(INSTALL) -p $(LIBTARGET) $(libdir) X+ $(INSTALL) -d $(includedir)/d/wx X+ $(INSTALL) -p *.d $(includedir)/d/wx/ X+ -$(RANLIB) $(libdir)/`basename $(LIBTARGET)` X X ddoc: X $(DMD) -c -o- -D $(DFLAGS) -I.. $(SOURCES) END-of-wxd/files/patch-wx-Makefile echo x - wxd/files/patch-wxc-Makefile sed 's/^X//' >wxd/files/patch-wxc-Makefile << 'END-of-wxd/files/patch-wxc-Makefile' X--- /home/default/ports/wxd/work/wxd/wxc/GNUmakefile Sat Aug 26 23:25:11 2006 X+++ wxc/Makefile Thu Aug 31 19:09:15 2006 X@@ -1,3 +1,4 @@ X+#wxc/Makefile X LIBTARGET=../libwxc.a X X OBJECTS = \ X@@ -158,12 +159,10 @@ X X all: platform $(LIBTARGET) X X-WX_CONFIG = wx-config X- X CXX = $(shell $(WX_CONFIG) --cxx) X-CXXFLAGS = -O2 -Wall X+CXXFLAGS += -O2 -Wall -I/usr/X11R6/include X X-prefix=/usr/local X+prefix=$(PREFIX) X exec_prefix=$(prefix) X includedir=$(prefix)/include X libdir=$(exec_prefix)/lib X@@ -172,9 +171,9 @@ X RANLIB = ranlib X X install: $(LIBTARGET) X- $(INSTALL) -d $(DESTDIR)$(libdir) X- $(INSTALL) -p $(LIBTARGET) $(DESTDIR)$(libdir) X- -$(RANLIB) $(DESTDIR)$(libdir)/`basename $(LIBTARGET)` X+ $(INSTALL) -d $(libdir) X+ $(INSTALL) -p $(LIBTARGET) $(libdir) X+ -$(RANLIB) $(libdir)/`basename $(LIBTARGET)` X X platform: X $(WX_CONFIG) --cflags | sed -e 's/.*\-D__\(WX.*\)__.*/\1/' > $@ END-of-wxd/files/patch-wxc-Makefile echo x - wxd/pkg-plist sed 's/^X//' >wxd/pkg-plist << 'END-of-wxd/pkg-plist' Xinclude/d/wx/Accelerator.d Xinclude/d/wx/ActivateEvent.d Xinclude/d/wx/App.d Xinclude/d/wx/ArrayInt.d Xinclude/d/wx/ArrayString.d Xinclude/d/wx/ArtProvider.d Xinclude/d/wx/Bitmap.d Xinclude/d/wx/BitmapButton.d Xinclude/d/wx/BoxSizer.d Xinclude/d/wx/Brush.d Xinclude/d/wx/Button.d Xinclude/d/wx/CalendarCtrl.d Xinclude/d/wx/Caret.d Xinclude/d/wx/CheckBox.d Xinclude/d/wx/ChildFocusEvent.d Xinclude/d/wx/Choice.d Xinclude/d/wx/ChoiceDialog.d Xinclude/d/wx/ClientData.d Xinclude/d/wx/Clipboard.d Xinclude/d/wx/CloseEvent.d Xinclude/d/wx/Colour.d Xinclude/d/wx/ColourDialog.d Xinclude/d/wx/ComboBox.d Xinclude/d/wx/CommandEvent.d Xinclude/d/wx/Config.d Xinclude/d/wx/ContextMenuEvent.d Xinclude/d/wx/Control.d Xinclude/d/wx/Cursor.d Xinclude/d/wx/DC.d Xinclude/d/wx/DND.d Xinclude/d/wx/DataFormat.d Xinclude/d/wx/DataObject.d Xinclude/d/wx/DbGrid.d Xinclude/d/wx/Defs.d Xinclude/d/wx/Dialog.d Xinclude/d/wx/DirDialog.d Xinclude/d/wx/Display.d Xinclude/d/wx/DisplayChangedEvent.d Xinclude/d/wx/DocManager.d Xinclude/d/wx/DocTemplate.d Xinclude/d/wx/Document.d Xinclude/d/wx/EraseEvent.d Xinclude/d/wx/Event.d Xinclude/d/wx/EvtHandler.d Xinclude/d/wx/FileDialog.d Xinclude/d/wx/FindReplaceDialog.d Xinclude/d/wx/FlexGridSizer.d Xinclude/d/wx/FocusEvent.d Xinclude/d/wx/Font.d Xinclude/d/wx/FontDialog.d Xinclude/d/wx/FontMisc.d Xinclude/d/wx/Frame.d Xinclude/d/wx/GDIObject.d Xinclude/d/wx/GLCanvas.d Xinclude/d/wx/Gauge.d Xinclude/d/wx/GdiCommon.d Xinclude/d/wx/Grid.d Xinclude/d/wx/GridBagSizer.d Xinclude/d/wx/GridCtrl.d Xinclude/d/wx/GridSizer.d Xinclude/d/wx/HTML.d Xinclude/d/wx/HelpEvent.d Xinclude/d/wx/HtmlHelpController.d Xinclude/d/wx/HtmlListBox.d Xinclude/d/wx/IControlWithItems.d Xinclude/d/wx/Icon.d Xinclude/d/wx/IconizeEvent.d Xinclude/d/wx/IdleEvent.d Xinclude/d/wx/Image.d Xinclude/d/wx/ImageHandlers.d Xinclude/d/wx/ImageList.d Xinclude/d/wx/InitDialogEvent.d Xinclude/d/wx/KeyEvent.d Xinclude/d/wx/LayoutWin.d Xinclude/d/wx/ListBox.d Xinclude/d/wx/ListCtrl.d Xinclude/d/wx/Listbook.d Xinclude/d/wx/Locale.d Xinclude/d/wx/Log.d Xinclude/d/wx/MDI.d Xinclude/d/wx/MaximizeEvent.d Xinclude/d/wx/MemoryDC.d Xinclude/d/wx/Menu.d Xinclude/d/wx/MenuBar.d Xinclude/d/wx/MenuItem.d Xinclude/d/wx/MessageDialog.d Xinclude/d/wx/MiniFrame.d Xinclude/d/wx/MouseCaptureChangedEvent.d Xinclude/d/wx/MouseEvent.d Xinclude/d/wx/MoveEvent.d Xinclude/d/wx/NavigationKeyEvent.d Xinclude/d/wx/NcPaintEvent.d Xinclude/d/wx/Notebook.d Xinclude/d/wx/NotebookSizer.d Xinclude/d/wx/NotifyEvent.d Xinclude/d/wx/NumberDialog.d Xinclude/d/wx/PaintEvent.d Xinclude/d/wx/Palette.d Xinclude/d/wx/PaletteChangedEvent.d Xinclude/d/wx/Panel.d Xinclude/d/wx/Pen.d Xinclude/d/wx/PrintData.d Xinclude/d/wx/PrintDialog.d Xinclude/d/wx/PrintPreview.d Xinclude/d/wx/Printer.d Xinclude/d/wx/ProgressDialog.d Xinclude/d/wx/QueryNewPaletteEvent.d Xinclude/d/wx/RadioBox.d Xinclude/d/wx/RadioButton.d Xinclude/d/wx/Region.d Xinclude/d/wx/SashWindow.d Xinclude/d/wx/ScrollBar.d Xinclude/d/wx/ScrolledWindow.d Xinclude/d/wx/SetCursorEvent.d Xinclude/d/wx/ShowEvent.d Xinclude/d/wx/SizeEvent.d Xinclude/d/wx/Sizer.d Xinclude/d/wx/SizerItem.d Xinclude/d/wx/Slider.d Xinclude/d/wx/Sound.d Xinclude/d/wx/SpinButton.d Xinclude/d/wx/SpinCtrl.d Xinclude/d/wx/SplashScreen.d Xinclude/d/wx/SplitterWindow.d Xinclude/d/wx/StaticBitmap.d Xinclude/d/wx/StaticBox.d Xinclude/d/wx/StaticBoxSizer.d Xinclude/d/wx/StaticLine.d Xinclude/d/wx/StaticText.d Xinclude/d/wx/StatusBar.d Xinclude/d/wx/StyledTextCtrl.d Xinclude/d/wx/SysColourChangedEvent.d Xinclude/d/wx/SystemSettings.d Xinclude/d/wx/TabCtrl.d Xinclude/d/wx/TextCtrl.d Xinclude/d/wx/TextDialog.d Xinclude/d/wx/TipDialog.d Xinclude/d/wx/TipWindow.d Xinclude/d/wx/ToggleButton.d Xinclude/d/wx/ToolBar.d Xinclude/d/wx/ToolTip.d Xinclude/d/wx/TreeCtrl.d Xinclude/d/wx/UpdateUIEvent.d Xinclude/d/wx/Utils.d Xinclude/d/wx/VLBox.d Xinclude/d/wx/VScroll.d Xinclude/d/wx/Validator.d Xinclude/d/wx/VideoMode.d Xinclude/d/wx/View.d Xinclude/d/wx/Window.d Xinclude/d/wx/WindowCreateEvent.d Xinclude/d/wx/WindowDestroyEvent.d Xinclude/d/wx/Wizard.d Xinclude/d/wx/WizardPage.d Xinclude/d/wx/WizardPageSimple.d Xinclude/d/wx/XmlResource.d Xinclude/d/wx/common.d Xinclude/d/wx/wx.d Xinclude/d/wx/wxDateTime.d Xinclude/d/wx/wxObject.d Xinclude/d/wx/wxPlatform.d Xinclude/d/wx/wxString.d Xinclude/d/wx/wxVersion.d Xlib/libwxc.a Xlib/libwxd.a X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Controls.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Icons/choice.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Icons/combo.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Icons/gauge.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Icons/list.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Icons/radio.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Icons/stattext.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Icons/text.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Controls/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Dialogs/Dialogs.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Dialogs/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Dialogs/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Dialogs/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Dialogs/tips.txt X%%PORTDOCS%%%%EXAMPLESDIR%%/Display/CompareModesDialog.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Display/Display.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Display/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Display/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Dnd/Dnd.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Dnd/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Dnd/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Dnd/dnd_copy.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Dnd/dnd_move.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Dnd/dnd_none.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Dnd/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/EventDemo/EventDemo.d X%%PORTDOCS%%%%EXAMPLESDIR%%/EventDemo/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/EventDemo/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Font/Font.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Font/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Font/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Font/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/GLCube/GLCube.d X%%PORTDOCS%%%%EXAMPLESDIR%%/GLCube/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/GLCube/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/GLCube/glu32.lib X%%PORTDOCS%%%%EXAMPLESDIR%%/GLCube/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/GLCube/opengl32.lib X%%PORTDOCS%%%%EXAMPLESDIR%%/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Grid/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Grid/Grid.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Grid/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Grid/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/8859_2.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/about.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/cp1250.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/f.html X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/fft.html X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/i18n.gif X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/imagemap.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/imagemap.png X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/logo.png X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/pic.png X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/pic2.bmp X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/regres.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/tables.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data/test.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/HTML.d X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/HTML/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Hello/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Hello/Hello.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Hello/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/HtmlHelp.d X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/Index.hhk X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/another.hhc X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/another.hhp X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/another.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/book1.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/book2.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/contents.hhc X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/main.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/page2-b.htm X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles/testing.hhp X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlListBox/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlListBox/HtmlListBox.d X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlListBox/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/HtmlListBox/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Info.plist.in X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/Internat.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/de/internat.mo X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/de/internat.po X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/fr/internat.mo X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/fr/internat.po X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/ja X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/ru/internat.mo X%%PORTDOCS%%%%EXAMPLESDIR%%/Internat/ru/internat.po X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/controlssmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/dialogssmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/displaysmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/dndsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/eventdemosmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/fontsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/freecellsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/gridsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/htmlhelpsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/htmllistboxsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/htmlsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/imgviewsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/internatsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/listbooksmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/listctrlsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/logo2.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/mdismall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/minimalsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/notebooksmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/printsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/sashwindowsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/splittersmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/treectrlsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/wizardsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/wxd.gif X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps/xrcsmall.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Launcher.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/launcherbottom.html X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/launchertop.html X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/wxDSamplesLauncher.html X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/ListCtrl.d X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/small1.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/toolbrai.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/toolchar.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/toolchec.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/tooldata.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/toolgame.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/toolnote.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/tooltime.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/tooltodo.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps/toolword.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/ListView/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/ListView/ListView.d X%%PORTDOCS%%%%EXAMPLESDIR%%/ListView/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/ListView/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/Listbook.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom01.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom02.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom03.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom04.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom05.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom06.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom07.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom08.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom09.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom10.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom11.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom12.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom13.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom14.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp/toblom15.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/Mdi.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/copy.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/cut.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/help.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/new.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/open.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/paste.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/preview.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/print.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps/save.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Minimal/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Minimal/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Minimal/Minimal.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Minimal/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Notebook/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Notebook/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Notebook/Notebook.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Platform/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Platform/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Platform/Platform.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Printing/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Printing/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Printing/Printing.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Printing/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/SashWindow/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/SashWindow/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/SashWindow/SashWindow.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Sound/9000g.wav X%%PORTDOCS%%%%EXAMPLESDIR%%/Sound/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Sound/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Sound/Sound.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Sound/cuckoo.wav X%%PORTDOCS%%%%EXAMPLESDIR%%/Sound/doggrowl.wav X%%PORTDOCS%%%%EXAMPLESDIR%%/Sound/tinkalink2.wav X%%PORTDOCS%%%%EXAMPLESDIR%%/Splitter/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Splitter/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Splitter/Splitter.d X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/TreeCtrl.d X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/icon0.png X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/icon1.png X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/icon2.png X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/icon3.png X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/icon4.png X%%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl/mondrian.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/Doc/tutorial.html X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/Doc/tutorial.jpg X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/Doc/wxnet.css X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/ImageList.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/ImageView.bmp X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/ImageView.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/ImageViewer.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/Thumbnail.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Wizard/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Wizard/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Wizard/Wizard.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Wizard/wiztest.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Wizard/wiztest2.png X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/GNUmakefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/Makefile X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/Xrcdemo.d X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/appicon.ico X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/appicon.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/artprov.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/artprov.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/basicdlg.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/basicdlg.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/controls.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/controls.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/custclas.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/custclas.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/derivdlg.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/derivdlg.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/fileopen.gif X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/filesave.gif X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/frame.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/fuzzy.gif X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/menu.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/platform.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/platform.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/quotes.gif X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/resource.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/scanning.gif X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/sppicon.ico X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/toolbar.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/uncenter.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/uncenter.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/update.gif X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/variable.xpm X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/variable.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/wxglade.wxg X%%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc/wxglade.xrc X%%PORTDOCS%%%%EXAMPLESDIR%%/wxmac.icns X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Xrc/rc X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Xrc X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Wizard X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial/Doc X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Tutorial X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/TreeCtrl X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Splitter X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Sound X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/SashWindow X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Printing X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Platform X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Notebook X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Minimal X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Mdi/bitmaps X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Mdi X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Listbook/bmp X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Listbook X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/ListView X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl/bitmaps X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/ListCtrl X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Launcher/Bitmaps X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Launcher X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Internat/ru X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Internat/fr X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Internat/de X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Internat X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/HtmlListBox X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp/helpfiles X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/HtmlHelp X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Hello X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/HTML/Data X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/HTML X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Grid X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/GLCube X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Font X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/EventDemo X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Dnd X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Display X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Dialogs X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Controls/Icons X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/Controls X@dirrm %%PORTDOCS%%%%EXAMPLESDIR%% X@dirrm include/d/wx X@dirrmtry include/d END-of-wxd/pkg-plist exit --- wxd.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060902173145.1359D7E18>