Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 386501
Collapse All | Expand All

(-)/usr/portage/app-vim/vim-latex/vim-latex-1.8.23.20110214.ebuild (-3 / +11 lines)
Lines 4-10 Link Here
4
4
5
EAPI=3
5
EAPI=3
6
6
7
inherit vim-plugin versionator
7
inherit vim-plugin versionator python
8
8
9
MY_REV="1049-git089726a"
9
MY_REV="1049-git089726a"
10
MY_P="${PN}-$( replace_version_separator 3 - ).${MY_REV}"
10
MY_P="${PN}-$( replace_version_separator 3 - ).${MY_REV}"
Lines 14-23 Link Here
14
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
14
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
15
15
16
LICENSE="vim"
16
LICENSE="vim"
17
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
17
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
18
IUSE="html"
18
IUSE="html"
19
19
20
RDEPEND="virtual/latex-base"
20
RDEPEND="virtual/latex-base
21
app-editors/gvim[python]
22
"
21
23
22
S="${WORKDIR}/${MY_P}"
24
S="${WORKDIR}/${MY_P}"
23
25
Lines 26-31 Link Here
26
src_prepare() {
28
src_prepare() {
27
	# The makefiles do weird stuff, including running the svn command
29
	# The makefiles do weird stuff, including running the svn command
28
	rm Makefile Makefile.in || die "rm Makefile Makefile.in failed"
30
	rm Makefile Makefile.in || die "rm Makefile Makefile.in failed"
31
32
	# own patch for some keymaps
33
	epatch_user
29
}
34
}
30
35
31
src_install() {
36
src_install() {
Lines 44-49 Link Here
44
49
45
	# Use executable permissions (bug #352403)
50
	# Use executable permissions (bug #352403)
46
	fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py
51
	fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py
52
53
	# convert shebang to python2 since some codes does not run in python3
54
	python_convert_shebangs -r 2 "${D}"
47
}
55
}
48
56
49
pkg_postinst() {
57
pkg_postinst() {

Return to bug 386501