Changes 0.11.52:
* Russian translations updated. Thanks M. Zaripov. * Added test for nested Move of directories. Thanks to John H., "m3", and F. Cosolete for reporting variants of this. * Hopefully fixed broken logic in Copy that caused it to abort too soon when skipping a directory. Reported by M. Bunkus. * Fixed bug that caused DirParent to always (internally) look like it failed, which stopped sequences from continuing past the command. Reported by C. DeeDee. * The SelectSuffix command will now use the first bareword argument as the suffix. Suffixes are assumed to start with a period (.), so running "SelectSuffix action=toggle bmp" will toggle the sel- ection state of all files whose names end in ".bmp". This was suggested by C. DeeDee. * The left arrow key now exits the text viewer (suggested by F. Cosoleto).
This commit is contained in:
parent
2425a4b15d
commit
7619413647
4 changed files with 23 additions and 10 deletions
|
@ -1,7 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.17 2004/10/03 00:18:15 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.18 2004/11/03 15:31:42 adam Exp $
|
||||
|
||||
DISTNAME= gentoo-0.11.51
|
||||
PKGREVISION= 1
|
||||
DISTNAME= gentoo-0.11.52
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gentoo/}
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
$NetBSD: distinfo,v 1.12 2004/05/10 09:17:59 adam Exp $
|
||||
$NetBSD: distinfo,v 1.13 2004/11/03 15:31:42 adam Exp $
|
||||
|
||||
SHA1 (gentoo-0.11.51.tar.gz) = 63e48ff9dc18d8f1f3ac79f8c95f90a243ec690e
|
||||
Size (gentoo-0.11.51.tar.gz) = 1309684 bytes
|
||||
SHA1 (patch-aa) = 567c5317e2cc1c8ddadce8efbc95a838fa4cfcad
|
||||
SHA1 (gentoo-0.11.52.tar.gz) = a0df1bd5eedbae55b102766b9d9e313b23d801a3
|
||||
Size (gentoo-0.11.52.tar.gz) = 1359240 bytes
|
||||
SHA1 (patch-aa) = 18383ec1190260affbd0389626e03b70ba3291d5
|
||||
SHA1 (patch-ab) = 2ccc42ab1781a71f2f1d179cd64d91ad04e58d3c
|
||||
SHA1 (patch-ac) = ab5d886b29945fcb54baa94e47140516bd4db93e
|
||||
SHA1 (patch-ad) = 0ac9fca5454c98633aa6c0bacfcaa364c34df37f
|
||||
SHA1 (patch-ae) = daa7cbed8d66af155f2624a0066b2f578e9a93c6
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
$NetBSD: patch-aa,v 1.5 2004/05/10 09:17:59 adam Exp $
|
||||
$NetBSD: patch-aa,v 1.6 2004/11/03 15:31:42 adam Exp $
|
||||
|
||||
--- Makefile.in.orig 2004-05-03 22:13:18.000000000 +0000
|
||||
--- Makefile.in.orig 2004-05-16 13:17:06.000000000 +0000
|
||||
+++ Makefile.in
|
||||
@@ -194,7 +194,7 @@ prefix = @prefix@
|
||||
@@ -186,7 +186,7 @@ prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
|
|
13
sysutils/gentoo/patches/patch-ad
Normal file
13
sysutils/gentoo/patches/patch-ad
Normal file
|
@ -0,0 +1,13 @@
|
|||
$NetBSD: patch-ad,v 1.5 2004/11/03 15:31:59 adam Exp $
|
||||
|
||||
--- po/Makefile.in.in.orig 2004-11-03 17:25:44.000000000 +0000
|
||||
+++ po/Makefile.in.in
|
||||
@@ -27,7 +27,7 @@ gettextsrcdir = $(datadir)/gettext/po
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
MKINSTALLDIRS = @MKINSTALLDIRS@
|
||||
-mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
|
||||
+mkinstalldirs = $(MKINSTALLDIRS)
|
||||
|
||||
GMSGFMT = @GMSGFMT@
|
||||
MSGFMT = @MSGFMT@
|
Loading…
Reference in a new issue