blob: 2bd6c9e8666ab06a38a2b1082a9d65218cca22a9 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
PYTHON_REQ_USE="ncurses?"
inherit desktop distutils-r1 gnome2-utils xdg-utils
MY_P="Electron-Cash-${PV}"
DESCRIPTION="Lightweight Bitcoin Cash client (BCH fork of Electrum)"
HOMEPAGE="https://github.com/fyookball/electrum/"
SRC_URI="https://github.com/fyookball/electrum/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="amodem audio_modem cli cosign digitalbitbox email ncurses qrcode +qt5 sync vkb
l10n_es l10n_ja l10n_pt l10n_zh-CN"
REQUIRED_USE="
!audio_modem
|| ( cli ncurses qt5 )
amodem? ( qt5 )
cosign? ( qt5 )
digitalbitbox? ( qt5 )
email? ( qt5 )
qrcode? ( qt5 )
sync? ( qt5 )
vkb? ( qt5 )
"
RDEPEND="
dev-python/dnspython[${PYTHON_USEDEP}]
dev-python/ecdsa[${PYTHON_USEDEP}]
dev-python/jsonrpclib[${PYTHON_USEDEP}]
dev-python/pbkdf2[${PYTHON_USEDEP}]
dev-python/pyaes[${PYTHON_USEDEP}]
dev-python/PySocks[${PYTHON_USEDEP}]
dev-python/qrcode[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/protobuf-python[${PYTHON_USEDEP}]
net-libs/stem[${PYTHON_USEDEP}]
amodem? ( dev-python/amodem[${PYTHON_USEDEP}] )
qrcode? ( media-gfx/zbar[v4l] )
qt5? (
dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
)
ncurses? ( dev-lang/python )
dev-libs/libsecp256k1
"
S="${WORKDIR}/${MY_P}"
DOCS="RELEASE-NOTES"
src_prepare() {
eapply "${FILESDIR}/3.3.6-no-user-root.patch"
# Prevent icon from being installed in the wrong location
sed -i '/icons/d' setup.py || die
if use qt5; then
pyrcc5 icons.qrc -o electroncash_gui/qt/icons_rc.py || die
else
sed "s|'electroncash_gui.qt',||" -i setup.py || die
fi
local wordlist=
for wordlist in \
$(usex l10n_ja '' japanese) \
$(usex l10n_pt '' portuguese) \
$(usex l10n_es '' spanish) \
$(usex l10n_zh-CN '' chinese_simplified) \
; do
rm -f "electroncash/wordlist/${wordlist}.txt" || die
sed -i "/${wordlist}\\.txt/d" electroncash/mnemonic.py || die
done
# Remove unrequested GUI implementations:
local gui setup_py_gui
for gui in \
$(usex cli '' stdio) \
$(usex qt5 '' qt ) \
$(usex ncurses '' text ) \
; do
rm electroncash_gui/"${gui}"* -r || die
done
# And install requested ones...
for gui in \
$(usex qt5 qt '') \
; do
setup_py_gui="${setup_py_gui}'electrum_gui.${gui}',"
done
sed -i "s/'electrum_gui\\.qt',/${setup_py_gui}/" setup.py || die
local bestgui
if use qt5; then
bestgui=qt
elif use ncurses; then
bestgui=text
else
bestgui=stdio
fi
sed -i 's/^\([[:space:]]*\)\(config_options\['\''cwd'\''\] = .*\)$/\1\2\n\1config_options.setdefault("gui", "'"${bestgui}"'")\n/' "${PN}" || die
local plugin
# trezor requires python trezorlib module
# keepkey requires trezor
for plugin in \
$(usex amodem '' audio_modem ) \
$(usex cosign '' cosigner_pool ) \
$(usex digitalbitbox '' digitalbitbox ) \
$(usex email '' email_requests ) \
hw_wallet \
ledger \
keepkey \
$(usex sync '' labels ) \
trezor \
$(usex vkb '' virtualkeyboard ) \
; do
rm -r electroncash_plugins/"${plugin}"* || die
sed -i "/${plugin}/d" setup.py || die
done
eapply_user
distutils-r1_src_prepare
}
src_install() {
doicon -s 128 icons/${PN}.png
distutils-r1_src_install
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
xdg_desktop_database_update
}
pkg_postrm() {
gnome2_icon_cache_update
xdg_desktop_database_update
}
|