mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
863166cc82
C++11 isn't ABI-compatible with C++98 on GCC platforms, so build the port using lang/gcc which since r449590 defaults to C++14. This should fix C++11 consumers like www/firefox. ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::SetDictionary(char16_t const*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell13SetDictionaryEPKDs+0x4a4): undefined reference to `Hunspell::get_dict_encoding[abi:cxx11]() const' ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::Check(char16_t const*, bool*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell5CheckEPKDsPb+0x148): undefined reference to `Hunspell::spell(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*)' ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::Suggest(char16_t const*, char16_t***, unsigned int*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell7SuggestEPKDsPPPDsPj+0x16c): undefined reference to `Hunspell::suggest(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' Submitted by: jhibbits (based on) Differential Revision: https://reviews.freebsd.org/D12515
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# Created by: janos.mohacsi@bsd.hu
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hunspell
|
|
PORTVERSION= 1.6.2
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= textproc
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= office@FreeBSD.org
|
|
COMMENT= Improved spell-checker for Hungarian and other languages
|
|
|
|
LICENSE= GPLv2+ LGPL21+ MPL11
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_GPLv2+ = ${_LICENSE_STORE}/GPLv2
|
|
LICENSE_FILE_LGPL21+ = ${_LICENSE_STORE}/LGPL21
|
|
LICENSE_FILE_MPL11= ${WRKSRC}/COPYING.MPL
|
|
|
|
CONFLICTS_INSTALL= tinker-[0-9]*
|
|
CONFIGURE_ARGS= --disable-nls ${ICONV_CONFIGURE_ARG} --with-readline --with-ui
|
|
GNU_CONFIGURE= yes
|
|
USES= autoreconf compiler:c++11-lib libtool:keepla pathfix \
|
|
iconv ncurses readline shebangfix perl5
|
|
USE_GITHUB= yes
|
|
SHEBANG_FILES= src/tools/ispellaff2myspell
|
|
USE_LDCONFIG= yes
|
|
USE_PERL5= run
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PLIST_SUB= SHLIB_VER=${PORTVERSION:R}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/src/tools/hunspell.cxx
|
|
|
|
makepatch-clean:
|
|
@${RM} ${WRKSRC}/tests/suggestiontest/Makefile.orig
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
# XXX Don't override definition in Mk/bsd.port.mk
|
|
makepatch: makepatch-clean
|