From owner-svn-ports-branches@freebsd.org Sat Aug 19 14:39:03 2017 Return-Path: Delivered-To: svn-ports-branches@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 E9CFBDC998C; Sat, 19 Aug 2017 14:39:03 +0000 (UTC) (envelope-from sunpoet@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 C4FC3772D4; Sat, 19 Aug 2017 14:39:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JEd2OY062147; Sat, 19 Aug 2017 14:39:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JEd2Ng062142; Sat, 19 Aug 2017 14:39:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708191439.v7JEd2Ng062142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 19 Aug 2017 14:39:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448315 - in branches/2017Q3/graphics/gmt: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2017Q3/graphics/gmt: . files X-SVN-Commit-Revision: 448315 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 14:39:04 -0000 Author: sunpoet Date: Sat Aug 19 14:39:02 2017 New Revision: 448315 URL: https://svnweb.freebsd.org/changeset/ports/448315 Log: MFH: r448283 Unbreak this port PR: 221334 Reported by: pi Approved by: ports-secteam (blanket) Added: branches/2017Q3/graphics/gmt/files/patch-src-gmt_io.c - copied unchanged from r448283, head/graphics/gmt/files/patch-src-gmt_io.c branches/2017Q3/graphics/gmt/files/patch-src-gmtmath.c - copied unchanged from r448283, head/graphics/gmt/files/patch-src-gmtmath.c branches/2017Q3/graphics/gmt/files/patch-src-grdmath.c - copied unchanged from r448283, head/graphics/gmt/files/patch-src-grdmath.c branches/2017Q3/graphics/gmt/files/patch-src-misc-gmtdigitize.c - copied unchanged from r448283, head/graphics/gmt/files/patch-src-misc-gmtdigitize.c Modified: branches/2017Q3/graphics/gmt/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/graphics/gmt/Makefile ============================================================================== --- branches/2017Q3/graphics/gmt/Makefile Sat Aug 19 14:37:14 2017 (r448314) +++ branches/2017Q3/graphics/gmt/Makefile Sat Aug 19 14:39:02 2017 (r448315) @@ -25,8 +25,6 @@ LICENSE_COMB= multi LICENSE_DISTFILES_GPLv2= ${DISTNAME}${EXTRACT_SUFX} LICENSE_DISTFILES_LGPL3= ${GSHHG_DISTNAME}${EXTRACT_SUFX} -BROKEN= fails to build - LIB_DEPENDS= libnetcdf.so:science/netcdf RUN_DEPENDS= bash:shells/bash Copied: branches/2017Q3/graphics/gmt/files/patch-src-gmt_io.c (from r448283, head/graphics/gmt/files/patch-src-gmt_io.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/graphics/gmt/files/patch-src-gmt_io.c Sat Aug 19 14:39:02 2017 (r448315, copy of r448283, head/graphics/gmt/files/patch-src-gmt_io.c) @@ -0,0 +1,14 @@ +--- src/gmt_io.c.orig 2016-03-07 01:35:42 UTC ++++ src/gmt_io.c +@@ -80,11 +80,7 @@ + */ + + /* Circumvent Solaris problem. See bug #817 */ +-#ifdef __FreeBSD__ +-#define _XOPEN_SOURCE +-#else + #define _XOPEN_SOURCE 600 +-#endif + + #define GMT_WITH_NO_PS + #include "gmt.h" Copied: branches/2017Q3/graphics/gmt/files/patch-src-gmtmath.c (from r448283, head/graphics/gmt/files/patch-src-gmtmath.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/graphics/gmt/files/patch-src-gmtmath.c Sat Aug 19 14:39:02 2017 (r448315, copy of r448283, head/graphics/gmt/files/patch-src-gmtmath.c) @@ -0,0 +1,14 @@ +--- src/gmtmath.c.orig 2016-03-07 01:35:42 UTC ++++ src/gmtmath.c +@@ -61,11 +61,7 @@ + */ + + /* Circumvent Solaris problem. See bug #817 */ +-#ifdef __FreeBSD__ +-#define _XOPEN_SOURCE +-#else + #define _XOPEN_SOURCE 600 +-#endif + + #include "gmt.h" + Copied: branches/2017Q3/graphics/gmt/files/patch-src-grdmath.c (from r448283, head/graphics/gmt/files/patch-src-grdmath.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/graphics/gmt/files/patch-src-grdmath.c Sat Aug 19 14:39:02 2017 (r448315, copy of r448283, head/graphics/gmt/files/patch-src-grdmath.c) @@ -0,0 +1,14 @@ +--- src/grdmath.c.orig 2016-03-07 01:35:42 UTC ++++ src/grdmath.c +@@ -51,11 +51,7 @@ + */ + + /* Circumvent Solaris problem. See bug #817 */ +-#ifdef __FreeBSD__ +-#define _XOPEN_SOURCE +-#else + #define _XOPEN_SOURCE 600 +-#endif + + #include "gmt.h" + Copied: branches/2017Q3/graphics/gmt/files/patch-src-misc-gmtdigitize.c (from r448283, head/graphics/gmt/files/patch-src-misc-gmtdigitize.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/graphics/gmt/files/patch-src-misc-gmtdigitize.c Sat Aug 19 14:39:02 2017 (r448315, copy of r448283, head/graphics/gmt/files/patch-src-misc-gmtdigitize.c) @@ -0,0 +1,14 @@ +--- src/misc/gmtdigitize.c.orig 2016-03-07 01:35:42 UTC ++++ src/misc/gmtdigitize.c +@@ -38,11 +38,7 @@ + */ + + /* Circumvent Solaris problem. See bug #817 */ +-#ifdef __FreeBSD__ +-#define _XOPEN_SOURCE +-#else + #define _XOPEN_SOURCE 600 +-#endif + + #ifdef HAVE_UNISTD_H + #include