svn commit: r427290 - head/editors/texmaker
Jan Beich
jbeich at FreeBSD.org
Mon Nov 28 09:16:12 UTC 2016
Author: jbeich
Date: Mon Nov 28 09:16:10 2016
New Revision: 427290
URL: https://svnweb.freebsd.org/changeset/ports/427290
Log:
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
MFH: 2016Q4
Modified:
head/editors/texmaker/Makefile (contents, props changed)
Modified: head/editors/texmaker/Makefile
==============================================================================
--- head/editors/texmaker/Makefile Mon Nov 28 09:00:44 2016 (r427289)
+++ head/editors/texmaker/Makefile Mon Nov 28 09:16:10 2016 (r427290)
@@ -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}
More information about the svn-ports-all
mailing list