pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/wxGTK24 Import old 2.4 branch of wxGTK as wxGTK24,...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/56786de00dd3
branches:  trunk
changeset: 497904:56786de00dd3
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Aug 07 11:27:28 2005 +0000

description:
Import old 2.4 branch of wxGTK as wxGTK24, for packages that still need it.

diffstat:

 x11/wxGTK24/DESCR            |   25 ++
 x11/wxGTK24/Makefile         |   15 +
 x11/wxGTK24/Makefile.common  |   49 +++++
 x11/wxGTK24/PLIST            |  416 +++++++++++++++++++++++++++++++++++++++++++
 x11/wxGTK24/buildlink3.mk    |   27 ++
 x11/wxGTK24/distinfo         |   13 +
 x11/wxGTK24/patches/patch-aa |   36 +++
 x11/wxGTK24/patches/patch-ab |  372 ++++++++++++++++++++++++++++++++++++++
 x11/wxGTK24/patches/patch-ac |   79 ++++++++
 x11/wxGTK24/patches/patch-ad |   13 +
 x11/wxGTK24/patches/patch-ae |   17 +
 x11/wxGTK24/patches/patch-af |   17 +
 x11/wxGTK24/patches/patch-ag |   22 ++
 x11/wxGTK24/patches/patch-ah |    9 +
 14 files changed, 1110 insertions(+), 0 deletions(-)

diffs (truncated from 1166 to 300 lines):

