# Copyright 2010-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: ~placeholder~ EAPI=4 DB_VER="4.8" inherit autotools bash-completion-r1 db-use eutils user versionator systemd MyPV="${PV/_/}" MyPN="bitcoin" MyP="${MyPN}-${MyPV}" DESCRIPTION="Original Bitcoin crypto-currency wallet for automated services" HOMEPAGE="http://bitcoin.org/" SRC_URI="https://github.com/${MyPN}/${MyPN}/archive/v${MyPV}.tar.gz -> ${MyPN}-v${PV}.tgz" LICENSE="MIT ISC GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" IUSE="examples logrotate test upnp +wallet" RDEPEND=" >=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] logrotate? ( app-admin/logrotate ) upnp? ( net-libs/miniupnpc ) wallet? ( sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx] ) virtual/bitcoin-leveldb " DEPEND="${RDEPEND} >=app-shells/bash-4.1 sys-apps/sed " S="${WORKDIR}/${MyP}" pkg_setup() { local UG='bitcoin' enewgroup "${UG}" enewuser "${UG}" -1 -1 /var/lib/bitcoin "${UG}" } src_prepare() { epatch "${FILESDIR}/0.9.0-sys_leveldb.patch" rm -r src/leveldb eautoreconf } src_configure() { econf \ $(use_with upnp miniupnpc) $(use_enable upnp upnp-default) \ $(use_enable test tests) \ $(use_enable wallet) \ --with-system-leveldb \ --without-cli \ --without-gui } src_test() { emake check } src_install() { emake DESTDIR="${D}" 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/README.md doc/release-notes.md 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 }