mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
38 lines
899 B
Bash
38 lines
899 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs
|
|
|
|
MY_PV=$(ver_rs 3 "")
|
|
|
|
DESCRIPTION="A 100% compatible, enhanced implementation of the make alternative Jam"
|
|
HOMEPAGE="https://freetype.sourceforge.net/jam/index.html"
|
|
SRC_URI="http://david.freetype.org/jam/ftjam-${MY_PV}.tar.bz2"
|
|
|
|
LICENSE="perforce GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
|
|
|
|
BDEPEND="app-alternatives/yacc"
|
|
|
|
S=${WORKDIR}/${PN}-${MY_PV}
|
|
|
|
DOCS=( README README.ORG CHANGES RELNOTES )
|
|
HTML_DOCS=( Jam.html Jambase.html Jamfile.html )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-2.5.3-nostrip.patch
|
|
"${FILESDIR}"/${PN}-2.5.3-i-hate-yacc.patch
|
|
"${FILESDIR}"/${PN}-2.5.3-false-flags.patch
|
|
"${FILESDIR}"/${PN}-2.5.3-clang16.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
tc-export CC RANLIB
|
|
export AR="$(tc-getAR) ru" #720706
|
|
}
|