diff options
author | 2010-09-26 05:42:00 +0000 | |
---|---|---|
committer | 2010-09-26 05:42:00 +0000 | |
commit | 04612442f3c6902dcc704919935c90cf304cb6a0 (patch) | |
tree | 7a6fd9af966c7fde9077a04f82bd6931113dc01a /app-vim/latexsuite | |
parent | Version bump (fixes bug #321845, thanks to Azamat H. Hackimov for reporting) ... (diff) | |
download | gentoo-2-04612442f3c6902dcc704919935c90cf304cb6a0.tar.gz gentoo-2-04612442f3c6902dcc704919935c90cf304cb6a0.tar.bz2 gentoo-2-04612442f3c6902dcc704919935c90cf304cb6a0.zip |
Version bump (fixes bug #289870, thanks to Cornelius Weig for reporting and ferret for the ebuild updates) and update to EAPI=3.
(Portage version: 2.2_rc86/cvs/Linux x86_64)
Diffstat (limited to 'app-vim/latexsuite')
-rw-r--r-- | app-vim/latexsuite/ChangeLog | 11 | ||||
-rw-r--r-- | app-vim/latexsuite/latexsuite-1.8.23.20100129.ebuild | 56 |
2 files changed, 65 insertions, 2 deletions
diff --git a/app-vim/latexsuite/ChangeLog b/app-vim/latexsuite/ChangeLog index 04c71c1bfc5e..36d1b78fb2ff 100644 --- a/app-vim/latexsuite/ChangeLog +++ b/app-vim/latexsuite/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-vim/latexsuite -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/latexsuite/ChangeLog,v 1.35 2009/12/17 10:38:27 fauli Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/latexsuite/ChangeLog,v 1.36 2010/09/26 05:42:00 radhermit Exp $ + +*latexsuite-1.8.23.20100129 (26 Sep 2010) + + 26 Sep 2010; Tim Harder <radhermit@gentoo.org> + +latexsuite-1.8.23.20100129.ebuild: + Version bump (fixes bug #289870, thanks to Cornelius Weig for reporting + and ferret for the ebuild updates) and update to EAPI=3. 17 Dec 2009; Christian Faulhammer <fauli@gentoo.org> latexsuite-1.5.20060325.ebuild: diff --git a/app-vim/latexsuite/latexsuite-1.8.23.20100129.ebuild b/app-vim/latexsuite/latexsuite-1.8.23.20100129.ebuild new file mode 100644 index 000000000000..7e83a26fa2c0 --- /dev/null +++ b/app-vim/latexsuite/latexsuite-1.8.23.20100129.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/latexsuite/latexsuite-1.8.23.20100129.ebuild,v 1.1 2010/09/26 05:42:00 radhermit Exp $ + +EAPI=3 + +inherit vim-plugin versionator + +MY_REV="1104" +MY_PN="vim-latex" +MY_P="${MY_PN}-$( replace_version_separator 3 - )-r${MY_REV}" + +DESCRIPTION="vim plugin: a comprehensive set of tools to view, edit and compile LaTeX documents" +HOMEPAGE="http://vim-latex.sourceforge.net/" +SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="vim" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" +IUSE="" + +RDEPEND="virtual/latex-base" + +S="${WORKDIR}/${MY_P}" + +VIM_PLUGIN_HELPFILES="latex-suite.txt latex-suite-quickstart.txt latexhelp.txt imaps.txt" + +src_prepare() { + # The makefiles do weird stuff, including running the svn command + rm Makefile Makefile.in || die "rm Makefile Makefile.in failed" +} + +src_install() { + dohtml -r doc/ + + # don't mess up vim's doc dir with random files + mv doc mydoc || die + mkdir doc || die + mv mydoc/*.txt doc/ || die + rm -rf mydoc || die + + into /usr + dobin latextags ltags + rm latextags ltags + vim-plugin_src_install +} + +pkg_postinst() { + vim-plugin_pkg_postinst + elog + elog "To use the latexSuite plugin add:" + elog " filetype plugin on" + elog ' set grepprg=grep\ -nH\ $*' + elog " let g:tex_flavor='latex'" + elog "to your ~/.vimrc-file" + elog +} |