diff options
Diffstat (limited to 'app-vim/latexsuite/latexsuite-1.5_rc1.ebuild')
-rw-r--r-- | app-vim/latexsuite/latexsuite-1.5_rc1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-vim/latexsuite/latexsuite-1.5_rc1.ebuild b/app-vim/latexsuite/latexsuite-1.5_rc1.ebuild new file mode 100644 index 000000000000..9c5d8f6d6674 --- /dev/null +++ b/app-vim/latexsuite/latexsuite-1.5_rc1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/latexsuite/latexsuite-1.5_rc1.ebuild,v 1.1 2003/10/31 04:10:16 agriffis Exp $ + +inherit vim-plugin + +DESCRIPTION="vim plugin: Latex-Suite attempts to provide a comprehensive set of tools to view, edit and compile LaTeX documents in Vim." +HOMEPAGE="http://vim-latex.sourceforge.net/" +LICENSE="vim" +KEYWORDS="~alpha ~sparc ~x86" + +# We use this tar-ball as it's distributed instead of repackaging it. +# The only caveat is that the tarball unpacks into the current +# directory instead of including a top-level directory. +MY_P="latexSuite-${PV/_/-}" +S="${WORKDIR}" +SRC_URI="http://vim-latex.sourceforge.net/download/${MY_P}.tar.gz" + +RDEPEND="app-text/tetex" + +src_install() { + into /usr ; dobin ltags ; rm ltags + vim-plugin_src_install +} + +pkg_postinst() { + vim-plugin_pkg_postinst + einfo "" + einfo "To use the latexSuite plugin add:" + einfo " filetype plugin on" + einfo " set grepprg=grep\ -nH\ $*" + einfo "to your ~/.vimrc-file" + einfo "" + einfo "Help for this plugin is available with ':help latex-suite' in vim" + einfo "" +} |