summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Väth <martin@mvath.de>2015-10-21 18:38:16 +0200
committerMartin Väth <martin@mvath.de>2015-10-21 18:38:16 +0200
commit963b089ad64c8e0bb5ab7e554529d4c067b6260b (patch)
treec0c524935862b7e42dd48eda23239bbc162fcb34 /app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.2.1.ebuild
parentapp-shells/set_prompt: Version bump (diff)
downloadmv-963b089ad64c8e0bb5ab7e554529d4c067b6260b.tar.gz
mv-963b089ad64c8e0bb5ab7e554529d4c067b6260b.tar.bz2
mv-963b089ad64c8e0bb5ab7e554529d4c067b6260b.zip
app-shells/zsh-syntax-highlighting: Version bump
Diffstat (limited to 'app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.2.1.ebuild')
-rw-r--r--app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.2.1.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.2.1.ebuild b/app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.2.1.ebuild
deleted file mode 100644
index be2a231c..00000000
--- a/app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.2.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils readme.gentoo
-
-case ${PV} in
-99999999*)
- EGIT_REPO_URI="git://github.com/zsh-users/${PN}.git"
- inherit git-r3
- PROPERTIES="live"
- SRC_URI=""
- KEYWORDS="";;
-*)
- RESTRICT="mirror"
- SRC_URI="https://github.com/zsh-users/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86";;
-esac
-
-DESCRIPTION="Fish shell like syntax highlighting for zsh"
-HOMEPAGE="https://github.com/zsh-users/zsh-syntax-highlighting"
-
-LICENSE="HPND"
-SLOT="0"
-IUSE=""
-
-RDEPEND="app-shells/zsh"
-DEPEND=""
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
-. /usr/share/zsh/site-contrib/${PN}/zsh-syntax-highlighting.zsh
-at the end of your ~/.zshrc
-For testing, you can also execute the above command in your zsh."
-
-src_prepare() {
- grep -q 'local .*cdpath_dir' \
- "${S}/highlighters/main/main-highlighter.zsh" >/dev/null 2>&1 || \
- sed -i -e '/for cdpath_dir/ilocal cdpath_dir' \
- -- "${S}/highlighters/main/main-highlighter.zsh" || die
- epatch_user
-}
-
-src_install() {
- dodoc *.md
- insinto /usr/share/zsh/site-contrib/${PN}
- doins *.zsh
- doins -r highlighters
- readme.gentoo_create_doc
-}