From 5d4315bc1ad37af5275c7257368663f31e300c72 Mon Sep 17 00:00:00 2001 From: rsadowski Date: Sat, 7 Jan 2023 20:37:25 +0000 Subject: [PATCH] Import labplot-2.9.0, OK kn@ LabPlot is a program for two- and three-dimensional graphical presentation of data sets and functions. LabPlot allows you to work with multiple plots which each can have multiple graphs. The graphs can be produced from data or from functions. --- math/labplot/Makefile | 98 ++++ math/labplot/distinfo | 2 + .../patches/patch-src_backend_gsl_parser_y | 15 + math/labplot/pkg/DESCR | 4 + math/labplot/pkg/PLIST | 451 ++++++++++++++++++ 5 files changed, 570 insertions(+) create mode 100644 math/labplot/Makefile create mode 100644 math/labplot/distinfo create mode 100644 math/labplot/patches/patch-src_backend_gsl_parser_y create mode 100644 math/labplot/pkg/DESCR create mode 100644 math/labplot/pkg/PLIST diff --git a/math/labplot/Makefile b/math/labplot/Makefile new file mode 100644 index 00000000000..420d6e7513a --- /dev/null +++ b/math/labplot/Makefile @@ -0,0 +1,98 @@ +COMMENT = data visualization and analysis software + +VERSION = 2.9.0 +DISTNAME = labplot-${VERSION} + +CATEGORIES = math x11 + +HOMEPAGE = https://labplot.kde.org/ + +MAINTAINER = Rafael Sadowski + +# LGPL, GPL and many others +PERMIT_PACKAGE = Yes + +WANTLIB += ${COMPILER_LIBCXX} KF5Archive KF5Attica KF5Auth KF5AuthCore +WANTLIB += KF5Bookmarks KF5Codecs KF5Completion KF5ConfigCore +WANTLIB += KF5ConfigGui KF5ConfigWidgets KF5CoreAddons KF5Crash +WANTLIB += KF5I18n KF5IconThemes KF5ItemViews KF5JobWidgets KF5KIOCore +WANTLIB += KF5KIOFileWidgets KF5KIOGui KF5KIOWidgets KF5NewStuff +WANTLIB += KF5NewStuffCore KF5Parts KF5Service KF5Solid KF5SonnetUi +WANTLIB += KF5SyntaxHighlighting KF5TextWidgets KF5WidgetsAddons +WANTLIB += KF5WindowSystem KF5XmlGui KUserFeedbackCore KUserFeedbackWidgets +WANTLIB += Qt5Concurrent Qt5Core Qt5DBus Qt5Gui Qt5Network Qt5PrintSupport +WANTLIB += Qt5SerialPort Qt5Sql Qt5Svg Qt5Widgets Qt5Xml X11 c +WANTLIB += cantorlibs cerf cfitsio fftw3 gsl gslcblas hdf5 lz4 +WANTLIB += m markdown matio netcdf poppler poppler-qt5 spectre +WANTLIB += z + +MASTER_SITES = https://download.kde.org/stable/labplot/${VERSION}/ +EXTRACT_SUFX = .tar.xz + +MODULES = devel/kf5 + +RUN_DEPENDS = devel/desktop-file-utils \ + devel/gettext,-tools \ + misc/shared-mime-info \ + x11/gtk+3,-guic + +BUILD_DEPENDS = devel/bison \ + devel/desktop-file-utils \ + devel/gettext,-tools \ + devel/kf5/kdoctools + +LIB_DEPENDS = archivers/lz4 \ + devel/gsl \ + devel/kf5/karchive \ + devel/kf5/kauth \ + devel/kf5/kcodecs \ + devel/kf5/kcompletion \ + devel/kf5/kconfig \ + devel/kf5/kconfigwidgets \ + devel/kf5/kcoreaddons \ + devel/kf5/kcrash \ + devel/kf5/ki18n \ + devel/kf5/kiconthemes \ + devel/kf5/kio \ + devel/kf5/kitemviews \ + devel/kf5/kjobwidgets \ + devel/kf5/knewstuff \ + devel/kf5/kparts \ + devel/kf5/kservice \ + devel/kf5/ktextwidgets \ + devel/kf5/kwidgetsaddons \ + devel/kf5/kxmlgui \ + devel/kf5/solid \ + devel/kf5/sonnet \ + math/cfitsio \ + math/fftw3 \ + print/poppler,-qt5 \ + textproc/discount \ + x11/qt5/qtserialport \ + x11/qt5/qtsvg + +# OPTIONAL packages +LIB_DEPENDS += devel/kf5/syntax-highlighting \ + math/hdf5 \ + math/libcerf \ + math/matio \ + math/netcdf \ + productivity/kuserfeedback \ + x11/kde-applications/cantor + +#-- The following OPTIONAL packages have not been found: +#* LibOrigin, A library for reading OriginLab project files, +# +#* Qt5Mqtt, Qt Module to implement MQTT protocol version 3.1 and 3.1.1, +# +#* ReadStat, A command-line tool and library for reading files from +# popular stats packages, +CONFIGURE_ARGS = -DENABLE_READSTAT=OFF +CONFIGURE_ARGS += -DENABLE_MQTT=OFF +CONFIGURE_ARGS += -DENABLE_LIBORIGIN=OFF + +CONFIGURE_ARGS += -DKDE_INSTALL_MANDIR=${WRKINST}/man + +TEST_IS_INTERACTIVE = X11 + +.include diff --git a/math/labplot/distinfo b/math/labplot/distinfo new file mode 100644 index 00000000000..639ada12bd0 --- /dev/null +++ b/math/labplot/distinfo @@ -0,0 +1,2 @@ +SHA256 (labplot-2.9.0.tar.xz) = 5aMUifC3KnDMYy4QeFBtfnvB7H28icVCjRl6FORLIfI= +SIZE (labplot-2.9.0.tar.xz) = 21413512 diff --git a/math/labplot/patches/patch-src_backend_gsl_parser_y b/math/labplot/patches/patch-src_backend_gsl_parser_y new file mode 100644 index 00000000000..cdf35b216db --- /dev/null +++ b/math/labplot/patches/patch-src_backend_gsl_parser_y @@ -0,0 +1,15 @@ +Index: src/backend/gsl/parser.y +--- src/backend/gsl/parser.y.orig ++++ src/backend/gsl/parser.y +@@ -355,7 +355,11 @@ int yylex(param *p) { + #endif + double result; + if (locale != NULL) { ++#if defined(__OpenBSD__) ++ result = strtod(s, &remain); ++#else + result = strtod_l(s, &remain, locale); ++#endif + freelocale(locale); + } else // use C locale + result = strtod(s, &remain); diff --git a/math/labplot/pkg/DESCR b/math/labplot/pkg/DESCR new file mode 100644 index 00000000000..4912e6cb08e --- /dev/null +++ b/math/labplot/pkg/DESCR @@ -0,0 +1,4 @@ +LabPlot is a program for two- and three-dimensional graphical presentation of +data sets and functions. LabPlot allows you to work with multiple plots which +each can have multiple graphs. The graphs can be produced from data or from +functions. diff --git a/math/labplot/pkg/PLIST b/math/labplot/pkg/PLIST new file mode 100644 index 00000000000..be562983df9 --- /dev/null +++ b/math/labplot/pkg/PLIST @@ -0,0 +1,451 @@ +@bin bin/labplot2 +@man man/man1/labplot2.1 +share/applications/ +share/applications/org.kde.labplot2.desktop +share/doc/HTML/ +share/doc/HTML/en/ +share/doc/HTML/en/labplot2/ +share/doc/HTML/en/labplot2/datapicker_active_curve_data_spreadsheet.png +share/doc/HTML/en/labplot2/datapicker_original_transformed_segments.png +share/doc/HTML/en/labplot2/datapicker_segments.png +share/doc/HTML/en/labplot2/example-FFT_python-1024x532.png +share/doc/HTML/en/labplot2/example-fourier_filter-1024x532.png +share/doc/HTML/en/labplot2/example-maxima_2-1024x532.png +share/doc/HTML/en/labplot2/export_spreadsheet_dialog.png +share/doc/HTML/en/labplot2/export_worksheet_dialog.png +share/doc/HTML/en/labplot2/file_data_source.png +share/doc/HTML/en/labplot2/import-dialog.png +share/doc/HTML/en/labplot2/index.cache.bz2 +share/doc/HTML/en/labplot2/index.docbook +share/doc/HTML/en/labplot2/labplot.png +share/doc/HTML/en/labplot2/matrix.png +share/doc/HTML/en/labplot2/matrix_function_values.png +share/doc/HTML/en/labplot2/pe-context-menu.png +share/doc/HTML/en/labplot2/project-explorer.png +share/doc/HTML/en/labplot2/properties.png +share/doc/HTML/en/labplot2/spreadsheet.png +share/doc/HTML/en/labplot2/spreadsheet_generate_equidistant_values.png +share/doc/HTML/en/labplot2/spreadsheet_generate_function_values.png +share/doc/HTML/en/labplot2/spreadsheet_generate_multivariant_function_values.png +share/doc/HTML/en/labplot2/spreadsheet_generate_random_values.png +share/doc/HTML/en/labplot2/sub_window_tabbed_view_interfaces.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet1.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet2.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet3.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet4.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet5.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet6.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet7.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet8.png +share/doc/HTML/en/labplot2/tutorial-spreadsheet9.png +share/doc/HTML/en/labplot2/tutorial-xy-function1.png +share/doc/HTML/en/labplot2/tutorial-xy-function10.png +share/doc/HTML/en/labplot2/tutorial-xy-function2.png +share/doc/HTML/en/labplot2/tutorial-xy-function3.png +share/doc/HTML/en/labplot2/tutorial-xy-function4.png +share/doc/HTML/en/labplot2/tutorial-xy-function5.png +share/doc/HTML/en/labplot2/tutorial-xy-function6.png +share/doc/HTML/en/labplot2/tutorial-xy-function7.png +share/doc/HTML/en/labplot2/tutorial-xy-function8.png +share/doc/HTML/en/labplot2/tutorial-xy-function9.png +share/doc/HTML/en/labplot2/workbook.png +share/doc/HTML/en/labplot2/worksheet.png +share/icons/ +share/icons/hicolor/ +share/icons/hicolor/128x128/ +share/icons/hicolor/128x128/apps/ +share/icons/hicolor/128x128/apps/labplot2.png +share/icons/hicolor/150x150/ +share/icons/hicolor/150x150/apps/ +share/icons/hicolor/150x150/apps/labplot2.png +share/icons/hicolor/16x16/ +share/icons/hicolor/16x16/apps/ +share/icons/hicolor/16x16/apps/labplot2.png +share/icons/hicolor/22x22/ +share/icons/hicolor/22x22/apps/ +share/icons/hicolor/22x22/apps/labplot2.png +share/icons/hicolor/256x256/ +share/icons/hicolor/256x256/apps/ +share/icons/hicolor/256x256/apps/labplot2.png +share/icons/hicolor/310x310/ +share/icons/hicolor/310x310/apps/ +share/icons/hicolor/310x310/apps/labplot2.png +share/icons/hicolor/32x32/ +share/icons/hicolor/32x32/apps/ +share/icons/hicolor/32x32/apps/labplot2.png +share/icons/hicolor/44x44/ +share/icons/hicolor/44x44/apps/ +share/icons/hicolor/44x44/apps/labplot2.png +share/icons/hicolor/48x48/ +share/icons/hicolor/48x48/apps/ +share/icons/hicolor/48x48/apps/labplot2.png +share/icons/hicolor/512x512/ +share/icons/hicolor/512x512/apps/ +share/icons/hicolor/512x512/apps/labplot2.png +share/icons/hicolor/64x64/ +share/icons/hicolor/64x64/apps/ +share/icons/hicolor/64x64/apps/labplot2.png +share/icons/hicolor/scalable/ +share/icons/hicolor/scalable/apps/ +share/icons/hicolor/scalable/apps/labplot-1x-zoom.svg +share/icons/hicolor/scalable/apps/labplot-2x-zoom.svg +share/icons/hicolor/scalable/apps/labplot-3x-zoom.svg +share/icons/hicolor/scalable/apps/labplot-4x-zoom.svg +share/icons/hicolor/scalable/apps/labplot-5x-zoom.svg +share/icons/hicolor/scalable/apps/labplot-MQTT.svg +share/icons/hicolor/scalable/apps/labplot-TeX-logo.svg +share/icons/hicolor/scalable/apps/labplot-auto-scale-all.svg +share/icons/hicolor/scalable/apps/labplot-auto-scale-x.svg +share/icons/hicolor/scalable/apps/labplot-auto-scale-y.svg +share/icons/hicolor/scalable/apps/labplot-axis-horizontal.svg +share/icons/hicolor/scalable/apps/labplot-axis-vertical.svg +share/icons/hicolor/scalable/apps/labplot-back.svg +share/icons/hicolor/scalable/apps/labplot-cursor-arrow.svg +share/icons/hicolor/scalable/apps/labplot-editbreaklayout.svg +share/icons/hicolor/scalable/apps/labplot-editgrid.svg +share/icons/hicolor/scalable/apps/labplot-edithlayout.svg +share/icons/hicolor/scalable/apps/labplot-editvlayout.svg +share/icons/hicolor/scalable/apps/labplot-format-text-symbol.svg +share/icons/hicolor/scalable/apps/labplot-forward.svg +share/icons/hicolor/scalable/apps/labplot-json-array.svg +share/icons/hicolor/scalable/apps/labplot-json-object.svg +share/icons/hicolor/scalable/apps/labplot-matrix-new.svg +share/icons/hicolor/scalable/apps/labplot-matrix.svg +share/icons/hicolor/scalable/apps/labplot-maximize.svg +share/icons/hicolor/scalable/apps/labplot-minimize.svg +share/icons/hicolor/scalable/apps/labplot-plot-axis-points.svg +share/icons/hicolor/scalable/apps/labplot-shift-down-y.svg +share/icons/hicolor/scalable/apps/labplot-shift-left-x.svg +share/icons/hicolor/scalable/apps/labplot-shift-right-x.svg +share/icons/hicolor/scalable/apps/labplot-shift-up-y.svg +share/icons/hicolor/scalable/apps/labplot-spreadsheet-new.svg +share/icons/hicolor/scalable/apps/labplot-spreadsheet.svg +share/icons/hicolor/scalable/apps/labplot-transform-move.svg +share/icons/hicolor/scalable/apps/labplot-workbook-new.svg +share/icons/hicolor/scalable/apps/labplot-workbook.svg +share/icons/hicolor/scalable/apps/labplot-worksheet-new.svg +share/icons/hicolor/scalable/apps/labplot-worksheet.svg +share/icons/hicolor/scalable/apps/labplot-xy-curve-points.svg +share/icons/hicolor/scalable/apps/labplot-xy-curve-segments.svg +share/icons/hicolor/scalable/apps/labplot-xy-curve.svg +share/icons/hicolor/scalable/apps/labplot-xy-equation-curve.svg +share/icons/hicolor/scalable/apps/labplot-xy-fit-curve.svg +share/icons/hicolor/scalable/apps/labplot-xy-plot-four-axes.svg +share/icons/hicolor/scalable/apps/labplot-xy-plot-two-axes-centered-origin.svg +share/icons/hicolor/scalable/apps/labplot-xy-plot-two-axes-centered.svg +share/icons/hicolor/scalable/apps/labplot-xy-plot-two-axes.svg +share/icons/hicolor/scalable/apps/labplot-zoom-in-x.svg +share/icons/hicolor/scalable/apps/labplot-zoom-in-y.svg +share/icons/hicolor/scalable/apps/labplot-zoom-out-x.svg +share/icons/hicolor/scalable/apps/labplot-zoom-out-y.svg +share/icons/hicolor/scalable/apps/labplot-zoom-select-x.svg +share/icons/hicolor/scalable/apps/labplot-zoom-select-y.svg +share/icons/hicolor/scalable/apps/labplot-zoom-select.svg +share/icons/hicolor/scalable/apps/labplot-zoom.svg +share/icons/hicolor/scalable/apps/labplot2.svgz +share/kxmlgui5/ +share/kxmlgui5/labplot2/ +share/kxmlgui5/labplot2/labplot2ui.rc +share/labplot2/ +share/labplot2/application-x-labplot2.ico +share/labplot2/color-schemes/ +share/labplot2/color-schemes/Breeze.colors +share/labplot2/color-schemes/BreezeDark.colors +share/labplot2/color-schemes/BreezeHighContrast.colors +share/labplot2/color-schemes/Honeycomb.colors +share/labplot2/color-schemes/Norway.colors +share/labplot2/color-schemes/ObsidianCoast.colors +share/labplot2/color-schemes/Oxygen.colors +share/labplot2/color-schemes/OxygenCold.colors +share/labplot2/color-schemes/Steel.colors +share/labplot2/color-schemes/WontonSoup.colors +share/labplot2/color-schemes/Zion.colors +share/labplot2/color-schemes/ZionReversed.colors +share/labplot2/colormaps/ +share/labplot2/colormaps/ColorBrewer (Diverging).json +share/labplot2/colormaps/ColorBrewer (Qualitative).json +share/labplot2/colormaps/ColorBrewer (Sequential).json +share/labplot2/colormaps/ColorCET (Colour Blind).json +share/labplot2/colormaps/ColorCET (Cyclic).json +share/labplot2/colormaps/ColorCET (Diverging).json +share/labplot2/colormaps/ColorCET (Isoluminant).json +share/labplot2/colormaps/ColorCET (Linear).json +share/labplot2/colormaps/ColorCET (Rainbow).json +share/labplot2/colormaps/ColormapCollections.json +share/labplot2/colormaps/Diverging Color Maps for Scientific Visualization.json +share/labplot2/colormaps/Scientific Colour Maps (Cyclic).json +share/labplot2/colormaps/Scientific Colour Maps (Diverging).json +share/labplot2/colormaps/Scientific Colour Maps (Multi-sequential).json +share/labplot2/colormaps/Scientific Colour Maps (Sequential).json +share/labplot2/colormaps/cmocean (Circular).json +share/labplot2/colormaps/cmocean (Diverging).json +share/labplot2/colormaps/cmocean (Multi-sequential).json +share/labplot2/colormaps/cmocean (Sequential).json +share/labplot2/colormaps/viridis (Sequential).json +share/labplot2/datasets/ +share/labplot2/datasets/DASL.json +share/labplot2/datasets/DatasetCategories.json +share/labplot2/datasets/DatasetCollections.json +share/labplot2/datasets/JSEDataArchive.json +share/labplot2/datasets/OzDASL.json +share/labplot2/datasets/README.md +share/labplot2/datasets/Rdatasets.json +share/labplot2/datasets/StatLib.json +share/labplot2/examples/ +share/labplot2/examples/Analysis/ +share/labplot2/examples/Analysis/Fit/ +share/labplot2/examples/Analysis/Fit/ENSO.lml +share/labplot2/examples/Analysis/Fourier Filter/ +share/labplot2/examples/Analysis/Fourier Filter/SOS Morse Signal.lml +share/labplot2/examples/Analysis/Hilbert Transformation/ +share/labplot2/examples/Analysis/Hilbert Transformation/Time response of a super regenerative receiver.lml +share/labplot2/examples/Analysis/Smooth/ +share/labplot2/examples/Analysis/Smooth/Data = Smooth + Rough.lml +share/labplot2/examples/Computing/ +share/labplot2/examples/Computing/Maxima/ +share/labplot2/examples/Computing/Maxima/Duffing Oscillator in Maxima.lml +share/labplot2/examples/Computing/Maxima/Maxima Tutorial for Beginners.lml +share/labplot2/examples/ExampleCollections.json +share/labplot2/examples/General/ +share/labplot2/examples/General/Anatomy of a Box Plot.lml +share/labplot2/examples/General/Basic Plots.lml +share/labplot2/examples/General/Helium Rydberg Spectrum.lml +share/labplot2/examples/General/Hertzsprung-Russel Diagram.lml +share/labplot2/examples/General/Logarithmic Scales.lml +share/labplot2/examples/General/Mathematical Functions.lml +share/labplot2/examples/General/Multi-Ranges.lml +share/labplot2/examples/General/Multicopter.lml +share/labplot2/examples/General/SLOC History.lml +share/labplot2/examples/General/Space Debris.lml +share/labplot2/examples/General/Tufte's Minimal Ink Design.lml +share/labplot2/examples/Statistics/ +share/labplot2/examples/Statistics/Same Data, Different Boxplots.lml +share/labplot2/examples/Statistics/SameStats.lml +share/labplot2/labplot2.ico +share/labplot2/latex/ +share/labplot2/latex/preview.sty +share/labplot2/pics/ +share/labplot2/pics/colorchooser/ +share/labplot2/pics/colorchooser/colorchooser_hue.xpm +share/labplot2/pics/colorchooser/colorchooser_saturation.xpm +share/labplot2/pics/colorchooser/colorchooser_value.xpm +share/labplot2/pics/fit_models/ +share/labplot2/pics/fit_models/alg_sigmoid.pdf +share/labplot2/pics/fit_models/atan.pdf +share/labplot2/pics/fit_models/cauchy_lorentz1.pdf +share/labplot2/pics/fit_models/cauchy_lorentz2.pdf +share/labplot2/pics/fit_models/cauchy_lorentz3.pdf +share/labplot2/pics/fit_models/cauchy_lorentz4.pdf +share/labplot2/pics/fit_models/erf.pdf +share/labplot2/pics/fit_models/exponential1.pdf +share/labplot2/pics/fit_models/exponential2.pdf +share/labplot2/pics/fit_models/exponential3.pdf +share/labplot2/pics/fit_models/exponential4.pdf +share/labplot2/pics/fit_models/fourier1.pdf +share/labplot2/pics/fit_models/fourier2.pdf +share/labplot2/pics/fit_models/fourier3.pdf +share/labplot2/pics/fit_models/fourier4.pdf +share/labplot2/pics/fit_models/gaussian1.pdf +share/labplot2/pics/fit_models/gaussian2.pdf +share/labplot2/pics/fit_models/gaussian3.pdf +share/labplot2/pics/fit_models/gaussian4.pdf +share/labplot2/pics/fit_models/gd.pdf +share/labplot2/pics/fit_models/gompertz.pdf +share/labplot2/pics/fit_models/hill.pdf +share/labplot2/pics/fit_models/inv_exponential1.pdf +share/labplot2/pics/fit_models/logistic1.pdf +share/labplot2/pics/fit_models/logistic2.pdf +share/labplot2/pics/fit_models/logistic3.pdf +share/labplot2/pics/fit_models/logistic4.pdf +share/labplot2/pics/fit_models/logistic_function.pdf +share/labplot2/pics/fit_models/polynom1.pdf +share/labplot2/pics/fit_models/polynom2.pdf +share/labplot2/pics/fit_models/polynom3.pdf +share/labplot2/pics/fit_models/polynom4.pdf +share/labplot2/pics/fit_models/power1.pdf +share/labplot2/pics/fit_models/power2.pdf +share/labplot2/pics/fit_models/pseudovoigt11.pdf +share/labplot2/pics/fit_models/pseudovoigt12.pdf +share/labplot2/pics/fit_models/pseudovoigt13.pdf +share/labplot2/pics/fit_models/pseudovoigt14.pdf +share/labplot2/pics/fit_models/sech1.pdf +share/labplot2/pics/fit_models/sech2.pdf +share/labplot2/pics/fit_models/sech3.pdf +share/labplot2/pics/fit_models/sech4.pdf +share/labplot2/pics/fit_models/tanh.pdf +share/labplot2/pics/fit_models/voigt1.pdf +share/labplot2/pics/fit_models/voigt2.pdf +share/labplot2/pics/fit_models/voigt3.pdf +share/labplot2/pics/fit_models/voigt4.pdf +share/labplot2/pics/gsl_distributions/ +share/labplot2/pics/gsl_distributions/bernoulli.pdf +share/labplot2/pics/gsl_distributions/beta.pdf +share/labplot2/pics/gsl_distributions/binomial.pdf +share/labplot2/pics/gsl_distributions/cauchy_lorentz.pdf +share/labplot2/pics/gsl_distributions/chi_squared.pdf +share/labplot2/pics/gsl_distributions/exponential.pdf +share/labplot2/pics/gsl_distributions/exponential_power.pdf +share/labplot2/pics/gsl_distributions/fdist.pdf +share/labplot2/pics/gsl_distributions/flat.pdf +share/labplot2/pics/gsl_distributions/frechet.pdf +share/labplot2/pics/gsl_distributions/gamma.pdf +share/labplot2/pics/gsl_distributions/gaussian.pdf +share/labplot2/pics/gsl_distributions/gaussian_tail.pdf +share/labplot2/pics/gsl_distributions/geometric.pdf +share/labplot2/pics/gsl_distributions/gumbel1.pdf +share/labplot2/pics/gsl_distributions/gumbel2.pdf +share/labplot2/pics/gsl_distributions/hypergeometric.pdf +share/labplot2/pics/gsl_distributions/landau.pdf +share/labplot2/pics/gsl_distributions/laplace.pdf +share/labplot2/pics/gsl_distributions/levy.pdf +share/labplot2/pics/gsl_distributions/levy_alpha_stable.pdf +share/labplot2/pics/gsl_distributions/levy_skew_alpha_stable.pdf +share/labplot2/pics/gsl_distributions/logarithmic.pdf +share/labplot2/pics/gsl_distributions/logistic.pdf +share/labplot2/pics/gsl_distributions/lognormal.pdf +share/labplot2/pics/gsl_distributions/maxwell_boltzmann.pdf +share/labplot2/pics/gsl_distributions/negative_binomial.pdf +share/labplot2/pics/gsl_distributions/pareto.pdf +share/labplot2/pics/gsl_distributions/pascal.pdf +share/labplot2/pics/gsl_distributions/poisson.pdf +share/labplot2/pics/gsl_distributions/rayleigh.pdf +share/labplot2/pics/gsl_distributions/rayleigh_tail.pdf +share/labplot2/pics/gsl_distributions/sech.pdf +share/labplot2/pics/gsl_distributions/students_t.pdf +share/labplot2/pics/gsl_distributions/weibull.pdf +share/labplot2/splash.png +share/labplot2/themes/ +share/labplot2/themes/BlackOnLightYellow +share/labplot2/themes/BlackOnWhite +share/labplot2/themes/BlueOnBlack +share/labplot2/themes/Bright +share/labplot2/themes/Creme +share/labplot2/themes/Dark +share/labplot2/themes/DarkPastels +share/labplot2/themes/Default +share/labplot2/themes/GgplotDark +share/labplot2/themes/GgplotGrey +share/labplot2/themes/GreenOnBlack +share/labplot2/themes/GreyOnBlack +share/labplot2/themes/GreySlate +share/labplot2/themes/Monokai +share/labplot2/themes/RedOnBlack +share/labplot2/themes/Solarized +share/labplot2/themes/SolarizedLight +share/labplot2/themes/Tufte +share/labplot2/themes/screenshots/ +share/labplot2/themes/screenshots/BlackOnLightYellow.png +share/labplot2/themes/screenshots/BlackOnWhite.png +share/labplot2/themes/screenshots/BlueOnBlack.png +share/labplot2/themes/screenshots/Bright.png +share/labplot2/themes/screenshots/Creme.png +share/labplot2/themes/screenshots/Dark.png +share/labplot2/themes/screenshots/DarkPastels.png +share/labplot2/themes/screenshots/Default.png +share/labplot2/themes/screenshots/GgplotDark.png +share/labplot2/themes/screenshots/GgplotGrey.png +share/labplot2/themes/screenshots/GreenOnBlack.png +share/labplot2/themes/screenshots/GreyOnBlack.png +share/labplot2/themes/screenshots/GreySlate.png +share/labplot2/themes/screenshots/Monokai.png +share/labplot2/themes/screenshots/RedOnBlack.png +share/labplot2/themes/screenshots/Solarized.png +share/labplot2/themes/screenshots/SolarizedLight.png +share/labplot2/themes/screenshots/Tufte.png +share/labplot2/themes/screenshots/Unavailable.png +share/locale/ +share/locale/ar/ +share/locale/ar/LC_MESSAGES/ +share/locale/ar/LC_MESSAGES/labplot2.mo +share/locale/bs/ +share/locale/bs/LC_MESSAGES/ +share/locale/bs/LC_MESSAGES/labplot2.mo +share/locale/ca/ +share/locale/ca/LC_MESSAGES/ +share/locale/ca/LC_MESSAGES/labplot2.mo +share/locale/ca@valencia/ +share/locale/ca@valencia/LC_MESSAGES/ +share/locale/ca@valencia/LC_MESSAGES/labplot2.mo +share/locale/cs/ +share/locale/cs/LC_MESSAGES/ +share/locale/cs/LC_MESSAGES/labplot2.mo +share/locale/da/ +share/locale/da/LC_MESSAGES/ +share/locale/da/LC_MESSAGES/labplot2.mo +share/locale/de/ +share/locale/de/LC_MESSAGES/ +share/locale/de/LC_MESSAGES/labplot2.mo +share/locale/el/ +share/locale/el/LC_MESSAGES/ +share/locale/el/LC_MESSAGES/labplot2.mo +share/locale/en_GB/ +share/locale/en_GB/LC_MESSAGES/ +share/locale/en_GB/LC_MESSAGES/labplot2.mo +share/locale/es/ +share/locale/es/LC_MESSAGES/ +share/locale/es/LC_MESSAGES/labplot2.mo +share/locale/eu/ +share/locale/eu/LC_MESSAGES/ +share/locale/eu/LC_MESSAGES/labplot2.mo +share/locale/fi/ +share/locale/fi/LC_MESSAGES/ +share/locale/fi/LC_MESSAGES/labplot2.mo +share/locale/fr/ +share/locale/fr/LC_MESSAGES/ +share/locale/fr/LC_MESSAGES/labplot2.mo +share/locale/gl/ +share/locale/gl/LC_MESSAGES/ +share/locale/gl/LC_MESSAGES/labplot2.mo +share/locale/hu/ +share/locale/hu/LC_MESSAGES/ +share/locale/hu/LC_MESSAGES/labplot2.mo +share/locale/it/ +share/locale/it/LC_MESSAGES/ +share/locale/it/LC_MESSAGES/labplot2.mo +share/locale/nds/ +share/locale/nds/LC_MESSAGES/ +share/locale/nds/LC_MESSAGES/labplot2.mo +share/locale/nl/ +share/locale/nl/LC_MESSAGES/ +share/locale/nl/LC_MESSAGES/labplot2.mo +share/locale/pl/ +share/locale/pl/LC_MESSAGES/ +share/locale/pl/LC_MESSAGES/labplot2.mo +share/locale/pt/ +share/locale/pt/LC_MESSAGES/ +share/locale/pt/LC_MESSAGES/labplot2.mo +share/locale/pt_BR/ +share/locale/pt_BR/LC_MESSAGES/ +share/locale/pt_BR/LC_MESSAGES/labplot2.mo +share/locale/ru/ +share/locale/ru/LC_MESSAGES/ +share/locale/ru/LC_MESSAGES/labplot2.mo +share/locale/sk/ +share/locale/sk/LC_MESSAGES/ +share/locale/sk/LC_MESSAGES/labplot2.mo +share/locale/sl/ +share/locale/sl/LC_MESSAGES/ +share/locale/sl/LC_MESSAGES/labplot2.mo +share/locale/sv/ +share/locale/sv/LC_MESSAGES/ +share/locale/sv/LC_MESSAGES/labplot2.mo +share/locale/tr/ +share/locale/tr/LC_MESSAGES/ +share/locale/tr/LC_MESSAGES/labplot2.mo +share/locale/uk/ +share/locale/uk/LC_MESSAGES/ +share/locale/uk/LC_MESSAGES/labplot2.mo +share/locale/zh_CN/ +share/locale/zh_CN/LC_MESSAGES/ +share/locale/zh_CN/LC_MESSAGES/labplot2.mo +share/locale/zh_TW/ +share/locale/zh_TW/LC_MESSAGES/ +share/locale/zh_TW/LC_MESSAGES/labplot2.mo +share/metainfo/ +share/metainfo/org.kde.labplot2.appdata.xml +share/mime/ +share/mime/packages/ +share/mime/packages/labplot2.xml +@tag update-desktop-database +@tag update-mime-database +@tag gtk-update-icon-cache %D/share/icons/hicolor