| 1 |
blueness |
1.2 |
# Copyright 1999-2013 Gentoo Foundation |
| 2 |
blueness |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
hwoarang |
1.3 |
# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/bitcoin-qt-0.6.0.10_rc3.ebuild,v 1.2 2013/01/13 22:40:35 blueness Exp $ |
| 4 |
blueness |
1.1 |
|
| 5 |
|
|
EAPI=4 |
| 6 |
|
|
|
| 7 |
|
|
DB_VER="4.8" |
| 8 |
|
|
|
| 9 |
|
|
LANGS="ca_ES cs da de en es es_CL et eu_ES fa fa_IR fi fr_CA fr_FR he hr hu it lt nb nl pl pt_BR ro_RO ru sk sr sv tr uk zh_CN zh_TW" |
| 10 |
|
|
inherit db-use eutils qt4-r2 versionator |
| 11 |
|
|
|
| 12 |
|
|
DESCRIPTION="An end-user Qt4 GUI for the Bitcoin crypto-currency" |
| 13 |
|
|
HOMEPAGE="http://bitcoin.org/" |
| 14 |
|
|
SRC_URI="http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v${PV/_/} -> bitcoin-v${PV}.tgz |
| 15 |
|
|
eligius? ( http://luke.dashjr.org/programs/bitcoin/files/eligius_sendfee/0.6.0-eligius_sendfee.patch.xz ) |
| 16 |
|
|
" |
| 17 |
|
|
|
| 18 |
|
|
LICENSE="MIT ISC GPL-3 LGPL-2.1 public-domain" |
| 19 |
|
|
SLOT="0" |
| 20 |
|
|
KEYWORDS="~amd64 ~arm ~x86" |
| 21 |
|
|
IUSE="$IUSE 1stclassmsg dbus +eligius +qrcode ssl upnp" |
| 22 |
|
|
|
| 23 |
|
|
RDEPEND=" |
| 24 |
blueness |
1.2 |
>=dev-libs/boost-1.41.0[threads(+)] |
| 25 |
blueness |
1.1 |
dev-libs/openssl[-bindist] |
| 26 |
|
|
qrcode? ( |
| 27 |
|
|
media-gfx/qrencode |
| 28 |
|
|
) |
| 29 |
|
|
upnp? ( |
| 30 |
|
|
net-libs/miniupnpc |
| 31 |
|
|
) |
| 32 |
|
|
sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx] |
| 33 |
hwoarang |
1.3 |
dev-qt/qtgui:4 |
| 34 |
blueness |
1.1 |
dbus? ( |
| 35 |
hwoarang |
1.3 |
dev-qt/qtdbus:4 |
| 36 |
blueness |
1.1 |
) |
| 37 |
|
|
" |
| 38 |
|
|
DEPEND="${RDEPEND} |
| 39 |
|
|
>=app-shells/bash-4.1 |
| 40 |
|
|
" |
| 41 |
|
|
|
| 42 |
|
|
DOCS="doc/README" |
| 43 |
|
|
|
| 44 |
|
|
S="${WORKDIR}/bitcoin-bitcoind-stable" |
| 45 |
|
|
|
| 46 |
|
|
src_prepare() { |
| 47 |
|
|
cd src || die |
| 48 |
|
|
use eligius && epatch "${WORKDIR}/0.6.0-eligius_sendfee.patch" |
| 49 |
|
|
|
| 50 |
|
|
local filt= yeslang= nolang= |
| 51 |
|
|
|
| 52 |
|
|
for lan in $LANGS; do |
| 53 |
|
|
if [ ! -e qt/locale/bitcoin_$lan.ts ]; then |
| 54 |
|
|
ewarn "Language '$lan' no longer supported. Ebuild needs update." |
| 55 |
|
|
fi |
| 56 |
|
|
done |
| 57 |
|
|
|
| 58 |
|
|
for ts in $(ls qt/locale/*.ts) |
| 59 |
|
|
do |
| 60 |
|
|
x="${ts/*bitcoin_/}" |
| 61 |
|
|
x="${x/.ts/}" |
| 62 |
|
|
if ! use "linguas_$x"; then |
| 63 |
|
|
nolang="$nolang $x" |
| 64 |
|
|
rm "$ts" |
| 65 |
|
|
filt="$filt\\|$x" |
| 66 |
|
|
else |
| 67 |
|
|
yeslang="$yeslang $x" |
| 68 |
|
|
fi |
| 69 |
|
|
done |
| 70 |
|
|
filt="bitcoin_\\(${filt:2}\\)\\.qm" |
| 71 |
|
|
sed "/${filt}/d" -i 'qt/bitcoin.qrc' |
| 72 |
|
|
einfo "Languages -- Enabled:$yeslang -- Disabled:$nolang" |
| 73 |
|
|
} |
| 74 |
|
|
|
| 75 |
|
|
src_configure() { |
| 76 |
|
|
OPTS=() |
| 77 |
|
|
|
| 78 |
|
|
use dbus && OPTS+=("USE_DBUS=1") |
| 79 |
|
|
use ssl && OPTS+=("DEFINES+=USE_SSL") |
| 80 |
|
|
if use upnp; then |
| 81 |
|
|
OPTS+=("USE_UPNP=1") |
| 82 |
|
|
else |
| 83 |
|
|
OPTS+=("USE_UPNP=-") |
| 84 |
|
|
fi |
| 85 |
|
|
use qrcode && OPTS+=("USE_QRCODE=1") |
| 86 |
|
|
use 1stclassmsg && OPTS+=("FIRST_CLASS_MESSAGING=1") |
| 87 |
|
|
|
| 88 |
|
|
OPTS+=("BDB_INCLUDE_PATH=$(db_includedir "${DB_VER}")") |
| 89 |
|
|
OPTS+=("BDB_LIB_SUFFIX=-${DB_VER}") |
| 90 |
|
|
|
| 91 |
|
|
eqmake4 "${PN}.pro" "${OPTS[@]}" |
| 92 |
|
|
} |
| 93 |
|
|
|
| 94 |
|
|
src_compile() { |
| 95 |
|
|
emake |
| 96 |
|
|
} |
| 97 |
|
|
|
| 98 |
|
|
src_test() { |
| 99 |
|
|
cd src || die |
| 100 |
|
|
emake -f makefile.unix "${OPTS[@]}" test_bitcoin |
| 101 |
|
|
./test_bitcoin || die 'Tests failed' |
| 102 |
|
|
} |
| 103 |
|
|
|
| 104 |
|
|
src_install() { |
| 105 |
|
|
qt4-r2_src_install |
| 106 |
|
|
dobin ${PN} |
| 107 |
|
|
insinto /usr/share/pixmaps |
| 108 |
|
|
newins "share/pixmaps/bitcoin.ico" "${PN}.ico" |
| 109 |
|
|
make_desktop_entry ${PN} "Bitcoin-Qt" "/usr/share/pixmaps/${PN}.ico" "Network;P2P" |
| 110 |
|
|
} |