Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/med/
Date: Tue, 03 Sep 2019 22:35:14
Message-Id: 1567550084.45fb15026a6de8ce989a9189ccc5f251165bf436.tamiko@gentoo
1 commit: 45fb15026a6de8ce989a9189ccc5f251165bf436
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 3 22:24:24 2019 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 3 22:34:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45fb1502
7
8 sci-libs/med: immediately switch to new variant
9
10 Package-Manager: Portage-2.3.75, Repoman-2.3.17
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 sci-libs/med/med-4.0.0.ebuild | 48 -------------------------------------------
14 1 file changed, 48 deletions(-)
15
16 diff --git a/sci-libs/med/med-4.0.0.ebuild b/sci-libs/med/med-4.0.0.ebuild
17 deleted file mode 100644
18 index 721d2173d35..00000000000
19 --- a/sci-libs/med/med-4.0.0.ebuild
20 +++ /dev/null
21 @@ -1,48 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit eutils flag-o-matic
28 -
29 -DESCRIPTION="Modeling and Exchange of Data library"
30 -HOMEPAGE="https://www.salome-platform.org/user-section/about/med"
31 -SRC_URI="https://files.salome-platform.org/Salome/other/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86"
36 -IUSE="mpi"
37 -
38 -RDEPEND="
39 - ${PYTHON_DEPS}
40 - >=sci-libs/hdf5-1.10.5[mpi=]
41 - mpi? ( virtual/mpi )
42 -"
43 -
44 -DEPEND="
45 - ${DEPEND}
46 -"
47 -
48 -src_prepare() {
49 - default
50 - append-cppflags -DH5_USE_16_API
51 -}
52 -
53 -src_configure() {
54 - local myconf=(
55 - --docdir="/usr/share/doc/${PF}"
56 - --disable-python
57 - )
58 -
59 - econf "${myconf[@]}"
60 -}
61 -
62 -src_install() {
63 - default
64 -
65 - mv "${ED}"/usr/$(get_libdir)/libmed3.settings \
66 - "${ED}"/usr/share/doc/${PF}/ || die "mv failed"
67 -
68 - rm -rf "${ED}"/usr/include/2.3.6 || die "rm failed"
69 -}