Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/labplot/
Date: Sun, 21 Oct 2018 14:58:24
Message-Id: 1540133852.a960f744dfbb6236dc328f1ee8966d75a7285798.asturm@gentoo
1 commit: a960f744dfbb6236dc328f1ee8966d75a7285798
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 21 14:51:50 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 21 14:57:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a960f744
7
8 sci-visualization/labplot: Drop 2.5.0 (r0)
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 sci-visualization/labplot/labplot-2.5.0.ebuild | 68 --------------------------
14 1 file changed, 68 deletions(-)
15
16 diff --git a/sci-visualization/labplot/labplot-2.5.0.ebuild b/sci-visualization/labplot/labplot-2.5.0.ebuild
17 deleted file mode 100644
18 index 7c2b38eee9e..00000000000
19 --- a/sci-visualization/labplot/labplot-2.5.0.ebuild
20 +++ /dev/null
21 @@ -1,68 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -KDE_HANDBOOK="forceoptional"
28 -KDE_TEST="forceoptional"
29 -inherit kde5
30 -
31 -DESCRIPTION="Scientific data analysis and visualisation based on KDE Frameworks"
32 -HOMEPAGE="https://www.kde.org/applications/education/labplot/"
33 -[[ ${KDE_BUILD_TYPE} != live ]] && SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
34 -
35 -LICENSE="GPL-2"
36 -KEYWORDS="~amd64 ~x86"
37 -IUSE="cantor fftw fits hdf5 libcerf netcdf"
38 -
39 -COMMON_DEPEND="
40 - $(add_frameworks_dep karchive)
41 - $(add_frameworks_dep kcompletion)
42 - $(add_frameworks_dep kconfig)
43 - $(add_frameworks_dep kconfigwidgets)
44 - $(add_frameworks_dep kcoreaddons)
45 - $(add_frameworks_dep kdelibs4support)
46 - $(add_frameworks_dep ki18n)
47 - $(add_frameworks_dep kiconthemes)
48 - $(add_frameworks_dep kio)
49 - $(add_frameworks_dep knewstuff)
50 - $(add_frameworks_dep ktextwidgets)
51 - $(add_frameworks_dep kwidgetsaddons)
52 - $(add_frameworks_dep kxmlgui)
53 - $(add_frameworks_dep syntax-highlighting)
54 - $(add_qt_dep qtconcurrent)
55 - $(add_qt_dep qtgui)
56 - $(add_qt_dep qtprintsupport)
57 - $(add_qt_dep qtserialport)
58 - $(add_qt_dep qtsvg)
59 - $(add_qt_dep qtwidgets)
60 - >=sci-libs/gsl-1.15:=
61 - cantor? ( $(add_kdeapps_dep cantor) )
62 - fftw? ( sci-libs/fftw:3.0= )
63 - fits? ( sci-libs/cfitsio:= )
64 - hdf5? ( sci-libs/hdf5:= )
65 - libcerf? ( sci-libs/libcerf )
66 - netcdf? ( sci-libs/netcdf:= )
67 -"
68 -DEPEND="${COMMON_DEPEND}
69 - sys-devel/bison
70 - sys-devel/gettext
71 - x11-misc/shared-mime-info
72 -"
73 -RDEPEND="${COMMON_DEPEND}
74 - !sci-visualization/labplot:4
75 -"
76 -
77 -src_configure() {
78 - local mycmakeargs=(
79 - -DENABLE_CANTOR=$(usex cantor)
80 - -DENABLE_FFTW=$(usex fftw)
81 - -DENABLE_FITS=$(usex fits)
82 - -DENABLE_HDF5=$(usex hdf5)
83 - -DENABLE_LIBCERF=$(usex libcerf)
84 - -DENABLE_NETCDF=$(usex netcdf)
85 - -DENABLE_TESTS=$(usex test)
86 - )
87 -
88 - kde5_src_configure
89 -}