Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Mar 2017 13:21:49 +0000 (UTC)
From:      Diane Bruce <db@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r436901 - in head/comms/hamlib: . files
Message-ID:  <201703251321.v2PDLnB4099386@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsdports@kyle-evans.net>
  "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 <bsdports@kyle-evans.net>
  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"])
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703251321.v2PDLnB4099386>