| 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 eutils
|
| 8 |
|
| 9 |
DESCRIPTION="Modular Bitcoin CPU/GPU/FPGA miner in C"
|
| 10 |
HOMEPAGE="https://bitcointalk.org/index.php?topic=78192.0"
|
| 11 |
SRC_URI="http://luke.dashjr.org/programs/bitcoin/files/${PN}/${PV}/${P}.tbz2"
|
| 12 |
|
| 13 |
LICENSE="GPL-3"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="~amd64 ~x86"
|
| 16 |
|
| 17 |
IUSE="+adl altivec bitforce +cpumining examples hardened icarus modminer ncurses +opencl padlock scrypt sse2 sse2_4way sse4 +udev x6500 ztex"
|
| 18 |
REQUIRED_USE="
|
| 19 |
|| ( bitforce cpumining icarus modminer opencl x6500 ztex )
|
| 20 |
adl? ( opencl )
|
| 21 |
altivec? ( cpumining ppc ppc64 )
|
| 22 |
padlock? ( cpumining || ( amd64 x86 ) )
|
| 23 |
scrypt? ( || ( cpumining opencl ) )
|
| 24 |
sse2? ( cpumining || ( amd64 x86 ) )
|
| 25 |
sse4? ( cpumining amd64 )
|
| 26 |
"
|
| 27 |
|
| 28 |
DEPEND="
|
| 29 |
net-misc/curl
|
| 30 |
ncurses? (
|
| 31 |
sys-libs/ncurses
|
| 32 |
)
|
| 33 |
>=dev-libs/jansson-2
|
| 34 |
udev? (
|
| 35 |
sys-fs/udev
|
| 36 |
)
|
| 37 |
x6500? (
|
| 38 |
virtual/libusb:1
|
| 39 |
)
|
| 40 |
ztex? (
|
| 41 |
virtual/libusb:1
|
| 42 |
)
|
| 43 |
"
|
| 44 |
RDEPEND="${DEPEND}
|
| 45 |
opencl? (
|
| 46 |
virtual/opencl
|
| 47 |
)
|
| 48 |
"
|
| 49 |
DEPEND="${DEPEND}
|
| 50 |
virtual/pkgconfig
|
| 51 |
sys-apps/sed
|
| 52 |
sse2? (
|
| 53 |
>=dev-lang/yasm-1.0.1
|
| 54 |
)
|
| 55 |
sse4? (
|
| 56 |
>=dev-lang/yasm-1.0.1
|
| 57 |
)
|
| 58 |
"
|
| 59 |
|
| 60 |
src_prepare() {
|
| 61 |
sed -i 's/\(^\#define WANT_.*\(SSE\|PADLOCK\|ALTIVEC\)\)/\/\/ \1/' miner.h
|
| 62 |
}
|
| 63 |
|
| 64 |
src_configure() {
|
| 65 |
local CFLAGS="${CFLAGS}"
|
| 66 |
if ! use altivec; then
|
| 67 |
sed -i 's/-faltivec//g' configure
|
| 68 |
else
|
| 69 |
CFLAGS="${CFLAGS} -DWANT_ALTIVEC=1"
|
| 70 |
fi
|
| 71 |
use padlock && CFLAGS="${CFLAGS} -DWANT_VIA_PADLOCK=1"
|
| 72 |
if use sse2; then
|
| 73 |
if use amd64; then
|
| 74 |
CFLAGS="${CFLAGS} -DWANT_X8664_SSE2=1"
|
| 75 |
else
|
| 76 |
CFLAGS="${CFLAGS} -DWANT_X8632_SSE2=1"
|
| 77 |
fi
|
| 78 |
fi
|
| 79 |
use sse2_4way && CFLAGS="${CFLAGS} -DWANT_SSE2_4WAY=1"
|
| 80 |
use sse4 && CFLAGS="${CFLAGS} -DWANT_X8664_SSE4=1"
|
| 81 |
use hardened && CFLAGS="${CFLAGS} -nopie"
|
| 82 |
|
| 83 |
CFLAGS="${CFLAGS}" \
|
| 84 |
econf \
|
| 85 |
$(use_enable adl) \
|
| 86 |
$(use_enable bitforce) \
|
| 87 |
$(use_enable cpumining) \
|
| 88 |
$(use_enable icarus) \
|
| 89 |
$(use_enable modminer) \
|
| 90 |
$(use_with ncurses curses) \
|
| 91 |
$(use_enable opencl) \
|
| 92 |
$(use_enable scrypt) \
|
| 93 |
$(use_with udev libudev) \
|
| 94 |
$(use_enable x6500) \
|
| 95 |
$(use_enable ztex)
|
| 96 |
# sanitize directories
|
| 97 |
sed -i 's~^\(\#define CGMINER_PREFIX \).*$~\1"'"${EPREFIX}/usr/lib/bfgminer"'"~' config.h
|
| 98 |
}
|
| 99 |
|
| 100 |
src_install() {
|
| 101 |
dobin bfgminer
|
| 102 |
dodoc AUTHORS NEWS README API-README
|
| 103 |
if use scrypt; then
|
| 104 |
dodoc SCRYPT-README
|
| 105 |
fi
|
| 106 |
if use icarus || use bitforce; then
|
| 107 |
dodoc FPGA-README
|
| 108 |
fi
|
| 109 |
if use bitforce; then
|
| 110 |
dobin bitforce-firmware-flash
|
| 111 |
fi
|
| 112 |
if use modminer || use x6500; then
|
| 113 |
insinto /usr/lib/bfgminer/bitstreams
|
| 114 |
doins bitstreams/fpgaminer*.bit
|
| 115 |
dodoc bitstreams/COPYING_fpgaminer
|
| 116 |
fi
|
| 117 |
if use opencl; then
|
| 118 |
insinto /usr/lib/bfgminer
|
| 119 |
doins *.cl
|
| 120 |
fi
|
| 121 |
if use ztex; then
|
| 122 |
insinto /usr/lib/bfgminer/ztex
|
| 123 |
doins bitstreams/ztex*.bit
|
| 124 |
dodoc bitstreams/COPYING_ztex
|
| 125 |
fi
|
| 126 |
if use examples; then
|
| 127 |
docinto examples
|
| 128 |
dodoc api-example.php miner.php API.java api-example.c
|
| 129 |
fi
|
| 130 |
cd libblkmaker
|
| 131 |
emake DESTDIR="$D" install
|
| 132 |
}
|