summaryrefslogtreecommitdiff
path: root/sys-devel/cproc/cproc-9999.ebuild
blob: 65713cab2e53c2629286fc56dfb9080b28abed8e (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
# Copyright 2021-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit edo toolchain-funcs

if [[ ${PV} = 9999 ]]; then
	EGIT_REPO_URI="https://git.sr.ht/~mcf/cproc"
	inherit git-r3
else
	CPROC_COMMIT="c19a0bd9b78be94b455af55ad8ceb9be49410974"
	CPROC_P="${PN}-${CPROC_COMMIT}"
	SRC_URI="https://git.sr.ht/~mcf/cproc/archive/${CPROC_COMMIT}.tar.gz -> ${CPROC_P}.tar.gz"
	S="${WORKDIR}/${CPROC_P}"

	KEYWORDS="~amd64 ~arm64 ~riscv"
fi

DESCRIPTION="C11 compiler using QBE as backend"
HOMEPAGE="https://sr.ht/~mcf/cproc/"

LICENSE="ISC"
SLOT="0"

DEPEND=">=sys-devel/qbe-1.3"
RDEPEND="${DEPEND}"

src_configure() {
	tc-export CC

	local toolprefix="${CTARGET:-${CBUILD}}"

	edo ./configure \
		--prefix=/usr \
		--host="${CHOST}" \
		--target="${CTARGET:-${CBUILD}}" \
		--with-cpp="${toolprefix}-cpp" \
		--with-as="${toolprefix}-as" \
		--with-ld="${toolprefix}-ld"
}