diff options
author | adam <adam@pkgsrc.org> | 2010-03-14 14:06:09 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-03-14 14:06:09 +0000 |
commit | 290cedecc0baa1738230fd3c9cb76a0510a8da30 (patch) | |
tree | 3317bd0a520f147b7f9aaa442f483d6c9a6aba0e | |
parent | befe3715e496a7818380845ccf06ec18f0556628 (diff) | |
download | pkgsrc-290cedecc0baa1738230fd3c9cb76a0510a8da30.tar.gz |
Changes 6.17.00:
I am pleased to announce that tcsh-6.17 is now available; this is a mainly a
bug fix release with the exception of these three feature additions:
10. always save the whole command, not just the first 80 chars of it.
4. Add autoexpand=onlyhistory (Don Estabrook, m66)
3. Add history in loops (Laurence Darby, m48)
Please consult the Fixes files for a complete list of changes.
-rw-r--r-- | shells/tcsh/Makefile | 18 | ||||
-rw-r--r-- | shells/tcsh/distinfo | 10 | ||||
-rw-r--r-- | shells/tcsh/patches/patch-aa | 17 |
3 files changed, 27 insertions, 18 deletions
diff --git a/shells/tcsh/Makefile b/shells/tcsh/Makefile index 20e05b4f629..89fb2ee1045 100644 --- a/shells/tcsh/Makefile +++ b/shells/tcsh/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.66 2009/08/15 23:43:26 zafer Exp $ +# $NetBSD: Makefile,v 1.67 2010/03/14 14:06:09 adam Exp $ -DISTNAME= tcsh-6.16.00 +DISTNAME= tcsh-6.17.00 CATEGORIES= shells MASTER_SITES= ftp://ftp.astron.com/pub/tcsh/ \ ftp://ftp.funet.fi/pub/unix/shells/tcsh/ @@ -35,12 +35,12 @@ post-install: cp ${PKGDIR}/PLIST ${PLIST_SRC} set -e; \ if [ -f ${WRKSRC}/tcsh.C.cat ]; \ - then \ - [ -d ${DESTDIR}${PREFIX:Q}/${NLSDIR:Q}/C ] || \ - ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX:Q}/${NLSDIR:Q}/C;\ - ${INSTALL_DATA} ${WRKSRC:Q}/tcsh.C.cat \ - ${DESTDIR}${PREFIX}/${NLSDIR:Q}/C/tcsh.cat; \ - ${ECHO} ${NLSDIR:Q}/C/tcsh.cat >> ${PLIST_SRC:Q}; \ + then \ + [ -d ${DESTDIR}${PREFIX}/${NLSDIR}/C ] || \ + ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/${NLSDIR}/C; \ + ${INSTALL_DATA} ${WRKSRC}/tcsh.C.cat \ + ${DESTDIR}${PREFIX}/${NLSDIR}/C/tcsh.cat; \ + ${ECHO} ${NLSDIR}/C/tcsh.cat >> ${PLIST_SRC}; \ for i in \ et:ISO_8859-15:et:EE \ finnish:ISO_8859-1:fi:FI \ @@ -65,7 +65,7 @@ post-install: o=; \ while [ $$# -gt 0 ]; \ do \ - d=${NLSDIR:Q}/$${c}_$$1.$${s}; \ + d=${NLSDIR}/$${c}_$$1.$${s}; \ [ -d ${DESTDIR}${PREFIX}/$$d ] || \ ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/$$d; \ if [ -z "$$o" ]; \ diff --git a/shells/tcsh/distinfo b/shells/tcsh/distinfo index d30c155bad9..dfbb66b0333 100644 --- a/shells/tcsh/distinfo +++ b/shells/tcsh/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.24 2008/11/10 09:45:43 adam Exp $ +$NetBSD: distinfo,v 1.25 2010/03/14 14:06:09 adam Exp $ -SHA1 (tcsh-6.16.00.tar.gz) = 3d3536bbb9201abdf39b8b364b95e0a218970a5c -RMD160 (tcsh-6.16.00.tar.gz) = ed23351273bb737c184658235f33869488e64696 -Size (tcsh-6.16.00.tar.gz) = 886468 bytes -SHA1 (patch-aa) = 5ba012bfa662b57be300f5e81a8fcce44b218e72 +SHA1 (tcsh-6.17.00.tar.gz) = 9bf67d5ce1b406178e9ba535ecd34553fe0d4d36 +RMD160 (tcsh-6.17.00.tar.gz) = 2cc41a895799ade6d62640f877bb626f136dac35 +Size (tcsh-6.17.00.tar.gz) = 890084 bytes +SHA1 (patch-aa) = bd2c3a5814b17675c56618feae9184548e40c0d0 SHA1 (patch-ab) = ab71a3826bbcef0702a7d43446f13454176aa671 diff --git a/shells/tcsh/patches/patch-aa b/shells/tcsh/patches/patch-aa index 486b29e0979..c1693213d29 100644 --- a/shells/tcsh/patches/patch-aa +++ b/shells/tcsh/patches/patch-aa @@ -1,8 +1,17 @@ -$NetBSD: patch-aa,v 1.10 2007/04/11 04:56:56 christos Exp $ +$NetBSD: patch-aa,v 1.11 2010/03/14 14:06:09 adam Exp $ ---- Makefile.in.orig 2007-04-09 20:02:33.000000000 -0400 -+++ Makefile.in 2007-04-09 20:04:47.000000000 -0400 -@@ -512,17 +512,10 @@ +--- Makefile.in.orig 2009-06-24 22:09:05.000000000 +0000 ++++ Makefile.in +@@ -278,7 +278,7 @@ P= + prefix=@prefix@ + exec_prefix=@exec_prefix@ + bindir=@bindir@ +-mandir=@datarootdir@/man ++mandir=@mandir@ + MANSECT=1 + DESTBIN=${DESTDIR}${bindir} + DESTMAN=${DESTDIR}${mandir}/man${MANSECT} +@@ -512,17 +512,10 @@ vgrind: install-strip: install install: tcsh$(EXEEXT) |