blob: 4cc0dd9e7a70da6e70198c6040c9183e194f4116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2024 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="http://sidplay2.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/sidplay2/${MY_P}.tar.gz"
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
)
S="${WORKDIR}/${MY_P}"
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
}
|