blob: 9a21a05397968654435578ab1ee1eee787a56bb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1 vim-plugin
MY_P="AutomaticTexPlugin_${PV}"
DESCRIPTION="vim plugin: a comprehensive plugin for editing LaTeX files"
HOMEPAGE="http://atp-vim.sourceforge.net/"
SRC_URI="mirror://sourceforge/atp-vim/releases/${MY_P}.tar.gz"
LICENSE="GPL-3"
KEYWORDS="amd64 x86"
S=${WORKDIR}
VIM_PLUGIN_HELPFILES="automatic-tex-plugin.txt"
RDEPEND="|| ( app-editors/vim[python,${PYTHON_USEDEP}] app-editors/gvim[python,${PYTHON_USEDEP}] )
!app-vim/vim-latex
app-vim/align
app-text/wdiff
dev-python/psutil[${PYTHON_USEDEP}]
dev-tex/latexmk
dev-tex/detex
virtual/tex-base
${PYTHON_DEPS}"
REQUIRED_USE=${PYTHON_REQUIRED_USE}
src_prepare() {
python_fix_shebang .
}
|