diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-10-21 11:33:44 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-10-21 11:55:25 +0200 |
commit | 6e772d8e9d9e89b8349327e64a2eeac8aeff8626 (patch) | |
tree | dba1462d77851b91f94f4339702243a1e2976ffb /sci-chemistry | |
parent | sci-libs/cgcode: Port to EAPI 8 (diff) | |
download | gentoo-6e772d8e9d9e89b8349327e64a2eeac8aeff8626.tar.gz gentoo-6e772d8e9d9e89b8349327e64a2eeac8aeff8626.tar.bz2 gentoo-6e772d8e9d9e89b8349327e64a2eeac8aeff8626.zip |
sci-chemistry/cluster: Port to EAPI 8
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/cluster/cluster-1.3.081231-r1.ebuild | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/sci-chemistry/cluster/cluster-1.3.081231-r1.ebuild b/sci-chemistry/cluster/cluster-1.3.081231-r1.ebuild index d274ed0d3787..b5f0395734e0 100644 --- a/sci-chemistry/cluster/cluster-1.3.081231-r1.ebuild +++ b/sci-chemistry/cluster/cluster-1.3.081231-r1.ebuild @@ -1,26 +1,27 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -inherit epatch toolchain-funcs +inherit toolchain-funcs DESCRIPTION="Build lists of collections of interacting items" HOMEPAGE="http://kinemage.biochem.duke.edu/software/index.php" SRC_URI="http://kinemage.biochem.duke.edu/downloads/software/${PN}/${PN}.${PV}.src.tgz" +S="${WORKDIR}"/${PN}1.3src -SLOT="0" LICENSE="richardson" +SLOT="0" KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="" -S="${WORKDIR}"/${PN}1.3src +PATCHES=( + "${FILESDIR}"/${PV}-ldflags.patch + "${FILESDIR}"/${PV}-includes.patch +) -src_prepare() { - epatch \ - "${FILESDIR}"/${PV}-ldflags.patch \ - "${FILESDIR}"/${PV}-includes.patch +src_configure() { tc-export CXX + default } src_install() { |