summaryrefslogtreecommitdiff
path: root/x11/wxGTK
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2003-09-03 18:22:51 +0000
committerxtraeme <xtraeme>2003-09-03 18:22:51 +0000
commit765f4da9dfef92ed520de0bcb4c7e5b8922f1062 (patch)
tree4c44f2c02938195318f629c0d9ad97f0ffa2df04 /x11/wxGTK
parent944c6a43a2a3f8b50f0637a6cb5f5128c7c95a00 (diff)
downloadpkgsrc-765f4da9dfef92ed520de0bcb4c7e5b8922f1062.tar.gz
Updated to 2.4.1
Changes: 2.4.1 ----- - fixed wxLANGUAGE_CHINESE_TAIWAN to use zh_TW catalogs - added missing wx/quantize.h to install - improved wxScrolledWindow/sizer interaction - fixed assert (and crash in debug) in wxFileConfigGroup::DeleteSubgroupByName - fix for deleting entries at root level in wxFileConfig - wxStopWatch::Start() didn't resume it contrary to the docs - accept '\r' as delimiter when parsing dates - fixed duplicate wxFontEncoding values - wxFileConfig now always uses UTF-8 to store settings in Unicode build; it will be possible to set different charset in wxWindows >= 2.5.0 - added wxFileName::MakeAbsolute - bugs in wxCalCtrl fixed (year not being updated)
Diffstat (limited to 'x11/wxGTK')
-rw-r--r--x11/wxGTK/Makefile8
-rw-r--r--x11/wxGTK/PLIST3
-rw-r--r--x11/wxGTK/distinfo7
-rw-r--r--x11/wxGTK/patches/patch-ae18
4 files changed, 9 insertions, 27 deletions
diff --git a/x11/wxGTK/Makefile b/x11/wxGTK/Makefile
index 5140834c504..f2d6db24e90 100644
--- a/x11/wxGTK/Makefile
+++ b/x11/wxGTK/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.23 2003/07/17 22:56:50 grant Exp $
+# $NetBSD: Makefile,v 1.24 2003/09/03 18:22:51 xtraeme Exp $
#
-DISTNAME= wxGTK-2.4.0
-PKGREVISION= 3
+DISTNAME= wxGTK-2.4.1
CATEGORIES= x11
-MASTER_SITES= ftp://biolpc22.york.ac.uk/pub/2.4.0/
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=wxwindows/}
+EXTRACT_SUFX= .tar.bz2
MAINTAINER= tsarna@NetBSD.org
HOMEPAGE= http://www.wxwindows.org
diff --git a/x11/wxGTK/PLIST b/x11/wxGTK/PLIST
index 1c303276f45..5ae8427b87d 100644
--- a/x11/wxGTK/PLIST
+++ b/x11/wxGTK/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2003/03/31 17:44:21 jmmv Exp $
+@comment $NetBSD: PLIST,v 1.3 2003/09/03 18:22:52 xtraeme Exp $
bin/wx-config
bin/wxgtk-2.4-config
include/wx/accel.h
@@ -91,6 +91,7 @@ include/wx/fs_zip.h
include/wx/gauge.h
include/wx/gdicmn.h
include/wx/gdiobj.h
+include/wx/quantize.h
include/wx/generic/accel.h
include/wx/generic/calctrl.h
include/wx/generic/caret.h
diff --git a/x11/wxGTK/distinfo b/x11/wxGTK/distinfo
index 6ec65dab379..ecbb399cc8a 100644
--- a/x11/wxGTK/distinfo
+++ b/x11/wxGTK/distinfo
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.8 2003/05/16 22:15:27 martin Exp $
+$NetBSD: distinfo,v 1.9 2003/09/03 18:22:53 xtraeme Exp $
-SHA1 (wxGTK-2.4.0.tar.gz) = fe01881af71c9f8ae9210d06cad7adf7f0b0662d
-Size (wxGTK-2.4.0.tar.gz) = 6605789 bytes
+SHA1 (wxGTK-2.4.1.tar.bz2) = 4aea0d24d755e7f1fa89d8198014790670a79437
+Size (wxGTK-2.4.1.tar.bz2) = 5348194 bytes
SHA1 (patch-aa) = 5602ed3a9c15eab638f270990b91edc844a1e6e3
SHA1 (patch-ab) = 6417fc7faaa0b8db5f2bc6d54c7e0bf48b78370a
SHA1 (patch-ac) = 3405f5d82ba84fabd555bc240fce47b166d8efc0
SHA1 (patch-ad) = 1ee314f895451dfab8bf56952ad2822b8530590f
-SHA1 (patch-ae) = 4a9fef326b515ceae599a1536d0f9a5eb2096af2
diff --git a/x11/wxGTK/patches/patch-ae b/x11/wxGTK/patches/patch-ae
deleted file mode 100644
index 311832d0fd2..00000000000
--- a/x11/wxGTK/patches/patch-ae
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2003/05/16 22:15:28 martin Exp $
-
---- src/gtk/app.cpp.orig 2003-05-17 00:06:30.000000000 +0200
-+++ src/gtk/app.cpp 2003-05-17 00:07:13.000000000 +0200
-@@ -799,10 +799,11 @@
- if (!wxOKlibc()) wxConvCurrent = (wxMBConv*) NULL;
- #endif
-
-- gdk_threads_enter();
--
- gtk_init( &argc, &argv );
-
-+ /* we can not enter threads before gtk_init is done */
-+ gdk_threads_enter();
-+
- wxSetDetectableAutoRepeat( TRUE );
-
- if (!wxApp::Initialize())