From owner-svn-ports-head@freebsd.org Thu Sep 27 16:55:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0EE610B33DA; Thu, 27 Sep 2018 16:55:06 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 771758D571; Thu, 27 Sep 2018 16:55:06 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7200AD2E; Thu, 27 Sep 2018 16:55:06 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8RGt6CB022775; Thu, 27 Sep 2018 16:55:06 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8RGt5gK022773; Thu, 27 Sep 2018 16:55:05 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201809271655.w8RGt5gK022773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 27 Sep 2018 16:55:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480806 - in head/devel/gearmand: . files X-SVN-Group: ports-head X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: in head/devel/gearmand: . files X-SVN-Commit-Revision: 480806 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2018 16:55:07 -0000 Author: bdrewery Date: Thu Sep 27 16:55:05 2018 New Revision: 480806 URL: https://svnweb.freebsd.org/changeset/ports/480806 Log: - Fix build on powerpc64 PR: 231743 Submitted by: Piotr Kubaj Added: head/devel/gearmand/files/patch-libtest_timer.hpp (contents, props changed) Modified: head/devel/gearmand/Makefile head/devel/gearmand/files/patch-configure Modified: head/devel/gearmand/Makefile ============================================================================== --- head/devel/gearmand/Makefile Thu Sep 27 16:32:02 2018 (r480805) +++ head/devel/gearmand/Makefile Thu Sep 27 16:55:05 2018 (r480806) @@ -11,7 +11,6 @@ MAINTAINER= bdrewery@FreeBSD.org COMMENT= Gearman C Server and Library BROKEN_sparc64= fails to build: cannot link with boost -BROKEN_powerpc64= fails to build: checking for the Boost program_options library... no BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} LIB_DEPENDS= libboost_program_options.so:devel/boost-libs \ @@ -23,7 +22,8 @@ CONFLICTS= p5-Gearman-Server-1.* gearmand-1.1.* USERS= gearmand GROUPS= gearmand -USES= pathfix gmake perl5 python:build libtool +USES= compiler:c++11-lang pathfix gmake perl5 python:build libtool +USE_CXXSTD= c++11 USE_PERL5= build GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/devel/gearmand/files/patch-configure ============================================================================== --- head/devel/gearmand/files/patch-configure Thu Sep 27 16:32:02 2018 (r480805) +++ head/devel/gearmand/files/patch-configure Thu Sep 27 16:55:05 2018 (r480806) @@ -1,5 +1,17 @@ --- ./configure.orig 2013-07-17 10:46:57.000000000 -0400 +++ ./configure 2013-07-17 10:46:57.000000000 -0400 +@@ -16842,11 +16842,6 @@ + $as_echo "$boost_cv_lib_version" >&6; } + # e.g. "134" for 1_34_1 or "135" for 1_35 + boost_major_version=`echo "$boost_cv_lib_version" | sed 's/_//;s/_.*//'` +- case $boost_major_version in #( +- '' | *[!0-9]*) +- as_fn_error $? "invalid value: boost_major_version=$boost_major_version" "$LINENO" 5 +- ;; +- esac + fi + CPPFLAGS=$boost_save_CPPFLAGS + @@ -17972,7 +17972,7 @@ else Added: head/devel/gearmand/files/patch-libtest_timer.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gearmand/files/patch-libtest_timer.hpp Thu Sep 27 16:55:05 2018 (r480806) @@ -0,0 +1,10 @@ +--- libtest/timer.hpp.orig 2018-09-26 15:24:37 UTC ++++ libtest/timer.hpp +@@ -39,6 +39,7 @@ + #include + #include + #include ++#include + + + namespace libtest {