mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 01:16:28 -04:00
Support everything that FreeBSD currently has to offer.
We don't have ports for Mqtt[5|6] nor for qt[5|6]advanceddocking
at time of commit.
Upstream seems to have had a problem with readstat on FreeBSD and
disabled it by default [1], but the issue has not manifested here.
Readstat support is now optional in case there is a problem that
needs to be investigated further.
Improve options descriptions, but keep them inline.
[1] b2c4bf2710
Latest announcement (2.11.0):
https://labplot.kde.org/2024/07/16/labplot-2-11-released/
89 lines
3 KiB
Makefile
89 lines
3 KiB
Makefile
PORTNAME= labplot
|
|
DISTVERSION= 2.11.1
|
|
CATEGORIES= math kde
|
|
MASTER_SITES= KDE/stable/${PORTNAME}/
|
|
|
|
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= libKUserFeedbackCore.so:deskutils/kuserfeedback \
|
|
libQXlsxQt5.so:devel/qxlsx@qt5 \
|
|
libgsl.so:math/gsl \
|
|
liblz4.so:archivers/liblz4 \
|
|
libmarkdown.so:textproc/discount \
|
|
libpoppler.so:graphics/poppler \
|
|
libpoppler-qt5.so:graphics/poppler-qt5
|
|
|
|
USES= bison cmake compiler:c++17-lang desktop-file-utils eigen:3 \
|
|
kde:5 pkgconfig qt:5 shared-mime-info tar:xz xorg
|
|
USE_KDE= archive attica auth bookmarks codecs completion config \
|
|
configwidgets coreaddons crash i18n iconthemes itemviews \
|
|
jobwidgets kio newstuff parts purpose service solid \
|
|
sonnet syntaxhighlighting textwidgets widgetsaddons \
|
|
windowsystem xmlgui \
|
|
doctools:build ecm:build
|
|
USE_QT= concurrent core dbus gui network printsupport serialport \
|
|
sql svg widgets xml \
|
|
buildtools:build qmake:build testlib:build
|
|
USE_XORG= x11 xcb
|
|
|
|
# Dark magic to make CMake oblivious to the presence of Qt6 components, which
|
|
# will exist even when building in a clean environment due to the dependency
|
|
# chain. Labplot 2.11+ is now Qt6/KF6-ready and eagerly wants to use them by
|
|
# default, but we're not quite there yet.
|
|
CMAKE_ARGS= -DCMAKE_IGNORE_PATH:PATH="${LOCALBASE}/lib/cmake/Qt6"
|
|
|
|
DATADIR= ${PREFIX}/share/labplot2
|
|
|
|
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.18.so:textproc/libixion \
|
|
liborcus-0.18.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>
|