summaryrefslogtreecommitdiff
blob: 2157915d1aa7dc70f848fb9fa485a268b8ece475 (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit vim-plugin

MY_PN="ack.vim"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="vim plugin: run ack from vim"
HOMEPAGE="https://github.com/mileszs/ack.vim"
SRC_URI="https://github.com/mileszs/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="vim"
KEYWORDS="~amd64 ~x86"

RDEPEND="sys-apps/ack"

S="${WORKDIR}/${MY_P}"

src_prepare() {
	default
	# See bug 584768.
	mv ftplugin/qf.vim ftplugin/ackqf.vim || die
}