svn commit: r443786 - head/print/texlive-base

Justin Hibbits jhibbits at FreeBSD.org
Sat Jun 17 20:10:27 UTC 2017


Author: jhibbits (src committer)
Date: Sat Jun 17 20:10:26 2017
New Revision: 443786
URL: https://svnweb.freebsd.org/changeset/ports/443786

Log:
  Fix print/texlive-base build for powerpc and powerpc64
  
  print/texlive-base depends on devel/icu, which uses C++11 and links against
  newer libstdc++ when built with gcc.  All ports linking against some of the icu
  libraries need to be built with a C++11 compiler, to link against the correct
  libstdc++.
  
  PR:		215770
  Approved by:	swills

Modified:
  head/print/texlive-base/Makefile

Modified: head/print/texlive-base/Makefile
==============================================================================
--- head/print/texlive-base/Makefile	Sat Jun 17 19:59:31 2017	(r443785)
+++ head/print/texlive-base/Makefile	Sat Jun 17 20:10:26 2017	(r443786)
@@ -26,12 +26,11 @@ LIB_DEPENDS=	libicuio.so:devel/icu \
 		libpoppler.so:graphics/poppler \
 		libpotrace.so:graphics/libpotrace
 
-BROKEN_powerpc64=	fails to configure: checking requested system `icu' library... failed
-
 CONFLICTS_INSTALL=	texlive-texmf-201[234]*
 
 USE_TEX=	web2c kpathsea ptexenc tlmgr texhash-bootstrap
-USES=		ghostscript pkgconfig perl5 python:run shebangfix tar:xz
+USES=		compiler:c++11-lib ghostscript pkgconfig perl5 \
+		python:run shebangfix tar:xz
 USE_PERL5=	run
 # during build phase gnu configure is run a lot
 MAKE_ENV+=	CONFIG_SITE=${CONFIG_SITE}


More information about the svn-ports-all mailing list