dev-scheme/chezscheme: multilib; do not insatll 'scheme' in '/usr/bin'

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
This commit is contained in:
Maciej Barć 2021-02-08 01:28:27 +01:00
parent 5155740e8b
commit 26147f3ac4
No known key found for this signature in database
GPG Key ID: 031C9FE65BED714A
1 changed files with 16 additions and 11 deletions

View File

@ -1,13 +1,15 @@
# Copyright 1999-2020 Gentoo Authors # Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=7 EAPI=7
inherit autotools wrapper CSV="csv${PV}"
inherit autotools multilib wrapper
DESCRIPTION="Open-source Chez Scheme implementation from Cisco" DESCRIPTION="Open-source Chez Scheme implementation from Cisco"
HOMEPAGE="https://cisco.github.io/ChezScheme/" HOMEPAGE="https://cisco.github.io/ChezScheme/"
SRC_URI="https://github.com/cisco/ChezScheme/releases/download/v${PV}/csv${PV}.tar.gz -> ${P}.tar.gz" SRC_URI="https://github.com/cisco/ChezScheme/releases/download/v${PV}/${CSV}.tar.gz -> ${P}.tar.gz"
RESTRICT="mirror test" RESTRICT="mirror test"
LICENSE="Apache-2.0" LICENSE="Apache-2.0"
@ -16,18 +18,18 @@ KEYWORDS="~amd64"
IUSE="threads" IUSE="threads"
PATCHES=( PATCHES=(
"${FILESDIR}"/chezscheme-tinfo.patch "${FILESDIR}/chezscheme-tinfo.patch"
) )
S="${WORKDIR}"/"csv${PV}" S="${WORKDIR}/${CSV}"
src_configure() { src_configure() {
local myconf=( local myconf=(
$(usex threads '--threads' '') $(usex threads '--threads' '')
--installbin=/usr/bin --installbin="/usr/$(get_libdir)/${CSV}"
--installlib=/usr/lib64 --installlib="/usr/$(get_libdir)"
--installman=/usr/share/man --installman="/usr/share/man"
--installprefix=/usr --installprefix="/usr"
--temproot="${D}" --temproot="${D}"
) )
sh ./configure "${myconf[@]}" sh ./configure "${myconf[@]}"
@ -36,6 +38,9 @@ src_configure() {
src_install() { src_install() {
default default
make_wrapper "chez" "${EPREFIX}/usr/bin/scheme" local chez_dir="${EPREFIX}/usr/$(get_libdir)/${CSV}"
make_wrapper "${PN}" "${EPREFIX}/usr/bin/scheme" make_wrapper "${PN}" "${chez_dir}/scheme"
make_wrapper "chez" "${chez_dir}/scheme"
make_wrapper "petite" "${chez_dir}/petite"
make_wrapper "scheme-script" "${chez_dir}/scheme-script"
} }