diff -r 00aec83a1389 -r 56786de00dd3 x11/wxGTK24/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/wxGTK24/DESCR Sun Aug 07 11:27:28 2005 +0000
@@ -0,0 +1,25 @@
+A GTK+-based implementation of the wxWidgets cross-platform GUI library.
+This package contains the older 2.4 release.
+
+wxWidgets 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). As well as providing a common API (Application Programming Interface)
+for GUI functionality, it provides functionality for accessing some
+commonly-used operating system facilities, from copying and deleting files
+to socket and thread support. wxWidgets is a 'framework' in the sense that
+it provides a lot of built-in functionality, which the application can use
+or replace as required, thus saving a great deal of coding effort. Basic data
+structures such as strings, arrays, linked lists and hash tables are also
+supported.
+
+Such a toolkit is not unique - there are others to choose from - but wxWidgets
+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-wxWidgets
+package).
diff -r 00aec83a1389 -r 56786de00dd3 x11/wxGTK24/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/wxGTK24/Makefile      Sun Aug 07 11:27:28 2005 +0000
@@ -0,0 +1,15 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/08/07 11:27:28 wiz Exp $
+#
+
+.include "Makefile.common"
+
+PKGREVISION=           6
+COMMENT=               GTK-based implementation of the wxWidgets GUI library
+CONFLICTS+=            wxGTK<=2.4.2nb5
+
+post-install:
+       ${INSTALL_DATA_DIR} ${DOCDIR}
+       ${INSTALL_DATA} ${WRKSRC}/LICENCE.txt ${DOCDIR}/LICENSE
+
+.include "../../graphics/glu/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 00aec83a1389 -r 56786de00dd3 x11/wxGTK24/Makefile.common
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/wxGTK24/Makefile.common       Sun Aug 07 11:27:28 2005 +0000
@@ -0,0 +1,49 @@
+# $NetBSD: Makefile.common,v 1.1.1.1 2005/08/07 11:27:28 wiz Exp $
+#
+
+DISTNAME=              wxGTK-2.4.2
+PKGNAME=               ${DISTNAME:S/wxGTK/wxGTK24/}
+CATEGORIES=            x11
+MASTER_SITES=          ${MASTER_SITE_SOURCEFORGE:=wxwindows/}
+EXTRACT_SUFX=          .tar.bz2
+
+MAINTAINER=            tsarna%NetBSD.org@localhost
+HOMEPAGE=              http://www.wxwidgets.org/
+
+PATCHDIR=              ${.CURDIR}/../../x11/wxGTK24/patches
+DISTINFO_FILE=         ${.CURDIR}/../../x11/wxGTK24/distinfo
+
+USE_PKGLOCALEDIR=      YES
+USE_LIBTOOL=           YES
+USE_LANGUAGES=         c c++
+GNU_CONFIGURE=         YES
+CONFIGURE_ARGS+=       --with-opengl
+CONFIGURE_ARGS+=       --with-libjpeg=sys
+CONFIGURE_ARGS+=       --with-zlib=sys
+CONFIGURE_ARGS+=       --with-libpng=sys
+CONFIGURE_ARGS+=       --with-libtiff=sys
+CONFIGURE_ENV+=                BUILDLINK_DIR=${BUILDLINK_DIR}
+
+CPPFLAGS+=             -Dunix=1        # src/common/unzip.c needs this
+
+DOCDIR=                        ${PREFIX}/share/doc/wx/gtk
+
+.include "../../mk/bsd.prefs.mk"
+
+# This is needed for gtk on some platforms and
+# it doesn't hurt on those which don't need it
+CONFIGURE_ARGS+=       --with-gtk
+
+CONFIGURE_ARGS+=       --enable-gtk2
+PLIST_SUBST+=          GTKVER=2
+
+.include "../../devel/pkg-config/buildlink3.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../graphics/MesaLib/buildlink3.mk"
+.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../graphics/png/buildlink3.mk"
+.include "../../graphics/tiff/buildlink3.mk"
+.include "../../x11/gtk2/buildlink3.mk"
+
+.include "../../mk/pthread.buildlink3.mk"
+.include "../../mk/x11.buildlink3.mk"
diff -r 00aec83a1389 -r 56786de00dd3 x11/wxGTK24/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/wxGTK24/PLIST Sun Aug 07 11:27:28 2005 +0000
@@ -0,0 +1,416 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/08/07 11:27:29 wiz Exp $
+bin/wx24-config
+bin/wxgtk${GTKVER}-2.4-config
+include/wx/accel.h
+include/wx/app.h
+include/wx/arrimpl.cpp
+include/wx/artprov.h
+include/wx/bitmap.h
+include/wx/bmpbuttn.h
+include/wx/brush.h
+include/wx/buffer.h
+include/wx/build.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/chkconf.h
+include/wx/choicdlg.h
+include/wx/choice.h
+include/wx/clipbrd.h
+include/wx/clntdata.h
+include/wx/cmdline.h
+include/wx/cmdproc.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/containr.h
+include/wx/control.h
+include/wx/cshelp.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/dbgrid.h
+include/wx/dbkeyg.h
+include/wx/dbtable.h
+include/wx/dc.h
+include/wx/dcbuffer.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/dirctrl.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/dynload.h
+include/wx/effects.h
+include/wx/encconv.h
+include/wx/event.h
+include/wx/expr.h
+include/wx/fdrepdlg.h
+include/wx/features.h
+include/wx/ffile.h
+include/wx/file.h
+include/wx/fileconf.h
+include/wx/filedlg.h
+include/wx/filefn.h
+include/wx/filename.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/accel.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/dirctrlg.h
+include/wx/generic/dirdlgg.h
+include/wx/generic/dragimgg.h
+include/wx/generic/fdrepdlg.h
+include/wx/generic/filedlgg.h
+include/wx/generic/fontdlgg.h
+include/wx/generic/grid.h
+include/wx/generic/gridctrl.h
+include/wx/generic/gridg.h
+include/wx/generic/helpext.h
+include/wx/generic/helphtml.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/paletteg.h
+include/wx/generic/panelg.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/spinctlg.h
+include/wx/generic/splash.h
+include/wx/generic/splitter.h
+include/wx/generic/statusbr.h
+include/wx/generic/tabg.h
+include/wx/generic/textdlgg.h
+include/wx/generic/timer.h
+include/wx/generic/treectlg.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/pen.h
+include/wx/gtk/popupwin.h
+include/wx/gtk/radiobox.h
+include/wx/gtk/radiobut.h
+include/wx/gtk/region.h
+include/wx/gtk/scrolbar.h
+include/wx/gtk/scrolwin.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/tglbtn.h
+include/wx/gtk/timer.h
+include/wx/gtk/tooltip.h
+include/wx/gtk/toplevel.h
+include/wx/gtk/treectrl.h



Home | Main Index | Thread Index | Old Index