summaryrefslogtreecommitdiff
blob: 1a8b1cb4f3fe09538f27b3892612c42b787006d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

MY_PN=${PN}-scheme
MY_PV=0.10  # Release "0.10.0" tagged as "0.10"
MY_P=${MY_PN}-${MY_PV}

inherit toolchain-funcs

DESCRIPTION="Minimal Scheme implementation for use as an extension language"
HOMEPAGE="http://synthcode.com/scheme/chibi/"

if [[ ${PV} == *9999* ]] ; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/ashinn/${MY_PN}.git"
else
	SRC_URI="https://github.com/ashinn/${MY_PN}/archive/${MY_PV}.tar.gz
				-> ${P}.tar.gz"
	KEYWORDS="~amd64 ~x86"
	S="${WORKDIR}"/${MY_P}
fi

LICENSE="BSD"
SLOT="0"

src_configure() {
	tc-export CC

	export PREFIX="${EPREFIX}/usr"
	export LIBDIR="${EPREFIX}/usr/$(get_libdir)"
	export SOLIBDIR="${EPREFIX}/usr/$(get_libdir)"

	# If "ldconfig" exists it is ran, overwrite it with "LDCONFIG" variable.
	export LDCONFIG="0"
}

src_install() {
	default

	dosym ${MY_PN} /usr/bin/${PN}
}