Date: Tue, 29 Nov 2016 00:50:33 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427352 - branches/2016Q4/editors/texmaker Message-ID: <201611290050.uAT0oX6d058551@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Tue Nov 29 00:50:33 2016 New Revision: 427352 URL: https://svnweb.freebsd.org/changeset/ports/427352 Log: MFH: r427290 editors/texmaker: fix Hunspell ABI mismatch The port passes -I. -I/usr/local/include/hunspell ... -I/usr/local/include but then proceeds to #include "hunspell/hunspell.hxx" which ends up picking bundled version. #include "hunspell.hxx" would be more correct but would require adjusting texmaker.pro to add -I./hunspell for OS X. PR: 214848 Submitted by: rakuco Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/editors/texmaker/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/editors/texmaker/Makefile ============================================================================== --- branches/2016Q4/editors/texmaker/Makefile Tue Nov 29 00:49:28 2016 (r427351) +++ branches/2016Q4/editors/texmaker/Makefile Tue Nov 29 00:50:33 2016 (r427352) @@ -3,7 +3,7 @@ PORTNAME= texmaker PORTVERSION= 4.5 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 3 CATEGORIES= editors MASTER_SITES= http://www.xm1math.net/texmaker/ @@ -20,6 +20,7 @@ _USE_QT4= gui network xml webkit \ _USE_QT5= concurrent network printsupport script webkit widgets \ xml buildtools_build USE_TEX= latex dvipsk +EXTRACT_AFTER_ARGS= --exclude hunspell QMAKE_ARGS= ICONDIR=${PREFIX}/share/pixmaps \ DESKTOPDIR=${DESKTOPDIR}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611290050.uAT0oX6d058551>