svn commit: r447876 - head/lang/cint

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Aug 13 11:10:48 UTC 2017


Author: rakuco
Date: Sun Aug 13 11:10:47 2017
New Revision: 447876
URL: https://svnweb.freebsd.org/changeset/ports/447876

Log:
  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)
  MFH:		2017Q3

Modified:
  head/lang/cint/Makefile

Modified: head/lang/cint/Makefile
==============================================================================
--- head/lang/cint/Makefile	Sun Aug 13 11:05:24 2017	(r447875)
+++ head/lang/cint/Makefile	Sun Aug 13 11:10:47 2017	(r447876)
@@ -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


More information about the svn-ports-all mailing list