From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Apr 2 08:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C49FC998 for ; Wed, 2 Apr 2014 08:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9EF42C53 for ; Wed, 2 Apr 2014 08:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s328o0SC048096 for ; Wed, 2 Apr 2014 08:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s328o0pb048095; Wed, 2 Apr 2014 08:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 2 Apr 2014 08:50:00 GMT Resent-Message-Id: <201404020850.s328o0pb048095@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Robert Backahus Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 786FA996 for ; Wed, 2 Apr 2014 08:49:43 +0000 (UTC) Received: from spam.symbionetworks.com (smtp02.symbionetworks.com [125.213.165.10]) by mx1.freebsd.org (Postfix) with ESMTP id 3DBA1C50 for ; Wed, 2 Apr 2014 08:49:42 +0000 (UTC) Received: from spam.symbionetworks.com (localhost.localdomain [127.0.0.1]) by localhost (Email Security Appliance) with SMTP id CAEE418BC3F8_33BCE0CB for ; Wed, 2 Apr 2014 08:45:00 +0000 (GMT) Received: from boffin.lan (unknown [115.187.242.125]) by spam.symbionetworks.com (Sophos Email Appliance) with ESMTP id CC50A18BC3F7_33BCE0AF for ; Wed, 2 Apr 2014 08:44:58 +0000 (GMT) Received: (from robbak@localhost) by boffin.lan (8.14.8/8.14.6/Submit) id s328ieHm045879; Wed, 2 Apr 2014 18:44:40 +1000 (EST) (envelope-from robbak) Message-Id: <201404020844.s328ieHm045879@boffin.lan> Date: Wed, 2 Apr 2014 18:44:40 +1000 (EST) From: Robert Backahus To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/188191: [MAINTAINER] net-p2p/bitcoin: Update to 0.9.0, add icon and desktop file, support staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2014 08:50:00 -0000 >Number: 188191 >Category: ports >Synopsis: [MAINTAINER] net-p2p/bitcoin: Update to 0.9.0, add icon and desktop file, support staging >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Apr 02 08:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Robert Backahus >Release: FreeBSD 9.2-STABLE amd64 >Organization: >Environment: System: FreeBSD boffin 9.2-STABLE FreeBSD 9.2-STABLE #0: Tue Mar 25 13:39:37 EST 2014 >Description: The important 0.9.0 update is here. This port now installs both the command line and daemon versions as well as the GUI, if requested. This means that the seperate bitcoin-daemon port is now redundant, and conflicts this port. Generated with FreeBSD Port Tools 1.00.2014.03.23 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- bitcoin-0.9.0.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 25198) +++ Makefile (working copy) @@ -12,7 +12,7 @@ MAINTAINER= robbak@robbak.com COMMENT= Virtual Peer-to-Peer Currency Client -LICENSE= MIT +LICENSE= MIT BUILD_DEPENDS= protoc:${PORTSDIR}/devel/protobuf \ pkg-config:${PORTSDIR}/devel/pkgconf @@ -42,7 +42,6 @@ USE_BDB= yes WANT_BDB_VER= 48 - CXXFLAGS+= -I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} CXXFLAGS+= -L${LOCALBASE}/lib -L${BDB_LIB_DIR} CXXFLAGS+= -Wno-invalid-offsetof @@ -53,7 +52,8 @@ .if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) 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= %%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 PLIST_FILES= bin/bitcoind bin/bitcoin-cli @@ -85,4 +85,11 @@ post-patch: ${MKDIR} ${WRKSRC}/src/build-aux +post-install: +.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) + ${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 --- bitcoin-0.9.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: