Qt 6.10.1 edition. These ports are known to directly use or link to a library that uses the Qt private API and must be rebuilt with every Qt update. Qt *public* API/ABI compatability is excellent, so most consumers don't need to necessarily be rebuilt between patch or even minor releases, but use of the private API breaks this compatibility between even patch releases and its use is highly discouraged. This list [1] is based on histortical data. We don't have time to revisit every port on the list with each Qt update, so if your port has dropped Qt private headers and was bumped in error, please remove it yourself if you have write access to the Wiki or alert someone on kde@. [1] https://wiki.freebsd.org/KDE/Qt
90 lines
2.9 KiB
Makefile
90 lines
2.9 KiB
Makefile
PORTNAME= labplot
|
|
DISTVERSION= 2.12.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= math kde
|
|
MASTER_SITES= KDE/stable/${PORTNAME}/
|
|
DIST_SUBDIR= KDE/${PORTNAME}
|
|
|
|
PATCH_SITES= https://invent.kde.org/education/labplot/-/commit/
|
|
PATCHFILES+= b0e233b6b20134177af40e8904b593b8dbc18ada.patch:-p1 # Fix configure with Qt 6.10
|
|
PATCHFILES+= c2db2ec28aa8958f7041ae5cd03ddae9f44e5aa3.patch:-p1 # Fix build with Qt 6.10
|
|
PATCHFILES+= c70e8e89249cd04c4e0e5f456257e4d0f026d8d0.patch:-p1 # Fix configure with Eigen 5.x
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Data plotting and function analysis tool by KDE
|
|
WWW= https://labplot.kde.org/
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-2.0-or-later.txt
|
|
|
|
LIB_DEPENDS= libQXlsxQt6.so:devel/qxlsx@qt6 \
|
|
libgsl.so:math/gsl \
|
|
liblz4.so:archivers/liblz4 \
|
|
libmarkdown.so:textproc/discount \
|
|
libpoppler.so:graphics/poppler \
|
|
libpoppler-qt6.so:graphics/poppler-qt6 \
|
|
libzstd.so:archivers/zstd
|
|
|
|
USES= bison cmake compiler:c++17-lang desktop-file-utils eigen:3 \
|
|
gettext kde:6 pkgconfig qt:6 shared-mime-info tar:xz xorg
|
|
USE_KDE= archive colorscheme completion config configwidgets coreaddons \
|
|
crash i18n iconthemes kio newstuff parts purpose service \
|
|
syntaxhighlighting textwidgets userfeedback widgetsaddons \
|
|
xmlgui \
|
|
doctools:build ecm:build
|
|
USE_QT= base mqtt serialport svg
|
|
USE_XORG= x11 xcb
|
|
|
|
CXXFLAGS+= -Wno-error=undef
|
|
|
|
PLIST_SUB= SHLIB_VER=2.12.0
|
|
|
|
OPTIONS_DEFINE= CANTOR FITS FFTW3 HDF5 LIBCERF MATLAB NETCDF ORCUS \
|
|
ORIGINLAB READSTAT
|
|
OPTIONS_DEFAULT:= ${OPTIONS_DEFINE}
|
|
|
|
CANTOR_DESC= KDE Cantor support
|
|
CANTOR_LIB_DEPENDS= libcantorlibs.so:math/cantor \
|
|
libspectre.so:print/libspectre
|
|
CANTOR_CMAKE_BOOL= ENABLE_CANTOR
|
|
|
|
FFTW3_DESC= Speedier FFTs in the numerical and stats lib (NSL)
|
|
FFTW3_LIB_DEPENDS= libfftw3.so:math/fftw3
|
|
FFTW3_CMAKE_BOOL= ENABLE_FFTW
|
|
|
|
FITS_DESC= Flexible Image Transport System (FITS) data support
|
|
FITS_LIB_DEPENDS= libcfitsio.so:astro/cfitsio
|
|
FITS_CMAKE_BOOL= ENABLE_FITS
|
|
|
|
HDF5_DESC= Reading and writing self-describing array data
|
|
HDF5_LIB_DEPENDS= libhdf5.so:science/hdf5
|
|
HDF5_CMAKE_BOOL= ENABLE_HDF5
|
|
|
|
LIBCERF_DESC= Complex error functions support
|
|
LIBCERF_LIB_DEPENDS= libcerf.so:math/libcerf
|
|
LIBCERF_CMAKE_BOOL= ENABLE_LIBCERF
|
|
|
|
MATLAB_DESC= MATLAB MAT file support
|
|
MATLAB_LIB_DEPENDS= libmatio.so:math/matio
|
|
MATLAB_CMAKE_BOOL= ENABLE_MATIO
|
|
|
|
NETCDF_DESC= Interfaces for array-oriented data access
|
|
NETCDF_LIB_DEPENDS= libnetcdf.so:science/netcdf
|
|
NETCDF_CMAKE_BOOL= ENABLE_NETCDF
|
|
|
|
ORCUS_DESC= Spreadsheet processing filters (via liborcus)
|
|
ORCUS_LIB_DEPENDS= libixion-0.20.so:textproc/libixion \
|
|
liborcus-0.20.so:devel/liborcus
|
|
ORCUS_CMAKE_BOOL= ENABLE_ORCUS
|
|
|
|
ORIGINLAB_DESC= OriginLab project files support
|
|
ORIGINLAB_LIB_DEPENDS= liborigin.so:math/liborigin
|
|
ORIGINLAB_CMAKE_BOOL= ENABLE_LIBORIGIN
|
|
|
|
READSTAT_DESC= SAS, SPSS, Stata data support
|
|
READSTAT_LIB_DEPENDS= libreadstat.so:math/readstat
|
|
READSTAT_USES= iconv
|
|
READSTAT_CMAKE_BOOL= ENABLE_READSTAT
|
|
|
|
.include <bsd.port.mk>
|