blob: 8a6bc67c69b0bad43e213a9b2443ffad0af7cbcd (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit git-2
DESCRIPTION="The Google repo tool"
HOMEPAGE="http://code.google.com/p/git-repo/"
EGIT_REPO_URI="https://gerrit.googlesource.com/git-repo"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
>=dev-vcs/git-1.7.2
net-misc/curl
"
RDEPEND="${DEPEND}"
src_install() {
exeinto "usr/bin"
doexe ${PN}
}
|