freebsd-ports/math/labplot/Makefile
Tobias C. Berner b44569f137 KDE: It goes to 6!
This megacommit merges all the work from https://github.com/freebsd/freebsd-ports-kde/tree/kde-it_goes_to_6
Specifically:
- KDE Plasma 6 ports updated to 6.2.5
- KDE Applications ports updated to 24.12.0
- Development ports of KDE Applications removed
- A lot of various ports switched to Qt 6 by default
- Some KDE Frameworks 5 and Plasma 5 ports are adapted to be coinstallable
  with their 6 counterparts

PR:		284351
Exp-run by:	antoine
Pull Request:	https://github.com/freebsd/freebsd-ports/pull/341

Co-authored-by:	Max Brazhnikov <makc@FreeBSD.org>
Co-authored-by:	Kenneth Raplee <kenrap@kennethraplee.com>
Co-authored-by:	Jason E. Hale <jhale@FreeBSD.org>
Co-authored-by:	Gleb Popov <arrowd@FreeBSD.org>
2025-02-03 20:02:42 +03:00

90 lines
3.1 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:NCANTOR}
CANTOR_DESC= KDE Cantor support
CANTOR_LIB_DEPENDS= libcantorlibs.so:math/cantor \
libspectre.so:print/libspectre
CANTOR_CMAKE_BOOL= ENABLE_CANTOR
CANTOR_IGNORE= has to be ported to KF6/Qt6 for Cantor support
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>