68 lines
1.7 KiB
Bash
68 lines
1.7 KiB
Bash
# Copyright 2010-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-9999.ebuild,v 1.4 2015/03/04 00:11:48 blueness Exp $
|
|
|
|
EAPI=5
|
|
|
|
BITCOINCORE_IUSE="examples logrotate test upnp +wallet"
|
|
BITCOINCORE_NEED_LEVELDB=1
|
|
BITCOINCORE_NEED_LIBSECP256K1=1
|
|
inherit bash-completion-r1 bitcoincore user systemd
|
|
|
|
DESCRIPTION="Original Bitcoin crypto-currency wallet for automated services"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
|
|
RDEPEND="
|
|
logrotate? (
|
|
app-admin/logrotate
|
|
)
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
pkg_setup() {
|
|
local UG='bitcoin'
|
|
enewgroup "${UG}"
|
|
enewuser "${UG}" -1 -1 /var/lib/bitcoin "${UG}"
|
|
}
|
|
|
|
src_configure() {
|
|
# NOTE: --enable-zmq actually disables it
|
|
bitcoincore_conf \
|
|
--with-daemon
|
|
}
|
|
|
|
src_install() {
|
|
bitcoincore_src_install
|
|
|
|
insinto /etc/bitcoin
|
|
newins "${FILESDIR}/bitcoin.conf" bitcoin.conf
|
|
fowners bitcoin:bitcoin /etc/bitcoin/bitcoin.conf
|
|
fperms 600 /etc/bitcoin/bitcoin.conf
|
|
|
|
newconfd "${FILESDIR}/bitcoin.confd" ${PN}
|
|
newinitd "${FILESDIR}/bitcoin.initd-r1" ${PN}
|
|
systemd_dounit "${FILESDIR}/bitcoind.service"
|
|
|
|
keepdir /var/lib/bitcoin/.bitcoin
|
|
fperms 700 /var/lib/bitcoin
|
|
fowners bitcoin:bitcoin /var/lib/bitcoin/
|
|
fowners bitcoin:bitcoin /var/lib/bitcoin/.bitcoin
|
|
dosym /etc/bitcoin/bitcoin.conf /var/lib/bitcoin/.bitcoin/bitcoin.conf
|
|
|
|
dodoc doc/assets-attribution.md doc/tor.md
|
|
doman contrib/debian/manpages/{bitcoind.1,bitcoin.conf.5}
|
|
|
|
newbashcomp contrib/${PN}.bash-completion ${PN}
|
|
|
|
if use examples; then
|
|
docinto examples
|
|
dodoc -r contrib/{bitrpc,pyminer,qos,spendfrom,tidy_datadir.sh}
|
|
fi
|
|
|
|
if use logrotate; then
|
|
insinto /etc/logrotate.d
|
|
newins "${FILESDIR}/bitcoind.logrotate" bitcoind
|
|
fi
|
|
}
|