View | Details | Raw Unified | Return to bug 230429 | Differences between
and this patch

Collapse All | Expand All

(-)b/net-p2p/bitcoin/Makefile (-8 / +5 lines)
Lines 2-11 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	bitcoin
4
PORTNAME=	bitcoin
5
PORTVERSION=	0.16.1
5
PORTVERSION=	0.16.2
6
DISTVERSIONPREFIX=	v
6
PORTREVISION?=	0
7
PORTREVISION?=	1
8
CATEGORIES=	net-p2p finance
7
CATEGORIES=	net-p2p finance
8
MASTER_SITES=	https://bitcoincore.org/bin/bitcoin-core-${PORTVERSION}/
9
9
10
MAINTAINER=	kbowling@FreeBSD.org
10
MAINTAINER=	kbowling@FreeBSD.org
11
COMMENT?=	Virtual Peer-to-Peer Currency Client (QT)
11
COMMENT?=	Virtual Peer-to-Peer Currency Client (QT)
Lines 18-24 LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ Link Here
18
BROKEN_powerpc64=	fails to compile: util.cpp: undefined reference to boost::program_options::to_internal
18
BROKEN_powerpc64=	fails to compile: util.cpp: undefined reference to boost::program_options::to_internal
19
19
20
USES=		autoreconf compiler:c++11-lib gmake libtool pkgconfig qt:5 shebangfix ssl
20
USES=		autoreconf compiler:c++11-lib gmake libtool pkgconfig qt:5 shebangfix ssl
21
USE_GITHUB=	yes
22
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
23
22
24
SLAVE_PORT?=	no
23
SLAVE_PORT?=	no
Lines 119-129 CONFIGURE_ARGS+=--disable-asm Link Here
119
.if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no"
118
.if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no"
120
119
121
post-install:
120
post-install:
122
	${REINPLACE_CMD} -e 's,=/usr,=${PREFIX},' \
121
	${INSTALL} ${FILESDIR}/bitcoin-qt.desktop \
123
		${WRKSRC}/contrib/debian/bitcoin-qt.desktop
124
	${INSTALL} ${WRKSRC}/contrib/debian/bitcoin-qt.desktop \
125
		${STAGEDIR}${PREFIX}/share/applications
122
		${STAGEDIR}${PREFIX}/share/applications
126
	${INSTALL} ${WRKSRC}/share/pixmaps/bitcoin128.png \
123
	${INSTALL} ${FILESDIR}/bitcoin128.png \
127
		${STAGEDIR}${PREFIX}/share/pixmaps/
124
		${STAGEDIR}${PREFIX}/share/pixmaps/
128
125
129
.endif
126
.endif
(-)b/net-p2p/bitcoin/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1529269970
1
TIMESTAMP = 1533629644
2
SHA256 (bitcoin-bitcoin-v0.16.1_GH0.tar.gz) = c0065f63509c1ca8b45057b415f8e4cbaf0f234def6090511d68fd3df3a56380
2
SHA256 (bitcoin-0.16.2.tar.gz) = 1910c58b7d8e13acbd05b0e8fd9b4b61cbac5776f058ee10bc80c1d2a7c707d8
3
SIZE (bitcoin-bitcoin-v0.16.1_GH0.tar.gz) = 6655512
3
SIZE (bitcoin-0.16.2.tar.gz) = 7019310
(-)b/net-p2p/bitcoin/files/bitcoin-qt.desktop (+14 lines)
Added Link Here
1
[Desktop Entry]
2
Version=1.0
3
Name=Bitcoin Core
4
Comment=Connect to the Bitcoin P2P Network
5
Comment[de]=Verbinde mit dem Bitcoin peer-to-peer Netzwerk
6
Comment[fr]=Bitcoin, monnaie virtuelle cryptographique pair à pair
7
Comment[tr]=Bitcoin, eşten eşe kriptografik sanal para birimi
8
Exec=bitcoin-qt %u
9
Terminal=false
10
Type=Application
11
Icon=bitcoin128
12
MimeType=x-scheme-handler/bitcoin;
13
Categories=Office;Finance;
14
StartupWMClass=Bitcoin-qt

Return to bug 230429