blob: 31295d8c43aa78545f23d42be18b3370de412a83 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit git-r3 vim-plugin
DESCRIPTION="vim plugin: Gromacs file syntax highlighting and some macros"
HOMEPAGE="https://github.com/HubLot/vim-gromacs"
#EGIT_REPO_URI="git://github.com/Reinis/${PN}.git"
EGIT_REPO_URI="
https://github.com/HubLot/${PN}.git
git://github.com/HubLot/${PN}.git
git://github.com/Reinis/${PN}.git"
SRC_URI=""
LICENSE="GPL-3"
KEYWORDS=""
IUSE=""
VIM_PLUGIN_MESSAGES="filetype"
pkg_preinst () {
# Remove git files
rm "${ED}/usr/share/vim/vimfiles/.gitignore" || die
rm -r "${ED}/usr/share/vim/vimfiles/.git" || die
}
|