diff options
author | Michael Cummings <mcummings@gentoo.org> | 2004-09-30 01:04:23 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2004-09-30 01:04:23 +0000 |
commit | 8fc3ecfce947003763d9bf95357c0d7b24bb37ca (patch) | |
tree | 5b5db74f6e436e80143ee092d194b89f2b77745a /app-misc/bins | |
parent | We release under GPL v2. (diff) | |
download | historical-8fc3ecfce947003763d9bf95357c0d7b24bb37ca.tar.gz historical-8fc3ecfce947003763d9bf95357c0d7b24bb37ca.tar.bz2 historical-8fc3ecfce947003763d9bf95357c0d7b24bb37ca.zip |
bug 65837
Diffstat (limited to 'app-misc/bins')
-rw-r--r-- | app-misc/bins/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/bins/Manifest | 10 | ||||
-rw-r--r-- | app-misc/bins/files/bins-1.1.26-install.patch | 26 |
3 files changed, 39 insertions, 4 deletions
diff --git a/app-misc/bins/ChangeLog b/app-misc/bins/ChangeLog index 5fc72f5dd31b..dd81273fee9a 100644 --- a/app-misc/bins/ChangeLog +++ b/app-misc/bins/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/bins # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/bins/ChangeLog,v 1.22 2004/09/27 10:11:21 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/bins/ChangeLog,v 1.23 2004/09/30 01:04:23 mcummings Exp $ + + 29 Sep 2004; Michael Cummings <mcummings@gentoo.org> + files/bins-1.1.26-install.patch: + Updated bash-completion fixes for the patch; thanks go to CFuga + <cfuga@itam.mx> in bug 65837 for working on this 27 Sep 2004; Michael Cummings <mcummings@gentoo.org> bins-1.1.26-r1.ebuild, -bins-1.1.26.ebuild: diff --git a/app-misc/bins/Manifest b/app-misc/bins/Manifest index 1b9287c314cd..7c9c4f445ba2 100644 --- a/app-misc/bins/Manifest +++ b/app-misc/bins/Manifest @@ -1,3 +1,6 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 6e8fc8fd321e54833d556c94c647f6ab ChangeLog 3226 MD5 e9c1b224d248f77c7e9a5bc37ba6e45c bins-1.1.23-r1.ebuild 1131 MD5 022fcd2421c096126e0aa72a1cb320fb bins-1.1.23-r2.ebuild 1295 @@ -8,3 +11,10 @@ MD5 08fee6831de60c678e175dff4bbbacdb files/bins-1.1.26-install.patch 1292 MD5 e691d4766973f8fa705055f6d6664ce8 files/digest-bins-1.1.23-r1 63 MD5 e691d4766973f8fa705055f6d6664ce8 files/digest-bins-1.1.23-r2 63 MD5 9bf07881d8a8267c11b383bb0ed22d31 files/digest-bins-1.1.26-r1 63 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFBW1uwtG5z4I8BtQoRAnjLAJ0UOdvglnn/7b8uOK+Y8wyjSN2dewCeKeYh +iy2rN/25/MjF+qw3a6eeuuk= +=eLvE +-----END PGP SIGNATURE----- diff --git a/app-misc/bins/files/bins-1.1.26-install.patch b/app-misc/bins/files/bins-1.1.26-install.patch index fbaef17fd70c..d062e1f5dc59 100644 --- a/app-misc/bins/files/bins-1.1.26-install.patch +++ b/app-misc/bins/files/bins-1.1.26-install.patch @@ -1,5 +1,5 @@ ---- install.sh.old 2004-06-15 06:34:53.000000000 +0000 -+++ install.sh 2004-06-15 06:38:01.000000000 +0000 +--- install.sh.old 2004-05-24 08:31:08.000000000 -0500 ++++ install.sh 2004-09-29 13:59:04.911944000 -0500 @@ -23,11 +23,12 @@ RC="${RC:-/etc/bins}" GLOBAL_RC="$RC" @@ -31,7 +31,7 @@ - mkdir -p $RC 2>/dev/null || true - if [ -w $RC ]; then + mkdir -p $DESTRC 2>/dev/null || true -+ if [ -w $DESTRC ]; then ++ if [ -w $DESTRC ]; then echo "Installing configuration file in $RC" - cp binsrc $RC + cp binsrc $DESTRC @@ -52,3 +52,23 @@ return 1 fi } +@@ -179,16 +180,9 @@ + fi + + # bash completion +-if [ -w /etc/bash_completion.d ] ; then +- echo "Installing bash completion system wide." +- cp -f bash_completion /etc/bash_completion.d/bins +-else +- mkdir ~/.bash_completion 2>/dev/null || true +- if [ -w ~/.bash_completion ] ; then +- echo "Installing bash completion for user `whoami`." +- cp -f bash_completion ~/.bash_completion/bins +- fi +-fi ++echo "Installing bash completion system wide." ++mkdir -p $SHARE/bash-completion ++cp -f bash_completion $SHARE/bash-completion/bins + + # I18N files + mkdir -p $LOCALE 2>/dev/null || true |