diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2022-03-22 18:52:33 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2022-03-22 18:52:33 +0100 |
commit | 694c648d217ec1d50a844e873e9ad8eb7f100ba9 (patch) | |
tree | e9056d46fc16596017747aa1fc0cc81016f27667 /sci-misc/flashdot/flashdot-1.1.4-r1.ebuild | |
parent | dev-java/ant-core: Drop 1.10.9 (diff) | |
download | gentoo-694c648d217ec1d50a844e873e9ad8eb7f100ba9.tar.gz gentoo-694c648d217ec1d50a844e873e9ad8eb7f100ba9.tar.bz2 gentoo-694c648d217ec1d50a844e873e9ad8eb7f100ba9.zip |
sci-misc/flashdot: don't call svn
Closes: https://bugs.gentoo.org/835801
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'sci-misc/flashdot/flashdot-1.1.4-r1.ebuild')
-rw-r--r-- | sci-misc/flashdot/flashdot-1.1.4-r1.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sci-misc/flashdot/flashdot-1.1.4-r1.ebuild b/sci-misc/flashdot/flashdot-1.1.4-r1.ebuild index e4d55db5efae..0dc3ef755c93 100644 --- a/sci-misc/flashdot/flashdot-1.1.4-r1.ebuild +++ b/sci-misc/flashdot/flashdot-1.1.4-r1.ebuild @@ -28,9 +28,13 @@ PATCHES=( src_prepare() { default - MAKEOPTS+=" -j1 VERSION=${PV}" + MAKEOPTS="-j1" use ocamlopt || MAKEOPTS+=" TARGETS=flashdot_bytecode BYTECODENAME=flashdot" sed -i \ + -e "s|^VERSION.*|VERSION := ${PV}|" \ + Makefile \ + || die + sed -i \ -e 's:Gsl_matrix:Gsl.Matrix:g' \ -e 's:Gsl_rng:Gsl.Rng:g' \ -e 's:Gsl_randist:Gsl.Randist:g' \ |