blob: c77734211e9c130fe5bb3cf8449c7a200e3aa67f (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools multibuild
MY_P="vice-emu-code-r${PV##*_p}-trunk-vice"
DESCRIPTION="The Versatile Commodore Emulator"
HOMEPAGE="http://vice-emu.sourceforge.net/"
#SRC_URI="mirror://sourceforge/vice-emu/releases/${P}.tar.gz"
SRC_URI="https://sourceforge.net/code-snapshots/svn/v/vi/vice-emu/code/${MY_P}.zip"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa debug doc ethernet ffmpeg flac gif +gtk headless ipv6 jpeg lame mpg123 ogg oss +opengl parport pci png portaudio pulseaudio sdl zlib"
REQUIRED_USE="|| ( gtk headless sdl ) gtk? ( zlib )"
RDEPEND="
sys-libs/readline:0=
virtual/libintl
alsa? ( media-libs/alsa-lib )
ethernet? (
>=net-libs/libpcap-0.9.8
>=net-libs/libnet-1.1.2.1:1.1
)
ffmpeg? ( media-video/ffmpeg:= )
flac? ( media-libs/flac )
gif? ( media-libs/giflib:= )
gtk? (
dev-libs/glib:2
media-libs/fontconfig:1.0
x11-libs/gtk+:3
opengl? (
media-libs/glew:0=
virtual/opengl
)
)
jpeg? ( virtual/jpeg )
lame? ( media-sound/lame )
mpg123? ( media-sound/mpg123 )
ogg? (
media-libs/libogg
media-libs/libvorbis
)
parport? ( sys-libs/libieee1284 )
pci? ( sys-apps/pciutils )
png? ( media-libs/libpng:0= )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-sound/pulseaudio )
sdl? ( media-libs/libsdl2[video] )
zlib? ( sys-libs/zlib )
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
"
BDEPEND="
app-arch/unzip
dev-embedded/xa
dev-lang/perl
sys-apps/texinfo
sys-devel/flex
sys-devel/gettext
virtual/pkgconfig
virtual/yacc
doc? ( virtual/texi2dvi )
"
S="${WORKDIR}/${MY_P}"
ECONF_SOURCE="${S}"
PATCHES=(
"${FILESDIR}"/vice-pkg-config.patch
)
src_prepare() {
default
# Delete some bundled libraries.
rm -r src/lib/lib{ffmpeg,lame,x264} || die
sed "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g" < configure.proto > configure.ac || die
local DIR
for DIR in src/resid src/resid-dtv .; do
pushd "${DIR}" || die
AT_NO_RECURSIVE=1 eautoreconf
popd || die
done
# Strip the predefined C(XX)FLAGS.
sed -i -r 's:(VICE_C(XX)?FLAGS=)"[^$]+":\1:' configure || die
}
src_configure() {
MULTIBUILD_VARIANTS=(
$(usev gtk)
$(usev headless)
$(usev sdl)
)
multibuild_foreach_variant run_in_build_dir multibuild_src_configure
}
multibuild_enable() {
if [[ ${MULTIBUILD_VARIANT} == $1 ]]; then
printf -- "--enable-%s\n" "$2"
else
printf -- "--disable-%s\n" "$2"
fi
}
multibuild_src_configure() {
# Some dependencies lack configure options so prevent them becoming
# automagic by using configure cache variables.
use flac || export ac_cv_header_FLAC_stream_decoder_h=no
use mpg123 || export ac_cv_header_mpg123_h=no
use ogg || export ac_cv_header_vorbis_vorbisfile_h=no
use pci || export ac_cv_header_pci_pci_h=no
# Ensure we use giflib, not ungif.
export ac_cv_lib_ungif_EGifPutLine=no
# Append ".variant" to x* programs if building multiple variants.
if [[ ${#MULTIBUILD_VARIANTS[@]} -gt 1 ]]; then
xform="/^x/s/\$/.${MULTIBUILD_VARIANT}/"
else
unset xform
fi
econf \
--program-transform-name="${xform}" \
--disable-sdlui \
$(multibuild_enable sdl sdlui2) \
$(multibuild_enable gtk native-gtk3ui) \
$(use_enable debug debug-gtk3ui) \
$(multibuild_enable headless headlessui) \
$(use_enable opengl hwscale) \
--disable-shared-ffmpeg \
--disable-static-ffmpeg \
$(use_enable ffmpeg external-ffmpeg) \
$(use_enable ethernet) \
$(use_enable ipv6) \
$(use_enable parport libieee1284) \
$(use_enable portaudio) \
$(use_enable lame) \
$(use_enable debug) \
--disable-arch \
$(use_enable doc pdf-docs) \
--enable-html-docs \
$(use_with pulseaudio pulse) \
$(use_with alsa) \
$(use_with oss) \
$(use_with jpeg) \
$(use_with png) \
$(use_with gif) \
$(use_with zlib)
}
src_compile() {
multibuild_foreach_variant run_in_build_dir emake
}
src_install() {
multibuild_foreach_variant run_in_build_dir default
dodoc FEEDBACK
# Delete the bundled fonts. These could be packaged separately but
# they're only for the HTML documentation.
rm -r "${ED}"/usr/share/doc/${PF}/html/fonts/ || die
}
|