blob: 65088ed54100b465fd6885ee474c90356f2e7fe4 (
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-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Command line interface for running a full Ethereum node"
HOMEPAGE="https://www.ethereum.org/"
SRC_URI="https://github.com/ethereum/go-ethereum/archive/v${PV}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="dev-lang/go"
S="${WORKDIR}/go-ethereum-${PV}"
src_compile() {
emake geth
}
src_install() {
dobin build/bin/geth
dodoc README.md AUTHORS
}
|