From owner-svn-ports-all@freebsd.org Thu Aug 17 16:01:07 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 B598FDC6DD0; Thu, 17 Aug 2017 16:01:07 +0000 (UTC) (envelope-from rakuco@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 7CEB67CAD8; Thu, 17 Aug 2017 16:01:07 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HG165j004825; Thu, 17 Aug 2017 16:01:06 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HG16BC004824; Thu, 17 Aug 2017 16:01:06 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201708171601.v7HG16BC004824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 17 Aug 2017 16:01:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448135 - branches/2017Q3/lang/cint X-SVN-Group: ports-branches X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: branches/2017Q3/lang/cint X-SVN-Commit-Revision: 448135 X-SVN-Commit-Repository: ports 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: Thu, 17 Aug 2017 16:01:07 -0000 Author: rakuco Date: Thu Aug 17 16:01:06 2017 New Revision: 448135 URL: https://svnweb.freebsd.org/changeset/ports/448135 Log: MFH: r447876 Make the port respect CFLAGS and CXXFLAGS. Bump PORTREVISION since this changes the flags the port is built with. This is step 1 towards making the port build with GCC 6. PR: 217008 Approved by: maintainer timeout (fjoe, 16 days) Approved by: ports-secteam (feld) Modified: branches/2017Q3/lang/cint/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/lang/cint/Makefile ============================================================================== --- branches/2017Q3/lang/cint/Makefile Thu Aug 17 16:00:06 2017 (r448134) +++ branches/2017Q3/lang/cint/Makefile Thu Aug 17 16:01:06 2017 (r448135) @@ -3,7 +3,7 @@ PORTNAME= cint PORTVERSION= 5.18.00 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= lang MASTER_SITES= http://root.cern.ch/drupal/sites/default/files/ @@ -15,7 +15,8 @@ BROKEN_powerpc64= does not build: cint/include/iosenum BUILD_DEPENDS= bash:shells/bash HAS_CONFIGURE= yes -CONFIGURE_ENV= CC="${CC}" CXX="${CXX}" LDFLAGS="${LDFLAGS}" +CONFIGURE_ENV= CC="${CC}" CXX="${CXX}" LDFLAGS="${LDFLAGS}" \ + CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" USE_GCC= yes USES= gmake readline tar:tgz USE_LDCONFIG= ${PREFIX}/lib/cint