diff options
author | Dror Levin <spatz@gentoo.org> | 2010-05-27 12:54:57 +0000 |
---|---|---|
committer | Dror Levin <spatz@gentoo.org> | 2010-05-27 12:54:57 +0000 |
commit | 35769510c8e8756863fee00131d665b8bed191dd (patch) | |
tree | bbd35c770c67d7f2ee1fe07587303dfd81a06d81 /app-vim | |
parent | Fixed build issue with USE="-zephyr krb4", bug 320167, thank Martin Jansa for... (diff) | |
download | gentoo-2-35769510c8e8756863fee00131d665b8bed191dd.tar.gz gentoo-2-35769510c8e8756863fee00131d665b8bed191dd.tar.bz2 gentoo-2-35769510c8e8756863fee00131d665b8bed191dd.zip |
Initial import, thanks to Michal Kurgan (bug 200259).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/omnicppcomplete/ChangeLog | 10 | ||||
-rw-r--r-- | app-vim/omnicppcomplete/metadata.xml | 9 | ||||
-rw-r--r-- | app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild | 22 |
3 files changed, 41 insertions, 0 deletions
diff --git a/app-vim/omnicppcomplete/ChangeLog b/app-vim/omnicppcomplete/ChangeLog new file mode 100644 index 000000000000..9b9bbe3ee1f3 --- /dev/null +++ b/app-vim/omnicppcomplete/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-vim/omnicppcomplete +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/omnicppcomplete/ChangeLog,v 1.1 2010/05/27 12:54:57 spatz Exp $ + +*omnicppcomplete-0.41 (27 May 2010) + + 27 May 2010; Dror Levin <spatz@gentoo.org> +omnicppcomplete-0.41.ebuild, + +metadata.xml: + Initial import, thanks to Michal Kurgan (bug 200259). + diff --git a/app-vim/omnicppcomplete/metadata.xml b/app-vim/omnicppcomplete/metadata.xml new file mode 100644 index 000000000000..f167db102a5b --- /dev/null +++ b/app-vim/omnicppcomplete/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>vim</herd> + <maintainer> + <email>spatz@gentoo.org</email> + <name>Dror Levin</name> + </maintainer> +</pkgmetadata> diff --git a/app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild b/app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild new file mode 100644 index 000000000000..9fd959fe6746 --- /dev/null +++ b/app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild,v 1.1 2010/05/27 12:54:57 spatz Exp $ + +EAPI="2" + +VIM_PLUGIN_VIM_VERSION="7.0" +inherit vim-plugin + +DESCRIPTION="vim plugin: C/C++ omni-completion with ctags database" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1520" +SRC_URI="http://www.vim.org/scripts/download_script.php?src_id=7722 -> ${P}.zip" +LICENSE="as-is" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND=">=dev-util/ctags-5.7" + +S="${WORKDIR}" + +VIM_PLUGIN_HELPFILES="${PN}" |