mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 15:14:38 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
84 lines
1.6 KiB
Bash
84 lines
1.6 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools flag-o-matic multilib-minimal
|
|
|
|
MY_P=sidplay-libs-${PV}
|
|
|
|
DESCRIPTION="C64 SID player library"
|
|
HOMEPAGE="https://sidplay2.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/sidplay2/${MY_P}.tar.gz"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="2"
|
|
KEYWORDS="~alpha amd64 ~arm ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
|
|
IUSE="static-libs"
|
|
|
|
BDEPEND="dev-build/autoconf-archive"
|
|
|
|
MULTILIB_WRAPPED_HEADERS=(
|
|
/usr/include/sidplay/sidconfig.h
|
|
)
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-gcc41.patch
|
|
"${FILESDIR}"/${P}-fbsd.patch
|
|
"${FILESDIR}"/${P}-gcc43.patch
|
|
"${FILESDIR}"/${P}-no_libtool_reference.patch
|
|
"${FILESDIR}"/${P}-gcc6.patch
|
|
"${FILESDIR}"/${P}-autoconf.patch
|
|
"${FILESDIR}"/${P}-slibtool.patch
|
|
"${FILESDIR}"/${P}-clang16.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
local subdirs=(
|
|
builders/hardsid-builder
|
|
builders/resid-builder
|
|
libsidplay
|
|
libsidutils
|
|
resid
|
|
.
|
|
)
|
|
|
|
local i
|
|
for i in ${subdirs[@]}; do
|
|
(
|
|
cd "${i}" || die
|
|
eautoreconf
|
|
)
|
|
done
|
|
|
|
multilib_copy_sources
|
|
}
|
|
|
|
multilib_src_configure() {
|
|
filter-lto
|
|
local myeconfargs=(
|
|
--cache-file="${BUILD_DIR}"/config.cache
|
|
--enable-shared
|
|
--with-pic
|
|
$(use_enable static-libs static)
|
|
)
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
docinto libsidplay
|
|
dodoc libsidplay/{AUTHORS,ChangeLog,README,TODO}
|
|
|
|
docinto libsidutils
|
|
dodoc libsidutils/{AUTHORS,ChangeLog,README,TODO}
|
|
|
|
docinto resid
|
|
dodoc resid/{AUTHORS,ChangeLog,NEWS,README,THANKS,TODO}
|
|
|
|
doenvd "${FILESDIR}"/65resid
|
|
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|