diff options
author | Fabian Groffen <grobian@gentoo.org> | 2006-10-19 20:17:19 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2006-10-19 20:17:19 +0000 |
commit | adfbb7f2a3d303f91650e080d8b48820a229eca8 (patch) | |
tree | 66c98b5a406acdbe1a3893657b8134552c1a8782 /app-shells | |
parent | Depend on 1.1.2 version of flac, as the 1.1.3 version changes API. (diff) | |
download | gentoo-2-adfbb7f2a3d303f91650e080d8b48820a229eca8.tar.gz gentoo-2-adfbb7f2a3d303f91650e080d8b48820a229eca8.tar.bz2 gentoo-2-adfbb7f2a3d303f91650e080d8b48820a229eca8.zip |
Added patch for bug #151951, thanks dev-zero for pointing out
(Portage version: 2.1.1)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/tcsh/ChangeLog | 6 | ||||
-rw-r--r-- | app-shells/tcsh/files/tcsh-6.14-makefile.patch | 16 | ||||
-rw-r--r-- | app-shells/tcsh/tcsh-6.14-r3.ebuild | 3 |
3 files changed, 23 insertions, 2 deletions
diff --git a/app-shells/tcsh/ChangeLog b/app-shells/tcsh/ChangeLog index cfb9a0338a46..45d3a06e357a 100644 --- a/app-shells/tcsh/ChangeLog +++ b/app-shells/tcsh/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-shells/tcsh # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.62 2006/04/11 20:13:01 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.63 2006/10/19 20:17:19 grobian Exp $ + + 19 Oct 2006; Fabian Groffen <grobian@gentoo.org> + +files/tcsh-6.14-makefile.patch, tcsh-6.14-r3.ebuild: + Added patch for bug #151951, thanks dev-zero for pointing out 11 Apr 2006; Fabian Groffen <grobian@gentoo.org> tcsh-6.14-r3.ebuild: Adding USE-flag catalogs for NLS catalogs support. Thanks to Kouya Sakamoto diff --git a/app-shells/tcsh/files/tcsh-6.14-makefile.patch b/app-shells/tcsh/files/tcsh-6.14-makefile.patch new file mode 100644 index 000000000000..6d85aa0588f3 --- /dev/null +++ b/app-shells/tcsh/files/tcsh-6.14-makefile.patch @@ -0,0 +1,16 @@ +* don't strip (portage does that for us) +* don't try to move away an older tcsh binary; we don't install in / so + that only results in an ugly error message + +--- tcsh-6.14.00/Makefile.in ++++ tcsh-6.14.00/Makefile.in +@@ -477,9 +477,7 @@ + + install: tcsh$(EXEEXT) + -mkdir -p ${DESTBIN} +- -mv -f ${DESTBIN}/tcsh$(EXEEXT) ${DESTBIN}/tcsh.old + cp tcsh$(EXEEXT) ${DESTBIN}/tcsh$(EXEEXT) +- -strip ${DESTBIN}/tcsh$(EXEEXT) + chmod 755 ${DESTBIN}/tcsh$(EXEEXT) + + install.man: tcsh.man diff --git a/app-shells/tcsh/tcsh-6.14-r3.ebuild b/app-shells/tcsh/tcsh-6.14-r3.ebuild index 024300592b9b..3f13a8009354 100644 --- a/app-shells/tcsh/tcsh-6.14-r3.ebuild +++ b/app-shells/tcsh/tcsh-6.14-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.14-r3.ebuild,v 1.14 2006/09/17 07:36:01 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.14-r3.ebuild,v 1.15 2006/10/19 20:17:19 grobian Exp $ inherit eutils @@ -26,6 +26,7 @@ src_unpack() { unpack ${A} epatch "${FILESDIR}/${MY_P}"-debian-dircolors.patch # bug #120792 epatch "${FILESDIR}/${P}"-r2.patch + epatch "${FILESDIR}/${P}"-makefile.patch # bug #151951 if use catalogs ; then |