mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
40 lines
605 B
Bash
40 lines
605 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Fortran to C converter"
|
|
HOMEPAGE="https://www.netlib.org/f2c"
|
|
SRC_URI="
|
|
https://www.netlib.org/f2c/src.tgz -> ${P}.tar.gz
|
|
"
|
|
|
|
LICENSE="HPND"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ppc64 x86"
|
|
|
|
RDEPEND=">=dev-libs/libf2c-20130927-r1"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-20100827-fix-buildsystem.patch
|
|
)
|
|
|
|
src_configure() {
|
|
tc-export CC
|
|
}
|
|
|
|
src_compile() {
|
|
emake -C src -f makefile.u f2c
|
|
}
|
|
|
|
src_install() {
|
|
dobin src/f2c
|
|
|
|
dodoc src/README src/Notice
|
|
|
|
}
|