summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2016-02-17 10:33:25 +0000
committerPatrice Clement <monsieurp@gentoo.org>2016-02-17 10:35:47 +0000
commit3a77f9163093e6db58f4beffd654300a9e87eeff (patch)
tree269fa6beca044aa9ebf3c500cfacafcb79178024 /app-shells/autojump/files
parentapp-shells/autojump: Stable for amd64+x86. (diff)
downloadgentoo-3a77f9163093e6db58f4beffd654300a9e87eeff.tar.gz
gentoo-3a77f9163093e6db58f4beffd654300a9e87eeff.tar.bz2
gentoo-3a77f9163093e6db58f4beffd654300a9e87eeff.zip
app-shells/autojump: Clean up.
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-shells/autojump/files')
-rw-r--r--app-shells/autojump/files/autojump-21.3.0-supported-shells.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/app-shells/autojump/files/autojump-21.3.0-supported-shells.patch b/app-shells/autojump/files/autojump-21.3.0-supported-shells.patch
deleted file mode 100644
index a16fc2d4dcf2..000000000000
--- a/app-shells/autojump/files/autojump-21.3.0-supported-shells.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- autojump-21.3.0/bin/autojump.sh
-+++ autojump-21.3.0/bin/autojump.sh
-@@ -1,17 +1,17 @@
- # source autojump on BASH or ZSH depending on the shell
-
- shell=`echo ${SHELL} | awk -F/ '{ print $NF }'`
--
--# check local install
--if [ -s ~/.autojump/etc/profile.d/autojump.${shell} ]; then
-- source ~/.autojump/etc/profile.d/autojump.${shell}
--
--# check global install
--elif [ -s /etc/profile.d/autojump.${shell} ]; then
-- source /etc/profile.d/autojump.${shell}
--
--# check custom install locations (modified by Homebrew or using --destdir option)
--elif [ -s custom_install/autojump.${shell} ]; then
-- source custom_install/autojump.${shell}
--
--fi
-+case ${shell} in
-+ bash|zsh)
-+ # check local install
-+ if [ -s ~/.autojump/etc/profile.d/autojump.${shell} ]; then
-+ source ~/.autojump/etc/profile.d/autojump.${shell}
-+ # check global install
-+ elif [ -s "${EPREFIX}"/etc/profile.d/autojump.${shell} ]; then
-+ source "${EPREFIX}"/etc/profile.d/autojump.${shell}
-+ fi
-+ ;;
-+ *)
-+ echo "Your shell ${shell} (from SHELL=${SHELL}) is unkown."
-+ ;;
-+esac