summaryrefslogtreecommitdiff
blob: ab3fab9b2175072ed8f6500136b826c056f3419e (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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="5"

inherit git-2 bash-completion-r1

EGIT_REPO_URI="git://github.com/visionmedia/git-extras.git"
DESCRIPTION="Little git extras"
HOMEPAGE="https://github.com/visionmedia/git-extras"

LICENSE="MIT"
SLOT="0"

RDEPEND="dev-vcs/git"


src_compile() {
	:;
	# we skip this because the first target of the
	# Makefile is "install" and plain "make" would
	# actually run "make install"

}

src_install() {
	emake DESTDIR="${D}" PREFIX="/usr" install
	nonfatal dodoc Readme.md
	nonfatal newbashcomp "${D}/etc/bash_completion.d/${PN}" ${PN}
}