diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-11-28 17:16:10 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-11-28 17:16:10 +0800 |
commit | 84b2709c2c8bd8f7ac24a3b2bbd3dc6ee0f7e6f4 (patch) | |
tree | 91d312b624b3a5b16392e397f75f32672ac6a568 /editors | |
parent | f6fc5925f91c5d44e7aa1846c2a4751ceb8e2671 (diff) | |
download | freebsd-ports-gnome-84b2709c2c8bd8f7ac24a3b2bbd3dc6ee0f7e6f4.tar.gz freebsd-ports-gnome-84b2709c2c8bd8f7ac24a3b2bbd3dc6ee0f7e6f4.tar.zst freebsd-ports-gnome-84b2709c2c8bd8f7ac24a3b2bbd3dc6ee0f7e6f4.zip |
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
Diffstat (limited to 'editors')
-rw-r--r-- | editors/texmaker/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/texmaker/Makefile b/editors/texmaker/Makefile index bf8715c036c2..1a499d38876b 100644 --- a/editors/texmaker/Makefile +++ b/editors/texmaker/Makefile @@ -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} |