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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools desktop elisp-common systemd toolchain-funcs xdg
MY_PV="${PV/_/-}"
MY_P="TiMidity++-${MY_PV}"
DESCRIPTION="A handy MIDI to WAV converter with OSS and ALSA output support"
HOMEPAGE="http://timidity.sourceforge.net/"
SRC_URI="mirror://sourceforge/timidity/${MY_P}.tar.xz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
IUSE="alsa ao emacs flac gtk jack motif nas ncurses oss selinux slang speex tk vorbis X"
REQUIRED_USE="tk? ( X )"
DEPEND="
alsa? ( media-libs/alsa-lib )
ao? ( >=media-libs/libao-0.8.5 )
emacs? ( >=app-editors/emacs-23.1:* )
flac? ( media-libs/flac )
gtk? ( x11-libs/gtk+:2 )
jack? ( virtual/jack )
motif? ( >=x11-libs/motif-2.3:0 )
nas? ( >=media-libs/nas-1.4 )
ncurses? ( sys-libs/ncurses:0= )
slang? ( sys-libs/slang )
speex? ( media-libs/speex )
tk? ( dev-lang/tk:0= )
vorbis? ( media-libs/libvorbis )
X? (
media-libs/libpng:0=
x11-libs/libXaw
x11-libs/libXext
)
"
RDEPEND="
${DEPEND}
acct-group/audio
acct-group/nobody
acct-user/timidity
app-eselect/eselect-timidity
alsa? ( media-sound/alsa-utils )
selinux? ( sec-policy/selinux-timidity )
"
PDEPEND="|| ( media-sound/timidity-eawpatches media-sound/timidity-freepats )"
SITEFILE=50${PN}-gentoo.el
DOCS=( AUTHORS ChangeLog NEWS README "${FILESDIR}"/timidity.cfg-r1 )
PATCHES=(
"${FILESDIR}"/${PN}-2.14.0-params.patch
"${FILESDIR}"/${PN}-2.14.0-ar.patch
"${FILESDIR}"/${PN}-2.14.0-configure-flags.patch
"${FILESDIR}"/${PN}-2.15.0-pkg-config.patch
"${FILESDIR}"/${PN}-2.14.0-CVE-2017-1154{6,7}.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
export EXTRACFLAGS="${CFLAGS}" #385817
local audios
local myeconfargs=(
--localstatedir=/var/state/${PN}
--with-module-dir="${EPREFIX}/usr/share/timidity"
--with-lispdir="${SITELISP}/${PN}"
--with-elf
--enable-server
--enable-network
--enable-dynamic
--enable-vt100
--enable-spline=cubic
$(use_enable emacs)
$(use_enable slang)
$(use_enable ncurses)
$(use_with X x)
$(use_enable X spectrogram)
$(use_enable X wrd)
$(use_enable X xskin)
$(use_enable X xaw)
$(use_enable gtk)
$(use_enable tk tcltk)
$(use_enable motif)
)
use flac && audios+=",flac"
use speex && audios+=",speex"
use vorbis && audios+=",vorbis"
use oss && audios+=",oss"
use jack && audios+=",jack"
use ao && audios+=",ao"
if use nas; then
audios+=",nas"
myeconfargs+=(
--with-nas-library="/usr/$(get_libdir)/libaudio.so"
--with-x
)
use X || ewarn "Basic X11 support will be enabled because required by nas."
fi
if use alsa; then
audios+=",alsa"
myeconfargs+=(
--with-default-output=alsa
--enable-alsaseq
)
fi
if use motif; then
myeconfargs+=(
--with-x
)
use X || ewarn "Basic X11 support will be enabled because required by motif."
fi
# needs to come after all audios have been collected
myeconfargs+=(
--enable-audio=${audios}
)
econf "${myeconfargs[@]}"
}
src_install() {
emake DESTDIR="${D}" install
einstalldocs
# these are only for the ALSA sequencer mode
if use alsa; then
newconfd "${FILESDIR}"/conf.d.timidity.2 timidity
newinitd "${FILESDIR}"/init.d.timidity.4 timidity
systemd_dounit "${FILESDIR}"/timidity.service
fi
insinto /etc
newins "${FILESDIR}"/timidity.cfg-r1 timidity.cfg
dodir /usr/share/timidity
dosym ../../../etc/timidity.cfg /usr/share/timidity/timidity.cfg
if use emacs; then
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
doicon "${FILESDIR}"/timidity.xpm
newmenu "${FILESDIR}"/timidity.desktop.2 timidity.desktop
# Order of preference: gtk, X (Xaw), ncurses, slang
# Do not create menu item for terminal ones
local interface="-id"
local terminal="true"
local nodisplay="true"
if use gtk || use X; then
interface="-ia"
terminal="false"
nodisplay="false"
use gtk && interface="-ig"
elif use ncurses || use slang; then
local interface="-is"
use ncurses && interface="-in"
fi
sed -e "s/Exec=timidity/Exec=timidity ${interface}/" \
-e "s/Terminal=.*/Terminal=${terminal}/" \
-e "s/NoDisplay=.*/NoDisplay=${nodisplay}/" \
-i "${ED}"/usr/share/applications/timidity.desktop || die
}
pkg_preinst() {
xdg_pkg_preinst
}
pkg_postinst() {
use emacs && elisp-site-regen
elog "A timidity config file has been installed in /etc/timidity.cfg."
elog "Do not edit this file as it will interfere with the eselect timidity tool."
elog "The tool 'eselect timidity' can be used to switch between installed patchsets."
if use alsa; then
elog "An init script for the alsa timidity sequencer has been installed."
elog "If you wish to use the timidity virtual sequencer, edit /etc/conf.d/timidity"
elog "and run 'rc-update add timidity <runlevel> && /etc/init.d/timidity start'"
fi
if use sparc; then
elog "Only saving to wave file and ALSA soundback has been tested working."
fi
xdg_pkg_postinst
}
pkg_postrm() {
use emacs && elisp-site-regen
xdg_pkg_postrm
}
|