blob: 9aedb624e4a90468e0b89621d2fa6b03952485af (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MY_PN=${PN/timidity-/}
DESCRIPTION="Free and open set of instrument patches"
HOMEPAGE="http://freepats.opensrc.org/"
SRC_URI="http://freepats.opensrc.org/${MY_PN}-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ppc ppc64 x86"
IUSE=""
RESTRICT="binchecks strip"
RDEPEND=""
DEPEND=">=app-eselect/eselect-timidity-20061203"
S=${WORKDIR}/${MY_PN}
src_prepare() {
echo "dir ${EPREFIX}/usr/share/timidity/${MY_PN}" > timidity.cfg || die
cat freepats.cfg >> timidity.cfg || due
}
src_install() {
insinto /usr/share/timidity/${MY_PN}
doins -r timidity.cfg Drum_000 Tone_000
dodoc README
}
pkg_postinst() {
eselect timidity update --global --if-unset
}
|