mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 09:07:26 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
45 lines
956 B
Bash
45 lines
956 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic toolchain-funcs
|
|
|
|
DESCRIPTION="Create & extract files from DOS .ARC files"
|
|
HOMEPAGE="https://arc.sourceforge.net"
|
|
SRC_URI="https://github.com/ani6al/${PN}/archive/refs/tags/${PV}.tar.gz
|
|
-> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm64 ~hppa ppc ppc64 ~sparc x86"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-5.21m-darwin.patch
|
|
"${FILESDIR}"/${PN}-5.21m-gentoo-fbsd.patch
|
|
"${FILESDIR}"/${PN}-5.21p-fno-common.patch
|
|
"${FILESDIR}"/${PN}-5.21p-variadic-arcdie.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i Makefile \
|
|
-e 's/CFLAGS = $(OPT) $(SYSTEM)/CFLAGS += $(SYSTEM)/' \
|
|
|| die "sed Makefile"
|
|
}
|
|
|
|
src_compile() {
|
|
# bug #940242
|
|
filter-lto
|
|
|
|
# bug #944136 for gnu17
|
|
emake CC="$(tc-getCC) -std=gnu17" OPT="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin arc marc
|
|
doman arc.1
|
|
dodoc Arc521.doc Arcinfo Changelog Readme
|
|
}
|