Import wxgtk.
wxWindows is a C++ cross-platform GUI toolkit which was started as a one man project by Julian Smart. More information about wxWindows can be found at his Julian Smart's homepage. Today, wxWindows is being developed by a core team of handful of people from many countries and gets input in the form of user request and bug reports from its many users worldwide. WWW: http://wesley.informatik.uni-freiburg.de/~wxxt/
This commit is contained in:
parent
14a634860a
commit
b63418ab30
26
x11/wxgtk/Makefile
Normal file
26
x11/wxgtk/Makefile
Normal file
@ -0,0 +1,26 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2002/11/16 04:34:48 todd Exp $
|
||||
|
||||
COMMENT= "C++ cross-platform GUI toolkit"
|
||||
|
||||
DISTNAME= wxGTK-2.2.9
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=wxwindows/}
|
||||
EXTRACT_SUFX= .tar.gz
|
||||
|
||||
PATCHFILES= ${DISTNAME}-patch1.patch.gz
|
||||
|
||||
HOMEPAGE= http://wesley.informatik.uni-freiburg.de/~wxxt/
|
||||
|
||||
MAINTAINER= Todd T. Fries <todd@openbsd.org>
|
||||
|
||||
CONFIGURE_STYLE=gnu dest
|
||||
CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
USE_GMAKE= Yes
|
||||
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
.include <bsd.port.mk>
|
6
x11/wxgtk/distinfo
Normal file
6
x11/wxgtk/distinfo
Normal file
@ -0,0 +1,6 @@
|
||||
MD5 (wxGTK-2.2.9-patch1.patch.gz) = 337391d68bd1ba0909159700cdc0cc20
|
||||
MD5 (wxGTK-2.2.9.tar.gz) = 69b4757d22594b471c0c34bf6c3062c6
|
||||
RMD160 (wxGTK-2.2.9-patch1.patch.gz) = 15e8d65de4d9fdf5b0f71eef8b5871e09c460ca1
|
||||
RMD160 (wxGTK-2.2.9.tar.gz) = 5da9c5fda64f118a75791ebcdcc7ccac0b4c2f42
|
||||
SHA1 (wxGTK-2.2.9-patch1.patch.gz) = e190a75f6f6593e20f06e04931a0a9bc01c553d2
|
||||
SHA1 (wxGTK-2.2.9.tar.gz) = 2d2895956fd8be4bdc86ece87deaf745a706fcba
|
22
x11/wxgtk/patches/patch-src_common_dynlib_cpp
Normal file
22
x11/wxgtk/patches/patch-src_common_dynlib_cpp
Normal file
@ -0,0 +1,22 @@
|
||||
$OpenBSD: patch-src_common_dynlib_cpp,v 1.1.1.1 2002/11/16 04:34:48 todd Exp $
|
||||
--- src/common/dynlib.cpp.orig Tue Oct 29 17:01:59 2002
|
||||
+++ src/common/dynlib.cpp Tue Oct 29 17:04:06 2002
|
||||
@@ -54,7 +54,7 @@
|
||||
// behaviour (Win won't let you load a library with missing symbols) and
|
||||
// RTLD_GLOBAL because it is needed sometimes and probably doesn't hurt
|
||||
// otherwise
|
||||
-# if defined( __osf__ )
|
||||
+# if defined( __osf__ ) || defined(__OpenBSD__)
|
||||
# define wxDllOpen(lib) dlopen(lib.fn_str(), RTLD_LAZY )
|
||||
# else
|
||||
# define wxDllOpen(lib) dlopen(lib.fn_str(), RTLD_LAZY | RTLD_GLOBAL)
|
||||
@@ -202,6 +202,9 @@ wxDllLoader::GetProgramHandle(void)
|
||||
{
|
||||
#if defined( HAVE_DLOPEN ) && !defined(__EMX__)
|
||||
// optain handle for main program
|
||||
+#ifndef RTLD_NOW
|
||||
+#define RTLD_NOW RTLD_LAZY
|
||||
+#endif
|
||||
return dlopen(NULL, RTLD_NOW/*RTLD_LAZY*/);
|
||||
#elif defined (HAVE_SHL_LOAD)
|
||||
// shl_findsymbol with NULL handle looks up in main program
|
7
x11/wxgtk/pkg/DESCR
Normal file
7
x11/wxgtk/pkg/DESCR
Normal file
@ -0,0 +1,7 @@
|
||||
wxWindows is a C++ cross-platform GUI toolkit which was started as a one man
|
||||
project by Julian Smart. More information about wxWindows can be found at his
|
||||
Julian Smart's homepage. Today, wxWindows is being developed by a core team
|
||||
of handful of people from many countries and gets input in the form of user
|
||||
request and bug reports from its many users worldwide.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
377
x11/wxgtk/pkg/PLIST
Normal file
377
x11/wxgtk/pkg/PLIST
Normal file
@ -0,0 +1,377 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2002/11/16 04:34:48 todd Exp $
|
||||
bin/wx-config
|
||||
bin/wxgtk-2.2-config
|
||||
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/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/geometry.h
|
||||
include/wx/gifdecod.h
|
||||
include/wx/glcanvas.h
|
||||
include/wx/grid.h
|
||||
include/wx/gsocket.h
|
||||
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/stattext.h
|
||||
include/wx/gtk/tbargtk.h
|
||||
include/wx/gtk/textctrl.h
|
||||
include/wx/gtk/timer.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/hash.h
|
||||
include/wx/help.h
|
||||
include/wx/helpbase.h
|
||||
include/wx/helphtml.h
|
||||
include/wx/helpwin.h
|
||||
include/wx/helpxlp.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/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/protocol/file.h
|
||||
include/wx/protocol/ftp.h
|
||||
include/wx/protocol/http.h
|
||||
include/wx/protocol/protocol.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/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/unix/execute.h
|
||||
include/wx/unix/fontutil.h
|
||||
include/wx/unix/gsockunx.h
|
||||
include/wx/unix/mimetype.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-2.2.so
|
||||
lib/libwx_gtk-2.2.so.6
|
||||
lib/libwx_gtk-2.2.so.6.2.6
|
||||
lib/wx/include/gtk-2.2/wx/setup.h
|
||||
share/locale/cs/LC_MESSAGES/wxstd.mo
|
||||
share/locale/da/LC_MESSAGES/wxstd.mo
|
||||
share/locale/de/LC_MESSAGES/wxstd.mo
|
||||
share/locale/es/LC_MESSAGES/wxstd.mo
|
||||
share/locale/fi/LC_MESSAGES/wxstd.mo
|
||||
share/locale/fr/LC_MESSAGES/wxstd.mo
|
||||
share/locale/it/LC_MESSAGES/wxstd.mo
|
||||
share/locale/nl/LC_MESSAGES/wxstd.mo
|
||||
share/locale/ru/LC_MESSAGES/wxstd.mo
|
||||
share/locale/sl/LC_MESSAGES/wxstd.mo
|
||||
share/locale/sv/LC_MESSAGES/wxstd.mo
|
||||
share/locale/zh/LC_MESSAGES/wxstd.mo
|
||||
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/afm/Zapf.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
|
||||
share/wx/gs_afm/Zapf.afm
|
||||
@dirrm share/wx/gs_afm
|
||||
@dirrm share/wx/afm
|
||||
@dirrm share/wx
|
||||
@dirrm lib/wx/include/gtk-2.2/wx
|
||||
@dirrm lib/wx/include/gtk-2.2
|
||||
@dirrm lib/wx/include
|
||||
@dirrm lib/wx
|
||||
@dirrm include/wx/unix
|
||||
@dirrm include/wx/protocol
|
||||
@dirrm include/wx/html
|
||||
@dirrm include/wx/gtk
|
||||
@dirrm include/wx/generic
|
||||
@dirrm include/wx
|
Loading…
Reference in New Issue
Block a user