sci-mathematics/scilab-bin: drop 6.1.0

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2024-03-16 14:35:29 +02:00
parent 23da8d499a
commit 2710d2ba14
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
2 changed files with 0 additions and 48 deletions

View File

@ -1,2 +1 @@
DIST scilab-2024.0.0.bin.x86_64-linux-gnu.tar.xz 207084340 BLAKE2B d5334eac77882165119484163588a4db0bb871ff7f1142b2059e0dbe5a6e76c37d530f9432bf14c3bec307ae8ed2c8af2564920994ca3455f428f76b790f45c4 SHA512 1c7bcfa7c00be4838f9a38c56fb4b792f7b024decf987869ed0752c23b453173fce762fea697659991db9c2c140fa66e7093a748d4fb52c043137cfa27b68d75
DIST scilab-bin-6.1.0.tar.gz 252985998 BLAKE2B a80b82438f6af4b00465e2501914e0b5c50de4d10773800b85fd0ee91a2c9c230d7fb3ccaa0e36028ffc91ce3269c02aeb99d5d9b731c991516eefe7a380f86e SHA512 4232ecfbcb7e3e2f14991fecc94411e0530053285b680eb1faccea18565bd238efa45a391904e1926982b5a1dd50cfbf3f2703db214cba09b8fab63d1f219346

View File

@ -1,47 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Keep in mind that PN = scilab-bin
EAPI=7
inherit xdg
DESCRIPTION="Scientific software package for numerical computations"
HOMEPAGE="https://www.scilab.org/"
SRC_URI="https://www.scilab.org/download/${PV}/scilab-${PV}.bin.linux-x86_64.tar.gz -> ${P}.tar.gz"
RESTRICT="mirror test"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64"
RDEPEND="
sci-mathematics/scilab-bin
"
S="${WORKDIR}/scilab-${PV}"
QA_PREBUILT="*"
QA_PRESTRIPPED="${QA_PREBUILT}"
src_install() {
local d
for d in ACKNOWLEDGEMENTS COPYING *.md
do
dodoc "${d}" && rm "${d}"
done
mkdir -p "${D}/usr/bin" || die
mkdir -p "${D}/usr/share" || die
mkdir -p "${D}/opt/${PN}" || die
cp -R ./share/applications "${D}/usr/share" || die
cp -R ./share/icons "${D}/usr/share" || die
mv * "${D}/opt/${PN}" || die
pushd "${D}/usr/bin" >/dev/null || die
ln -s ../../opt/"${PN}"/bin/* . || die
popd || die
}