Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/tm-align/
Date: Sun, 27 Feb 2022 22:52:21
Message-Id: 1646002321.1489c366aee882be497075a8e99c4218f34d6c15.sam@gentoo
1 commit: 1489c366aee882be497075a8e99c4218f34d6c15
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 22:52:01 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 22:52:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1489c366
7
8 sci-chemistry/tm-align: update EAPI 6 -> 8
9
10 Bug: https://bugs.gentoo.org/834302
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sci-chemistry/tm-align/tm-align-20150914-r1.ebuild | 24 ++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/sci-chemistry/tm-align/tm-align-20150914-r1.ebuild b/sci-chemistry/tm-align/tm-align-20150914-r1.ebuild
17 new file mode 100644
18 index 000000000000..23c016c77a05
19 --- /dev/null
20 +++ b/sci-chemistry/tm-align/tm-align-20150914-r1.ebuild
21 @@ -0,0 +1,24 @@
22 +# Copyright 1999-2022 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +inherit cmake flag-o-matic fortran-2
28 +
29 +DESCRIPTION="Quick & Accurate Structural Alignment"
30 +HOMEPAGE="https://zhanggroup.org/TM-align/"
31 +SRC_URI="http://zhanglab.ccmb.med.umich.edu/TM-align/TMtools${PV}.tar.gz"
32 +S="${WORKDIR}"
33 +
34 +LICENSE="tm-align"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
37 +IUSE="custom-cflags"
38 +
39 +src_prepare() {
40 + cp "${FILESDIR}"/CMakeLists.txt . || die
41 + cmake_src_prepare
42 +
43 + # Recommended by upstream
44 + use custom-cflags || replace-flags -O* -O3 && append-fflags -ffast-math
45 +}