diff options
author | adam <adam@pkgsrc.org> | 2004-11-03 15:31:42 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-11-03 15:31:42 +0000 |
commit | 93a3c7cbdf90e50646e5fe88caf9e89754a43d5b (patch) | |
tree | 499cd8bb020bdc20f1265d2eabbf0521bc24373f /sysutils | |
parent | 5e15c69652663afbdc066b907493cfe8d764ab5f (diff) | |
download | pkgsrc-93a3c7cbdf90e50646e5fe88caf9e89754a43d5b.tar.gz |
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).
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gentoo/Makefile | 5 | ||||
-rw-r--r-- | sysutils/gentoo/distinfo | 9 | ||||
-rw-r--r-- | sysutils/gentoo/patches/patch-aa | 6 | ||||
-rw-r--r-- | sysutils/gentoo/patches/patch-ad | 13 |
4 files changed, 23 insertions, 10 deletions
diff --git a/sysutils/gentoo/Makefile b/sysutils/gentoo/Makefile index ba0363ca67d..c5248f8c962 100644 --- a/sysutils/gentoo/Makefile +++ b/sysutils/gentoo/Makefile @@ -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/} diff --git a/sysutils/gentoo/distinfo b/sysutils/gentoo/distinfo index eed14a244a1..5e8a4efee4d 100644 --- a/sysutils/gentoo/distinfo +++ b/sysutils/gentoo/distinfo @@ -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 diff --git a/sysutils/gentoo/patches/patch-aa b/sysutils/gentoo/patches/patch-aa index d21d3ac9b62..89f57af0114 100644 --- a/sysutils/gentoo/patches/patch-aa +++ b/sysutils/gentoo/patches/patch-aa @@ -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@ diff --git a/sysutils/gentoo/patches/patch-ad b/sysutils/gentoo/patches/patch-ad new file mode 100644 index 00000000000..fed0c735e14 --- /dev/null +++ b/sysutils/gentoo/patches/patch-ad @@ -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@ |