summaryrefslogtreecommitdiff
blob: 07cdc6fbee441ca1929b00d75caa04befefb0c65 (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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EGIT_REPO_URI="git://repo.or.cz/topgit.git"
inherit git bash-completion
SRC_URI=""


DESCRIPTION="TopGit - A different patch queue manager"
HOMEPAGE="http://kerneltrap.org/mailarchive/git/2008/8/3/2795494"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+bash-completion"

DEPEND="dev-util/git"
RDEPEND="${DEPEND}"

src_compile() {
	emake prefix="/usr" all || die "all"
}

src_install() {
	emake prefix="${D}usr" install || die "install"
	dobashcompletion contrib/tg-completion.bash ${PN}
}