ports/188191: [MAINTAINER] net-p2p/bitcoin: Update to 0.9.0, add icon and desktop file, support staging
Robert Backhaus
robbak at robbak.com
Wed Apr 2 08:59:57 UTC 2014
Sorry, I neglected to check the changes in the porttools, and the patch was
wrong - all it gave me was the difference since my last svn commit a few
minutes earlier. The whole patch is attached. Most problems before were
making sure the qt build system worked - now that system has been dropped,
much of the old port has been removed.
On 2 April 2014 18:50, <FreeBSD-gnats-submit at freebsd.org> wrote:
> Thank you very much for your problem report.
> It has the internal identification `ports/188191'.
> The individual assigned to look at your
> report is: freebsd-ports-bugs.
>
> You can access the state of your problem report at any time
> via this link:
>
> http://www.freebsd.org/cgi/query-pr.cgi?pr=188191
>
> >Category: ports
> >Responsible: freebsd-ports-bugs
> >Synopsis: [MAINTAINER] net-p2p/bitcoin: Update to 0.9.0, add icon
> and desktop file, support staging
> >Arrival-Date: Wed Apr 02 08:50:00 UTC 2014
>
-------------- next part --------------
===> Generating patch
===> Viewing diff with more
Files /usr/ports/net-p2p/bitcoin/.Makefile.swp and ./.Makefile.swp differ
diff -ruN /usr/ports/net-p2p/bitcoin/Makefile ./Makefile
--- /usr/ports/net-p2p/bitcoin/Makefile 2014-02-07 21:44:08.000000000 +1000
+++ ./Makefile 2014-04-02 18:28:31.000000000 +1000
@@ -1,33 +1,43 @@
# Created by: Shaun Amott <shaun at FreeBSD.org>
-# $FreeBSD: head/net-p2p/bitcoin/Makefile 343214 2014-02-07 11:44:08Z bapt $
+# $FreeBSD: net-p2p/bitcoin/Makefile 328082 2013-09-24 01:48:57Z swills $
PORTNAME= bitcoin
-PORTVERSION= 0.8.6
-PORTREVISION= 1
+PORTVERSION= 0.9.0
CATEGORIES= net-p2p finance
-MASTER_SITES= ${MASTER_SITE_LOCAL} \
- http://people.freebsd.org/~swills/ \
+# MASTER_SITES= ${MASTER_SITE_LOCAL} \
+# http://people.freebsd.org/~swills/
+MASTER_SITES= http://vps.robbak.com/distfiles/ \
GH
MAINTAINER= robbak at robbak.com
COMMENT= Virtual Peer-to-Peer Currency Client
+LICENSE= MIT
+
+BUILD_DEPENDS= protoc:${PORTSDIR}/devel/protobuf \
+ pkg-config:${PORTSDIR}/devel/pkgconf
LIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs
-OPTIONS_DEFINE= GUI UPNP QRCODES
-OPTIONS_DEFAULT= GUI QRCODES
+OPTIONS_DEFINE= GUI WALLET UPNP QRCODES
+OPTIONS_DEFAULT= GUI WALLET QRCODES
-GUI_DESC= Build as a QT4 GUI
+GUI_DESC= Build and install the QT4 binary
+WALLET_DESC= Build the binaries with support to create and manage a wallet.
UPNP_DESC= Build with UPNP support
QRCODES_DESC= Build with QR code display
+AUTOMAKE_ARGS+= --add-missing
+USE_AUTOTOOLS= aclocal autoheader automake autoconf
+#ACLOCAL_ARGS= -I ${LOCALBASE}/share/aclocal
+CONFIGURE_ENV= SSL_LIBS="-lssl" CRYPTO_LIBS="-lcrypto" SSL_CFLAGS="-I/usr/include" CRYPTO_CFLAGS="-I/usr/include"
+
USE_GITHUB= yes
GH_ACCOUNT= bitcoin
GH_PROJECT= bitcoin
-GH_COMMIT= 15e2837
+GH_COMMIT= 7a2670d
GH_TAGNAME= v${PORTVERSION}
-USES= gmake
+USE_GMAKE= 4.6
USE_OPENSSL= yes
USE_BDB= yes
WANT_BDB_VER= 48
@@ -36,60 +46,50 @@
CXXFLAGS+= -L${LOCALBASE}/lib -L${BDB_LIB_DIR}
CXXFLAGS+= -Wno-invalid-offsetof
-NO_STAGE= yes
.include <bsd.port.options.mk>
+CONFIGURE_ARGS+=--disable-tests
+
.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11)
-USE_QT4= corelib gui qmake_build linguist uic moc rcc
-BINARY= bitcoin-qt
+USE_QT4= corelib gui qmake_build linguist uic moc rcc qtestlib_build
+PLIST_FILES= %%QT_BINDIR%%/bitcoin-qt %%QT_BINDIR%%/bitcoind %%QT_BINDIR%%/bitcoin-cli
+PLIST_FILES+= share/applications/bitcoin-qt.desktop share/pixmaps/bitcoin128.png
+CONFIGURE_ARGS+=--with-gui
.else
-BINARY= bitcoind
-ALL_TARGET= ${BINARY} test
-MAKE_ARGS+= -C ${WRKSRC}/src
+PLIST_FILES= bin/bitcoind bin/bitcoin-cli
+CONFIGURE_ARGS+=--without-gui
.endif
.if ${PORT_OPTIONS:MQRCODES}
LIB_DEPENDS+= libqrencode.so:${PORTSDIR}/graphics/libqrencode
-QMAKE_USE_QRCODE=1
+CONFIGURE_ARGS+=--with-qrencode
.else
-QMAKE_USE_QRCODE=0
+CONFIGURE_ARGS+=--without-qrencode
.endif
-PLIST_FILES= bin/${BINARY}
-
.if ${PORT_OPTIONS:MUPNP}
LIB_DEPENDS+= libminiupnpc.so:${PORTSDIR}/net/miniupnpc
-QMAKE_USE_UPNP= 1
+CONFIGURE_ARGS+=--with-miniupnpc
+.else
+CONFIGURE_ARGS+=--without-miniupnpc
+.endif
+
+.if ${PORT_OPTIONS:MWALLET}
+CONFIGURE_ARGS+=--enable-wallet
.else
-QMAKE_USE_UPNP= -
+CONFIGURE_ARGS+=--disable-wallet
.endif
.include <bsd.port.pre.mk>
post-patch:
-.if !${PORT_OPTIONS:MGUI} || defined(WITHOUT_X11)
- @cd ${WRKSRC}/src && ${CP} -p makefile.unix Makefile
- @${REINPLACE_CMD} \
- -e 's|^USE_UPNP.*$$|USE_UPNP=${QMAKE_USE_UPNP}|' \
- -e 's|-l pthread|${PTHREAD_LIBS}|g' \
- -e 's:-l dl::' \
- ${WRKSRC}/src/Makefile
-.endif
-
-do-configure:
-.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11)
- cd ${WRKSRC} && ${SETENV} ${QMAKE_ENV} \
- ${QMAKE} ${QMAKE_ARGS} USE_UPNP=${QMAKE_USE_UPNP} USE_QRCODE=${QMAKE_USE_QRCODE} \
- QMAKE_LRELEASE=${LRELEASE} INCLUDEPATH=${BDB_INCLUDE_DIR} \
- QMAKE_LIBDIR+=${BDB_LIB_DIR} bitcoin-qt.pro
-.endif
+ ${MKDIR} ${WRKSRC}/src/build-aux
-do-install:
- @${MKDIR} ${PREFIX}/bin
+post-install:
.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11)
- ${INSTALL_PROGRAM} ${WRKSRC}/${BINARY} ${PREFIX}/bin/
-.else
- ${INSTALL_PROGRAM} ${WRKSRC}/src/${BINARY} ${PREFIX}/bin/
+ ${REINPLACE_CMD} -e 's,=/usr,=${PREFIX},' ${WRKSRC}/contrib/debian/bitcoin-qt.desktop
+ ${INSTALL} ${WRKSRC}/contrib/debian/bitcoin-qt.desktop ${STAGEDIR}${PREFIX}/share/applications
+ ${INSTALL} ${WRKSRC}/share/pixmaps/bitcoin128.png ${STAGEDIR}${PREFIX}/share/pixmaps/
.endif
.include <bsd.port.post.mk>
diff -ruN /usr/ports/net-p2p/bitcoin/distinfo ./distinfo
--- /usr/ports/net-p2p/bitcoin/distinfo 2013-12-17 12:13:55.000000000 +1000
+++ ./distinfo 2014-03-21 09:44:05.000000000 +1000
@@ -1,2 +1,2 @@
-SHA256 (bitcoin-0.8.6.tar.gz) = 0703ce3fce77b63bce11388790176f5626b521b7403d72db1ed452c692fdc55d
-SIZE (bitcoin-0.8.6.tar.gz) = 3194755
+SHA256 (bitcoin-0.9.0.tar.gz) = 28b7e1bdb1cfb70587bac1453fb1a8d816b544dadc9b943d367cff54ce332438
+SIZE (bitcoin-0.9.0.tar.gz) = 4027208
diff -ruN /usr/ports/net-p2p/bitcoin/files/patch-bitcoin-qt_pro-Add_boost-crypto ./files/patch-bitcoin-qt_pro-Add_boost-crypto
--- /usr/ports/net-p2p/bitcoin/files/patch-bitcoin-qt_pro-Add_boost-crypto 2013-05-30 21:28:53.000000000 +1000
+++ ./files/patch-bitcoin-qt_pro-Add_boost-crypto 1970-01-01 10:00:00.000000000 +1000
@@ -1,11 +0,0 @@
-diff -ur ../bitcoin-bitcoin-18c9239.orig/bitcoin-qt.pro ./bitcoin-qt.pro
---- ../bitcoin-bitcoin-18c9239.orig/bitcoin-qt.pro 2013-05-24 22:50:15.000000000 +1000
-+++ ./bitcoin-qt.pro 2013-05-24 22:51:35.000000000 +1000
-@@ -402,7 +402,7 @@
- LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX
- # -lgdi32 has to happen after -lcrypto (see #681)
- win32:LIBS += -lws2_32 -lshlwapi -lmswsock -lole32 -loleaut32 -luuid -lgdi32
--LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX
-+LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX -lboost_chrono$$BOOST_LIB_SUFFIX
- win32:LIBS += -lboost_chrono$$BOOST_LIB_SUFFIX
- macx:LIBS += -lboost_chrono$$BOOST_LIB_SUFFIX
diff -ruN /usr/ports/net-p2p/bitcoin/files/patch-compat-h.patch ./files/patch-compat-h.patch
--- /usr/ports/net-p2p/bitcoin/files/patch-compat-h.patch 1970-01-01 10:00:00.000000000 +1000
+++ ./files/patch-compat-h.patch 2014-03-31 19:24:13.000000000 +1000
@@ -0,0 +1,18 @@
+--- src/compat.h.orig 2014-03-31 19:12:15.000000000 +1000
++++ src/compat.h 2014-03-31 19:12:39.000000000 +1000
+@@ -30,6 +30,7 @@
+ #else
+ #include <sys/types.h>
+ #include <arpa/inet.h>
++#include <sys/socket.h>
+ #include <ifaddrs.h>
+ #include <limits.h>
+ #include <net/if.h>
+@@ -37,7 +38,6 @@
+ #include <netinet/in.h>
+ #include <sys/fcntl.h>
+ #include <sys/mman.h>
+-#include <sys/socket.h>
+ #include <unistd.h>
+ #endif
+
diff -ruN /usr/ports/net-p2p/bitcoin/files/patch-makefile_unix-Add_boost-crypto ./files/patch-makefile_unix-Add_boost-crypto
--- /usr/ports/net-p2p/bitcoin/files/patch-makefile_unix-Add_boost-crypto 2013-05-30 21:28:53.000000000 +1000
+++ ./files/patch-makefile_unix-Add_boost-crypto 1970-01-01 10:00:00.000000000 +1000
@@ -1,11 +0,0 @@
-diff -ur ../bitcoin-bitcoin-18c9239.orig/src/makefile.unix ./src/makefile.unix
---- ../bitcoin-bitcoin-18c9239.orig/src/makefile.unix 2013-05-24 22:50:15.000000000 +1000
-+++ ./src/makefile.unix 2013-05-24 22:52:34.000000000 +1000
-@@ -38,6 +38,7 @@
- -l boost_filesystem$(BOOST_LIB_SUFFIX) \
- -l boost_program_options$(BOOST_LIB_SUFFIX) \
- -l boost_thread$(BOOST_LIB_SUFFIX) \
-+ -l boost_chrono$(BOOST_LIB_SUFFIX) \
- -l db_cxx$(BDB_LIB_SUFFIX) \
- -l ssl \
- -l crypto
diff -ruN /usr/ports/net-p2p/bitcoin/files/patch-src__serialize.h ./files/patch-src__serialize.h
--- /usr/ports/net-p2p/bitcoin/files/patch-src__serialize.h 2013-11-16 04:50:18.000000000 +1000
+++ ./files/patch-src__serialize.h 1970-01-01 10:00:00.000000000 +1000
@@ -1,22 +0,0 @@
---- ./src/serialize.h.orig 2013-09-24 01:50:35.661706153 +0000
-+++ ./src/serialize.h 2013-09-24 01:50:52.913703572 +0000
-@@ -895,19 +895,6 @@
- iterator insert(iterator it, const char& x=char()) { return vch.insert(it, x); }
- void insert(iterator it, size_type n, const char& x) { vch.insert(it, n, x); }
-
-- void insert(iterator it, const_iterator first, const_iterator last)
-- {
-- assert(last - first >= 0);
-- if (it == vch.begin() + nReadPos && (unsigned int)(last - first) <= nReadPos)
-- {
-- // special case for inserting at the front when there's room
-- nReadPos -= (last - first);
-- memcpy(&vch[nReadPos], &first[0], last - first);
-- }
-- else
-- vch.insert(it, first, last);
-- }
--
- void insert(iterator it, std::vector<char>::const_iterator first, std::vector<char>::const_iterator last)
- {
- assert(last - first >= 0);
diff -ruN /usr/ports/net-p2p/bitcoin/patch.diff ./patch.diff
--- /usr/ports/net-p2p/bitcoin/patch.diff 1970-01-01 10:00:00.000000000 +1000
+++ ./patch.diff 2014-04-02 18:56:19.000000000 +1000
@@ -0,0 +1 @@
+===> Generating patch
====> Cleaning up
===> Done
More information about the freebsd-ports-bugs
mailing list