From owner-svn-ports-all@freebsd.org Sat Mar 25 13:21:51 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 423DAD1C5DE; Sat, 25 Mar 2017 13:21:51 +0000 (UTC) (envelope-from db@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 mx1.freebsd.org (Postfix) with ESMTPS id EBC531E05; Sat, 25 Mar 2017 13:21:50 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2PDLoWE099388; Sat, 25 Mar 2017 13:21:50 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2PDLnB4099386; Sat, 25 Mar 2017 13:21:49 GMT (envelope-from db@FreeBSD.org) Message-Id: <201703251321.v2PDLnB4099386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Sat, 25 Mar 2017 13:21:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436901 - in head/comms/hamlib: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Mar 2017 13:21:51 -0000 Author: db Date: Sat Mar 25 13:21:49 2017 New Revision: 436901 URL: https://svnweb.freebsd.org/changeset/ports/436901 Log: As stated by Kyle Evans "As in PR 196937, comms/hamlib fails to detect C++ compiler under emulation. A patch for this was introduced in r377901 and then removed in r398432, but I suspect it was still needed. I think the proper solution is to re-introduce the patch that was removed, but I can't properly test it myself because I'm failing to rebuild my arm.armv6 poudriere jail." re-introduce missing diff portlint again redo checksum PR: ports/217972 Reported by: Kyle Evans Reviewed by: mikael.urankar@gmail.com Added: head/comms/hamlib/files/patch-configure.ac (contents, props changed) Modified: head/comms/hamlib/distinfo head/comms/hamlib/files/patch-bindings_Makefile.am Modified: head/comms/hamlib/distinfo ============================================================================== --- head/comms/hamlib/distinfo Sat Mar 25 13:06:03 2017 (r436900) +++ head/comms/hamlib/distinfo Sat Mar 25 13:21:49 2017 (r436901) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483233776 +TIMESTAMP = 1490445019 SHA256 (hamlib-3.1.tar.gz) = 682304c3e88ff6ccfd6a5fc28b33bcc95d2d0a54321973fef015ff62570c994e SIZE (hamlib-3.1.tar.gz) = 2130615 Modified: head/comms/hamlib/files/patch-bindings_Makefile.am ============================================================================== --- head/comms/hamlib/files/patch-bindings_Makefile.am Sat Mar 25 13:06:03 2017 (r436900) +++ head/comms/hamlib/files/patch-bindings_Makefile.am Sat Mar 25 13:21:49 2017 (r436901) @@ -1,4 +1,4 @@ ---- bindings/Makefile.am.orig 2017-01-01 01:25:57 UTC +--- bindings/Makefile.am.orig 2017-03-25 12:45:27 UTC +++ bindings/Makefile.am @@ -120,7 +120,7 @@ MOSTLYCLEANFILES+= hamlibtcl_wrap.c pkgI Added: head/comms/hamlib/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/hamlib/files/patch-configure.ac Sat Mar 25 13:21:49 2017 (r436901) @@ -0,0 +1,11 @@ +--- configure.ac.orig 2016-12-31 20:01:25 UTC ++++ configure.ac +@@ -87,7 +87,7 @@ AC_PROG_INSTALL + AC_PROG_LN_S + + # TODO: check whether CXX is functional +-AC_CHECK_PROG([cf_with_cxx], ["${CXX}"], [yes], [no]) ++AC_PATH_PROG([cf_with_cxx], ["${CXX}"], [yes], [no]) + + AM_CONDITIONAL([ENABLE_CXX], [test x"${cf_with_cxx}" = "xyes"]) +