blob: a298b4b62ce0babea17148931d357f6f54ecc87a (
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
|
# Copyright 2010-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
BITCOINCORE_COMMITHASH="0d719145b018e28d48d35c2646a5962b87c60436"
BITCOINCORE_LJR_DATE="20170102"
BITCOINCORE_IUSE="dbus kde +libevent knots +qrcode qt5 +http test +tor upnp +wallet zeromq"
BITCOINCORE_POLICY_PATCHES="+rbf spamfilter"
LANGS="af af_ZA ar be_BY bg bg_BG ca ca@valencia ca_ES cs cs_CZ cy da de el el_GR en en_GB eo es es_AR es_CL es_CO es_DO es_ES es_MX es_UY es_VE et et_EE eu_ES fa fa_IR fi fr fr_CA fr_FR gl he hi_IN hr hu id_ID it it_IT ja ka kk_KZ ko_KR ku_IQ ky la lt lv_LV mk_MK mn ms_MY nb ne nl nl_NL pam pl pt_BR pt_PT ro ro_RO ru ru_RU sk sl_SI sq sr sr@latin sv ta th_TH tr tr_TR uk ur_PK uz@Cyrl vi vi_VN zh zh_CN zh_HK zh_TW"
KNOTS_LANGS="et_EE nl_NL"
BITCOINCORE_NEED_LEVELDB=1
BITCOINCORE_NEED_LIBSECP256K1=1
inherit bitcoincore eutils fdo-mime gnome2-utils kde4-functions qt4-r2
DESCRIPTION="An end-user Qt GUI for the Bitcoin crypto-currency"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
RDEPEND="
dev-libs/protobuf
qrcode? (
media-gfx/qrencode
)
!qt5? ( dev-qt/qtcore:4[ssl] dev-qt/qtgui:4 )
qt5? ( dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 )
dbus? (
!qt5? ( dev-qt/qtdbus:4 )
qt5? ( dev-qt/qtdbus:5 )
)
"
DEPEND="${RDEPEND}
qt5? ( dev-qt/linguist-tools:5 )
knots? (
gnome-base/librsvg
media-gfx/imagemagick[png]
)
"
REQUIRED_USE="
http? ( libevent ) tor? ( libevent ) libevent? ( http tor )
!libevent? ( knots )
"
for lang in ${KNOTS_LANGS}; do
REQUIRED_USE="${REQUIRED_USE} linguas_${lang}? ( knots )"
done
src_prepare() {
bitcoincore_prepare
local filt= yeslang= nolang= lan ts x
for lan in $LANGS; do
if [ ! -e src/qt/locale/bitcoin_$lan.ts ]; then
if has $lan $KNOTS_LANGS && ! use knots; then
# Expected
continue
fi
die "Language '$lan' no longer supported. Ebuild needs update."
fi
done
for ts in src/qt/locale/*.ts
do
x="${ts/*bitcoin_/}"
x="${x/.ts/}"
if ! use "linguas_$x"; then
nolang="$nolang $x"
rm "$ts" || die
filt="$filt\\|$x"
else
yeslang="$yeslang $x"
fi
done
filt="bitcoin_\\(${filt:2}\\)\\.\(qm\|ts\)"
sed "/${filt}/d" -i 'src/qt/bitcoin_locale.qrc' || die
sed "s/locale\/${filt}/bitcoin.qrc/" -i 'src/Makefile.qt.include' || die
einfo "Languages -- Enabled:$yeslang -- Disabled:$nolang"
epatch "${FILESDIR}/0.13.2-libressl.patch"
bitcoincore_autoreconf
}
src_configure() {
bitcoincore_conf \
$(use_with dbus qtdbus) \
$(use_with qrcode qrencode) \
--with-gui=$(usex qt5 qt5 qt4)
}
src_install() {
bitcoincore_src_install
insinto /usr/share/pixmaps
if use knots; then
newins "src/qt/res/rendered_icons/bitcoin.ico" "${PN}.ico"
else
newins "share/pixmaps/bitcoin.ico" "${PN}.ico"
fi
make_desktop_entry "${PN} %u" "Bitcoin Core" "/usr/share/pixmaps/${PN}.ico" "Qt;Network;P2P;Office;Finance;" "MimeType=x-scheme-handler/bitcoin;\nTerminal=false"
dodoc doc/assets-attribution.md doc/bips.md doc/tor.md
doman contrib/debian/manpages/bitcoin-qt.1
use zeromq && dodoc doc/zmq.md
if use kde; then
insinto /usr/share/kde4/services
doins contrib/debian/bitcoin-qt.protocol
dosym "../kde4/services/bitcoin-qt.protocol" "/usr/share/kservices5/bitcoin-qt.protocol"
fi
}
pkg_preinst() {
gnome2_icon_savelist
}
update_caches() {
gnome2_icon_cache_update
fdo-mime_desktop_database_update
buildsycoca
}
pkg_postinst() {
update_caches
}
pkg_postrm() {
update_caches
}
|