diff options
Diffstat (limited to 'app-shells/tcsh')
-rw-r--r-- | app-shells/tcsh/ChangeLog | 10 | ||||
-rw-r--r-- | app-shells/tcsh/files/digest-tcsh-6.15-r1 (renamed from app-shells/tcsh/files/digest-tcsh-6.15) | 0 | ||||
-rw-r--r-- | app-shells/tcsh/files/tcsh-6.15.00-normalize-command-fix.patch | 14 | ||||
-rw-r--r-- | app-shells/tcsh/tcsh-6.15-r1.ebuild (renamed from app-shells/tcsh/tcsh-6.15.ebuild) | 3 |
4 files changed, 25 insertions, 2 deletions
diff --git a/app-shells/tcsh/ChangeLog b/app-shells/tcsh/ChangeLog index 5db9947127f3..433ba8f433bf 100644 --- a/app-shells/tcsh/ChangeLog +++ b/app-shells/tcsh/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-shells/tcsh # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.73 2007/06/30 21:38:32 lavajoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.74 2007/07/03 16:49:11 grobian Exp $ + +*tcsh-6.15-r1 (03 Jul 2007) + + 03 Jul 2007; Fabian Groffen <grobian@gentoo.org> + +files/tcsh-6.15.00-normalize-command-fix.patch, -tcsh-6.15.ebuild, + +tcsh-6.15-r1.ebuild: + Applied patch to fix normalize-command bug, as upstream applied this fix as + well. Bug #183754, thanks to Yuri Karaban 30 Jun 2007; Joe Peterson <lavajoe@gentoo.org> tcsh-6.15.ebuild: Add ~x86-fbsd keyword diff --git a/app-shells/tcsh/files/digest-tcsh-6.15 b/app-shells/tcsh/files/digest-tcsh-6.15-r1 index 0cefbe779489..0cefbe779489 100644 --- a/app-shells/tcsh/files/digest-tcsh-6.15 +++ b/app-shells/tcsh/files/digest-tcsh-6.15-r1 diff --git a/app-shells/tcsh/files/tcsh-6.15.00-normalize-command-fix.patch b/app-shells/tcsh/files/tcsh-6.15.00-normalize-command-fix.patch new file mode 100644 index 000000000000..b3b27ef7f14a --- /dev/null +++ b/app-shells/tcsh/files/tcsh-6.15.00-normalize-command-fix.patch @@ -0,0 +1,14 @@ +http://bugs.gw.com/view.php?id=53 + +diff -uNr tcsh-6.15.00.orig/tw.parse.c tcsh-6.15.00/tw.parse.c +--- tcsh-6.15.00.orig/tw.parse.c 2007-03-01 23:21:42.000000000 +0200 ++++ tcsh-6.15.00/tw.parse.c 2007-06-30 20:10:54.000000000 +0300 +@@ -433,7 +433,7 @@ + Char *p; + int found; + +- found = !cmd_expand(qline.s + wordp, &p); ++ found = cmd_expand(qline.s + wordp, &p); + + if (!found) { + xfree(p); diff --git a/app-shells/tcsh/tcsh-6.15.ebuild b/app-shells/tcsh/tcsh-6.15-r1.ebuild index 9f1f8c7aa83d..99446ea3b1f3 100644 --- a/app-shells/tcsh/tcsh-6.15.ebuild +++ b/app-shells/tcsh/tcsh-6.15-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.15.ebuild,v 1.2 2007/06/30 21:38:32 lavajoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.15-r1.ebuild,v 1.1 2007/07/03 16:49:11 grobian Exp $ inherit eutils @@ -29,6 +29,7 @@ src_unpack() { cd "${S}" epatch "${FILESDIR}/${MY_P/15/14}"-debian-dircolors.patch # bug #120792 epatch "${FILESDIR}"/${PN}-6.14-makefile.patch # bug #151951 + epatch "${FILESDIR}"/${MY_P}-normalize-command-fix.patch # bug #183754 if use catalogs ; then einfo "enabling NLS catalogs support..." |