diff options
author | 2008-09-20 14:12:28 +0000 | |
---|---|---|
committer | 2008-09-20 14:12:28 +0000 | |
commit | 4d9997665ce8b8f7115eeb24e30e5e1e91deb777 (patch) | |
tree | 2433452aaeab3e05e28c09c11d88f8bcbd40c46a /app-vim/cream/cream-0.32.ebuild | |
parent | Version bump. Quoting. (diff) | |
download | gentoo-2-4d9997665ce8b8f7115eeb24e30e5e1e91deb777.tar.gz gentoo-2-4d9997665ce8b8f7115eeb24e30e5e1e91deb777.tar.bz2 gentoo-2-4d9997665ce8b8f7115eeb24e30e5e1e91deb777.zip |
Version bump. Quoting. Drop old.
(Portage version: -svn/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'app-vim/cream/cream-0.32.ebuild')
-rw-r--r-- | app-vim/cream/cream-0.32.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/app-vim/cream/cream-0.32.ebuild b/app-vim/cream/cream-0.32.ebuild index 85f64dc1190f..a5cd8657dc41 100644 --- a/app-vim/cream/cream-0.32.ebuild +++ b/app-vim/cream/cream-0.32.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/cream/cream-0.32.ebuild,v 1.12 2007/07/11 05:14:08 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/cream/cream-0.32.ebuild,v 1.13 2008/09/20 14:12:28 hawking Exp $ inherit vim-plugin eutils @@ -45,22 +45,22 @@ file://${ROOT}usr/share/doc/${PF}/html/keyboardshortcuts.html file://${ROOT}usr/share/doc/${PF}/html/faq.html" src_unpack() { - mkdir -p ${S}/spelldicts + mkdir -p "${S}"/spelldicts # install spell dictionaries into ${S}/spelldicts local my_a for my_a in ${A} ; do if [ -z ${my_a/*spell-dict*/} ] ; then - cd ${S}/spelldicts + cd "${S}"/spelldicts unpack ${my_a} else - cd ${WORKDIR} + cd "${WORKDIR}" unpack ${my_a} fi done # change installation path + fix the wrapper command (disable plugins) - cd ${S} + cd "${S}" cat >cream <<EOF #!/bin/sh gvim --noplugin -U NONE -u "\\\$VIM/cream/creamrc" "\$@" @@ -68,7 +68,7 @@ EOF sed -i "/let \$CREAM/s:VIMRUNTIME:VIM:" creamrc || die "sed #1 broke" # make taglist ebuild aware, bug #66052 - epatch ${FILESDIR}/${PN}-0.30-ebuilds.patch + epatch "${FILESDIR}"/${PN}-0.30-ebuilds.patch } src_install() { @@ -84,10 +84,10 @@ src_install() { doins *.vim creamrc local dir for dir in addons bitmaps spelldicts filetypes ; do - cp -R ${dir} ${D}/usr/share/vim/cream + cp -R ${dir} "${D}"/usr/share/vim/cream done dodir /usr/share/vim/vimfiles - cp -R help ${D}/usr/share/vim/vimfiles/doc + cp -R help "${D}"/usr/share/vim/vimfiles/doc # install docs dodoc docs/* |