| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
inherit bash-completion-r1
|
| 8 |
|
| 9 |
DESCRIPTION="Tig: text mode interface for git"
|
| 10 |
HOMEPAGE="http://jonas.nitro.dk/tig/"
|
| 11 |
SRC_URI="http://jonas.nitro.dk/tig/releases/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
DEPEND="sys-libs/ncurses"
|
| 19 |
RDEPEND="${DEPEND}
|
| 20 |
dev-vcs/git"
|
| 21 |
|
| 22 |
src_install() {
|
| 23 |
emake DESTDIR="${D}" install install-doc-man
|
| 24 |
dodoc BUGS NEWS
|
| 25 |
dohtml manual.html README.html
|
| 26 |
newbashcomp contrib/tig-completion.bash ${PN}
|
| 27 |
}
|