aboutsummaryrefslogtreecommitdiffstats
path: root/finance/electrum/Makefile
blob: 06a91d505a6a3c8f5cdc02c8642bbc7349128fd3 (plain) (blame)
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
# Created by: Neil Booth
# $FreeBSD$

PORTNAME=   electrum
PORTVERSION=    2.9.3
PORTREVISION=   2
CATEGORIES= finance python
MASTER_SITES=   https://download.electrum.org/${PORTVERSION}/ \
        http://download.electrum.org/${PORTVERSION}/
DISTNAME=   Electrum-${PORTVERSION}

MAINTAINER= ehaupt@FreeBSD.org
COMMENT=    Easy to use Bitcoin client

LICENSE=    MIT
LICENSE_FILE=   ${WRKSRC}/LICENCE

RUN_DEPENDS=    ${PYTHON_PKGNAMEPREFIX}dnspython>0:dns/py-dnspython \
        ${PYTHON_PKGNAMEPREFIX}ecdsa>0:security/py-ecdsa \
        ${PYTHON_PKGNAMEPREFIX}jsonrpclib>0:devel/py-jsonrpclib \
        ${PYTHON_PKGNAMEPREFIX}pbkdf2>=1.3:security/py-pbkdf2 \
        ${PYTHON_PKGNAMEPREFIX}protobuf>=2.6.0:devel/py-protobuf \
        ${PYTHON_PKGNAMEPREFIX}pyaes>0:security/py-pyaes \
        ${PYTHON_PKGNAMEPREFIX}pysocks>=0:net/py-pysocks \
        ${PYTHON_PKGNAMEPREFIX}requests>=2.4.3:www/py-requests \
        ${PYTHON_PKGNAMEPREFIX}qrcode>=5.1:textproc/py-qrcode

USES=       desktop-file-utils pyqt:4 python:-2.7
USE_PYQT=   gui_run
USE_PYTHON= autoplist distutils
PYDISTUTILS_PKGNAME=    Electrum
NO_ARCH=    yes
OPTIONS_SUB=    yes

OPTIONS_DEFINE= LEDGER TREZOR
OPTIONS_DEFAULT=LEDGER TREZOR

LEDGER_DESC=    Enable LEDGER Bitcoin hardware wallet support
TREZOR_DESC=    Enable TREZOR Bitcoin hardware wallet support

LEDGER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}btchip-python>0:security/py-btchip-python
TREZOR_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}trezor>0:security/py-trezor

LEDGER_PLIST_FILES= "@sample etc/devd/ledger_wallet.conf.sample"
TREZOR_PLIST_FILES= "@sample etc/devd/trezor_wallet.conf.sample"

LEDGER_SUB_FILES=   pkg-message-hwwallet
TREZOR_SUB_FILES=   pkg-message-hwwallet

post-patch:
    @${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/setup.py

post-install-LEDGER-on:
    ${INSTALL_DATA} ${FILESDIR}/ledger_wallet.conf.sample \
        ${STAGEDIR}${PREFIX}/etc/devd

post-install-TREZOR-on:
    ${INSTALL_DATA} ${FILESDIR}/trezor_wallet.conf.sample \
        ${STAGEDIR}${PREFIX}/etc/devd

.include <bsd.port.mk>