mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
Closes: https://bugs.gentoo.org/799860 Closes: https://bugs.gentoo.org/932355 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
33 lines
926 B
Bash
33 lines
926 B
Bash
# Copyright 2021-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Bootstrap package for dev-lang/fbc"
|
|
HOMEPAGE="https://www.freebasic.net"
|
|
SRC_URI="https://github.com/freebasic/fbc/releases/download/${PV}/FreeBASIC-${PV}-source-bootstrap.tar.xz"
|
|
|
|
S="${WORKDIR}/FreeBASIC-${PV}-source-bootstrap"
|
|
|
|
LICENSE="FDL-1.2 GPL-2+ LGPL-2.1+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="sys-libs/ncurses:="
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=( "${FILESDIR}/${P}-fix-ldflags.patch" )
|
|
|
|
src_compile() {
|
|
emake bootstrap-minimal \
|
|
AR="$(tc-getAR)" AS="$(tc-getAS)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" V=1
|
|
}
|
|
|
|
src_install() {
|
|
newbin bin/fbc fbc-bootstrap
|
|
emake DESTDIR="${D}" prefix="${EPREFIX}/usr/share/freebasic-bootstrap" TARGET=${CHOST} install-includes
|
|
emake DESTDIR="${D}" prefix="${EPREFIX}/usr/share/freebasic-bootstrap" TARGET=${CHOST} install-rtlib
|
|
}
|