diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-05-23 19:08:12 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-05-23 19:08:12 +0000 |
commit | 009395cd7882276d4073eb8b0c96085ba600c6e0 (patch) | |
tree | c202fab150412b77f196a1b512cef1d057bdf419 /app-vim/latexsuite | |
parent | URI and HOMEPAGE fix, thanks to: Francois Bochatay <francois@bochatay.net> in... (diff) | |
download | historical-009395cd7882276d4073eb8b0c96085ba600c6e0.tar.gz historical-009395cd7882276d4073eb8b0c96085ba600c6e0.tar.bz2 historical-009395cd7882276d4073eb8b0c96085ba600c6e0.zip |
Version bump, bug #51820
Diffstat (limited to 'app-vim/latexsuite')
-rw-r--r-- | app-vim/latexsuite/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/latexsuite/Manifest | 6 | ||||
-rw-r--r-- | app-vim/latexsuite/files/digest-latexsuite-1.5 | 1 | ||||
-rw-r--r-- | app-vim/latexsuite/latexsuite-1.5.ebuild | 36 |
4 files changed, 47 insertions, 3 deletions
diff --git a/app-vim/latexsuite/ChangeLog b/app-vim/latexsuite/ChangeLog index 3c10df37feca..caf464eb541c 100644 --- a/app-vim/latexsuite/ChangeLog +++ b/app-vim/latexsuite/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/latexsuite # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/latexsuite/ChangeLog,v 1.5 2004/05/17 15:35:49 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/latexsuite/ChangeLog,v 1.6 2004/05/23 19:08:12 ciaranm Exp $ + +*latexsuite-1.5 (23 May 2004) + + 23 May 2004; Ciaran McCreesh <ciaranm@gentoo.org> +latexsuite-1.5.ebuild: + Version bump, bug #51820 18 May 2004; Mamoru KOMACHI <usata@gentoo.org> latexsuite-1.5_rc1.ebuild: Changed app-text/tetex to virtual/tetex. diff --git a/app-vim/latexsuite/Manifest b/app-vim/latexsuite/Manifest index d86c06b770da..01b958dd7ee3 100644 --- a/app-vim/latexsuite/Manifest +++ b/app-vim/latexsuite/Manifest @@ -1,4 +1,6 @@ -MD5 2ceebbb7b5a5560015a6b83525dfb31d latexsuite-1.5_rc1.ebuild 1186 -MD5 9fcd6ca5b2ca200e3260cee40148643a ChangeLog 846 +MD5 333b1d4cb408bd54962ca6368f044827 ChangeLog 983 MD5 f3583430b2f7b0686cafd606b08bf203 metadata.xml 156 +MD5 b13820ef969dc9813f60bec49cdc744d latexsuite-1.5.ebuild 1187 +MD5 2ceebbb7b5a5560015a6b83525dfb31d latexsuite-1.5_rc1.ebuild 1186 +MD5 23326cf6fa27ac23ff9dbe045fbca8a4 files/digest-latexsuite-1.5 66 MD5 c8849f310e180a58ea74d06c7180870d files/digest-latexsuite-1.5_rc1 70 diff --git a/app-vim/latexsuite/files/digest-latexsuite-1.5 b/app-vim/latexsuite/files/digest-latexsuite-1.5 new file mode 100644 index 000000000000..43ed1893d5be --- /dev/null +++ b/app-vim/latexsuite/files/digest-latexsuite-1.5 @@ -0,0 +1 @@ +MD5 f16b4efbe0c1239d20aaa8af2ae28aef latexSuite-1.5.tar.gz 189542 diff --git a/app-vim/latexsuite/latexsuite-1.5.ebuild b/app-vim/latexsuite/latexsuite-1.5.ebuild new file mode 100644 index 000000000000..fbafba45799d --- /dev/null +++ b/app-vim/latexsuite/latexsuite-1.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 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.ebuild,v 1.1 2004/05/23 19:08:12 ciaranm 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 ~ia64 ~ppc" + +# 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="virtual/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 "" +} |