From 94223ac453497f27a81061c36f22fed4e0932b2d Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 2 Sep 2002 16:56:57 +0000 Subject: Update to 0.11.33: Excerpt of changes: 0.11.33 * Fixed stupid bug which made some dialogs not respond to being closed. * Reimplemented the SelectToggle command, making it work in linear time as opposed to quadratic as previously. Paid in memory, as usual, but one bit per dir row isn't too much, in my opinion. * Tweaked the Information window slightly, since the two columns had somehow clung too close together. Reported by Felix Rabe. * Added (partial) French translation, thanks to Philippe Rossi. * Removed version number from window title. 0.11.32 * Upgraded to newer versions of GNU gettext, Automake, and Auto- conf, for no apparent reason. * Redid directory history slightly; it used to identify dirs pri- marily by their inode numbers, which failed the filesystem re- uses inodes after e.g. a delete. Reported first by Olle Viksten. * Made ClearSize respect GetSize's selection-preservation flag. * Made the command line help texts (shown by --help) translatable. * Fixed a problem with window name setting that occured when gentoo was running in internationalized mode. * Reworked all code setting window titles; they were affected by similar locale-dependent problems. This feels like a GTK+ problem, but I think GTK+ 1.2.x isn't being developed any longer, so a work- around is probably all we get. * Added a few missing command window titles to gentoo.pot. * Improved layout in ChOwn's window, more label alignment. * Default config will no longer recognize Perl source code if it's not in a file with a ".pl" suffix. This removes use of 'file' in the type checking, which is desirable for performance. * Removed all uses of assert(), especially since all (!) of them depended on side-effects. Did anyone ever build gentoo with de- bugging disabled? That ought to have broken, horribly. Oops. * Hacked a bit on the code that restores the vertical position when a directory is re-entered. Reported by "Michael". * Slightly improved large file support. Still untested by me. * Removed a couple of non-ANSI-isms that must've snuck in when I was looking the other way. Thanks, Josip. * Added support for more modifiers to mouse button command bindings. You need to test which "Mod" is which key, though. Thanks, "Mark". * Cleaned up cmd_generic.c, which is used for many of the standard file commands' dialog boxes. Dialog now done through dialog.c, which means button keyboard accelerators are now supported. * Dialog position now configurable: either follow mouse as always, or center on screen. See Windows config page. Lost the source of the suggestion. --- sysutils/gentoo/Makefile | 4 ++-- sysutils/gentoo/PLIST | 4 +++- sysutils/gentoo/distinfo | 8 ++++---- sysutils/gentoo/patches/patch-ae | 10 +++++----- 4 files changed, 14 insertions(+), 12 deletions(-) (limited to 'sysutils') diff --git a/sysutils/gentoo/Makefile b/sysutils/gentoo/Makefile index ac5b67ffaf7..039fb6ec09b 100644 --- a/sysutils/gentoo/Makefile +++ b/sysutils/gentoo/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2002/08/25 21:50:57 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2002/09/02 16:56:57 wiz Exp $ # -DISTNAME= gentoo-0.11.31 +DISTNAME= gentoo-0.11.33 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gentoo/} diff --git a/sysutils/gentoo/PLIST b/sysutils/gentoo/PLIST index 8230c8ed7e5..5b15cc61527 100644 --- a/sysutils/gentoo/PLIST +++ b/sysutils/gentoo/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2002/08/25 21:50:58 jlam Exp $ +@comment $NetBSD: PLIST,v 1.4 2002/09/02 16:56:57 wiz Exp $ bin/gentoo etc/gentoogtkrc etc/gentoorc @@ -125,6 +125,8 @@ share/gentoo/icons/xbm2.xpm share/gentoo/icons/xcf.xpm share/gentoo/icons/xpm.xpm share/gentoo/icons/xpm2.xpm +${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/gentoo.mo +${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/gentoo.mo ${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gentoo.mo @dirrm share/gentoo/icons @dirrm share/gentoo diff --git a/sysutils/gentoo/distinfo b/sysutils/gentoo/distinfo index 5034fcdd183..5241214d65d 100644 --- a/sysutils/gentoo/distinfo +++ b/sysutils/gentoo/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2002/08/25 21:50:58 jlam Exp $ +$NetBSD: distinfo,v 1.6 2002/09/02 16:56:57 wiz Exp $ -SHA1 (gentoo-0.11.31.tar.gz) = 327b6241613e4c5ae256dffa528c6f2f46fe60b0 -Size (gentoo-0.11.31.tar.gz) = 923857 bytes -SHA1 (patch-ae) = 63d3a848f084fd1355b25102e10cbe3c94a45445 +SHA1 (gentoo-0.11.33.tar.gz) = 66d1a679e686587cac8a7a93b837e48025371600 +Size (gentoo-0.11.33.tar.gz) = 1021054 bytes +SHA1 (patch-ae) = daa7cbed8d66af155f2624a0066b2f578e9a93c6 diff --git a/sysutils/gentoo/patches/patch-ae b/sysutils/gentoo/patches/patch-ae index b63911aeb04..4a04cbd5bc9 100644 --- a/sysutils/gentoo/patches/patch-ae +++ b/sysutils/gentoo/patches/patch-ae @@ -1,13 +1,13 @@ -$NetBSD: patch-ae,v 1.2 2002/02/11 00:26:04 wiz Exp $ +$NetBSD: patch-ae,v 1.3 2002/09/02 16:56:58 wiz Exp $ ---- src/types.c.orig Wed Jan 30 22:24:40 2002 +--- src/types.c.orig Sun Aug 25 12:46:47 2002 +++ src/types.c -@@ -354,7 +354,7 @@ +@@ -352,7 +352,7 @@ void typ_identify_end(MainInfo *min, con if(file_list == NULL) return; - if((temp_name = tmpnam(NULL)) == NULL) + if((temp_name = mkdtemp(NULL)) == NULL) return; - - if(pipe(fd) == 0) + if(pipe(fd) != 0) + return; -- cgit v1.2.3