ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
55 lines
1.5 KiB
Makefile
55 lines
1.5 KiB
Makefile
# Created by: Jonathan Chen <jonc@chen.org.nz>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= psi
|
|
PORTVERSION= 1.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= SF/${PORTNAME}/Psi/${PORTVERSION}
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Qt-based Jabber (XMPP) client
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libidn.so:dns/libidn \
|
|
libminizip.so:archivers/minizip \
|
|
libqca-qt5.so:devel/qca
|
|
|
|
USES= cmake compiler:c++11-lang desktop-file-utils pkgconfig \
|
|
qt:5 tar:xz
|
|
USE_QT= concurrent core dbus gui multimedia network svg widgets \
|
|
x11extras xml buildtools_build qmake_build imageformats_run
|
|
USE_XORG= ice sm x11 xcb xext xscrnsaver
|
|
|
|
CMAKE_ARGS= -DIDN_LIBRARY:FILEPATH="${LOCALBASE}/lib/libidn.so" \
|
|
-DIDN_INCLUDE_DIR:PATH="${LOCALBASE}/include"
|
|
|
|
OPTIONS_DEFINE= WEBKIT
|
|
OPTIONS_RADIO= SPELLCHECK
|
|
OPTIONS_RADIO_SPELLCHECK= HUNSPELL ENCHANT
|
|
SPELLCHECK_DESC= Spell checker backend
|
|
OPTIONS_DEFAULT= HUNSPELL
|
|
OPTIONS_SUB= yes
|
|
|
|
WEBKIT_USE= QT=webkit
|
|
WEBKIT_CMAKE_BOOL= ENABLE_WEBKIT
|
|
|
|
HUNSPELL_LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell
|
|
HUNSPELL_CMAKE_BOOL= USE_HUNSPELL
|
|
|
|
ENCHANT_DESC= Spell checking support via Enchant
|
|
ENCHANT_LIB_DEPENDS= libenchant.so:textproc/enchant
|
|
ENCHANT_CMAKE_BOOL= USE_ENCHANT
|
|
|
|
post-patch:
|
|
# Replace original Hunspell implementation with better alternative
|
|
@${CP} ${FILESDIR}/hunspellchecker.* \
|
|
${WRKSRC}/src/libpsi/tools/spellchecker
|
|
# Avoid conflict with C++20 <version> by adding .txt suffix
|
|
@${MV} ${WRKSRC}/version ${WRKSRC}/version.txt
|
|
@${REINPLACE_CMD} -i .c++20 's,SOURCE_DIR}/version,&.txt,' \
|
|
${WRKSRC}/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|