From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 28 04:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54CE91065670 for ; Thu, 28 Jun 2012 04:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F85D8FC17 for ; Thu, 28 Jun 2012 04:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q5S4o9u8082688 for ; Thu, 28 Jun 2012 04:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q5S4o99D082687; Thu, 28 Jun 2012 04:50:09 GMT (envelope-from gnats) Resent-Date: Thu, 28 Jun 2012 04:50:09 GMT Resent-Message-Id: <201206280450.q5S4o99D082687@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, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F13AE106566C for ; Thu, 28 Jun 2012 04:45:28 +0000 (UTC) (envelope-from gslin@colo-p.gslin.org) Received: from colo-p.gslin.org (gslin-1-pt.tunnel.tserv3.fmt2.ipv6.he.net [IPv6:2001:470:1f04:18a1::2]) by mx1.freebsd.org (Postfix) with ESMTP id BEAE88FC0C for ; Thu, 28 Jun 2012 04:45:28 +0000 (UTC) Received: by colo-p.gslin.org (Postfix, from userid 1000) id 2C1A77E81B; Thu, 28 Jun 2012 12:45:26 +0800 (CST) Message-Id: <20120628044526.2C1A77E81B@colo-p.gslin.org> Date: Thu, 28 Jun 2012 12:45:26 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org, jnlin@csie.nctu.edu.tw Subject: ports/169505: [PATCH] net/scribe: Fix build for boost 1.47+ X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Jun 2012 04:50:10 -0000 >Number: 169505 >Category: ports >Synopsis: [PATCH] net/scribe: Fix build for boost 1.47+ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 28 04:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 8.3-RELEASE i386 >Organization: >Environment: System: FreeBSD colo-p.gslin.org 8.3-RELEASE FreeBSD 8.3-RELEASE #0: Mon Apr 9 21:47:23 UTC >Description: - Fix build for boost 1.47+. Added file(s): - files/patch-src-file.cpp Port maintainer (jnlin@csie.nctu.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- scribe-2.2.2012.01.07_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/scribe/Makefile ./Makefile --- /usr/ports/net/scribe/Makefile 2012-05-31 06:07:56.000000000 +0800 +++ ./Makefile 2012-06-28 12:41:18.000000000 +0800 @@ -6,6 +6,7 @@ PORTNAME= scribe DISTVERSION= 2.2.2012.01.07 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= https://github.com/facebook/scribe/tarball/${GITVERSION}/ DISTNAME= facebook-scribe-${GITVERSION} @@ -21,8 +22,6 @@ p5-Thrift>0:${PORTSDIR}/devel/p5-Thrift \ ${PYTHON_SITELIBDIR}/thrift/__init__.py:${PORTSDIR}/devel/py-thrift -BROKEN= does not compile - GITVERSION= 63e4824 FETCH_ARGS= -pRr WRKSRC= ${WRKDIR}/${DISTNAME} diff -ruN --exclude=CVS /usr/ports/net/scribe/files/patch-src-file.cpp ./files/patch-src-file.cpp --- /usr/ports/net/scribe/files/patch-src-file.cpp 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-src-file.cpp 2012-06-28 12:42:52.000000000 +0800 @@ -0,0 +1,11 @@ +--- src/file.cpp.orig 2012-06-28 12:42:20.000000000 +0800 ++++ src/file.cpp 2012-06-28 12:42:30.000000000 +0800 +@@ -245,7 +245,7 @@ + boost::filesystem::directory_iterator dir_iter(path), end_iter; + + for ( ; dir_iter != end_iter; ++dir_iter) { +- _return.push_back(dir_iter->filename()); ++ _return.push_back(dir_iter->path().filename().string()); + } + } + } catch (const std::exception& e) { --- scribe-2.2.2012.01.07_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: