forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mbrola-3.0.1h-r6.ebuild
100 lines (84 loc) · 2.65 KB
/
mbrola-3.0.1h-r6.ebuild
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
IUSE="l10n_de l10n_es l10n_fr l10n_it l10n_la l10n_pl l10n_ro l10n_sv"
S=${WORKDIR}
DESCRIPTION="Speech synthesizer based on the concatenation of diphones. Includes sample voices"
HOMEPAGE="http://tcts.fpms.ac.be/synthesis/mbrola.html"
MY_PV=${PV//./}
TCTS="http://tcts.fpms.ac.be/synthesis"
SRC_URI="http://tcts.fpms.ac.be/synthesis/${PN}/bin/pclinux/mbr${MY_PV}.zip
${TCTS}/mbrola/dba/us1/us1-980512.zip
${TCTS}/mbrola/dba/us1/us2-980812.zip
${TCTS}/mbrola/dba/us3/us3-990208.zip
l10n_de? ( ${TCTS}/mbrola/dba/de1/de1-980227.zip
${TCTS}/mbrola/dba/de2/de2-990106.zip
${TCTS}/mbrola/dba/de3/de3-000307.zip
${TCTS}/mbrola/dba/de4/de4.zip
${TCTS}/mbrola/dba/de5/de5.zip
${TCTS}/mbrola/dba/de8/de8.zip )
l10n_es? ( ${TCTS}/mbrola/dba/es1/es1-980610.zip
${TCTS}/mbrola/dba/es2/es2-989825.zip
${TCTS}/mbrola/dba/es4/es4.zip )
l10n_fr? ( ${TCTS}/mbrola/dba/fr1/fr1-990204.zip
${TCTS}/mbrola/dba/fr2/fr2-980806.zip
${TCTS}/mbrola/dba/fr3/fr3-990324.zip
${TCTS}/mbrola/dba/fr6/fr6-010330.zip )
l10n_it? ( ${TCTS}/mbrola/dba/it3/it3-010304.zip
${TCTS}/mbrola/dba/it4/it4-010926.zip )
l10n_la? ( ${TCTS}/mbrola/dba/la1/la1.zip )
l10n_pl? ( ${TCTS}/mbrola/dba/pl1/pl1.zip )
l10n_ro? ( ${TCTS}/mbrola/dba/ro1/ro1-980317.zip )
l10n_sv? ( ${TCTS}/mbrola/dba/sw1/sw1-980623.zip
${TCTS}/mbrola/dba/sw2/sw2-140102.zip )"
DEPEND="app-arch/unzip"
RDEPEND=""
RESTRICT="strip"
QA_PREBUILT="/usr/bin/mbrola"
SLOT="0"
LICENSE="MBROLA"
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
src_unpack () {
unpack ${A}
if [[ -f pl1 ]]; then
mkdir pl1DIR
mv pl1 pl1.txt pl1DIR
mv test pl1DIR/TEST
mv pl1DIR pl1
fi
case ${ARCH} in
x86|amd64)
cp mbrola-linux-i386 mbrola || die
;;
ppc)
cp mbrola302b-linux-ppc mbrola || die
;;
sparc)
cp mbrola-SuSElinux-ultra1.dat mbrola || die
;;
alpha)
cp mbrola-linux-alpha mbrola || die
;;
*)
elog "mbrola binary not available on this architecture. Still installing voices."
esac
}
src_install () {
# Take care of main binary
if [[ -f "mbrola" ]]; then
dobin mbrola
dosym /usr/bin/mbrola "/usr/share/${PN}/mbrola"
fi
dodoc readme.txt
for voice in ??[0-9]; do
insinto /usr/share/${PN}/${voice}
[[ -f "${voice}/license.txt" ]] && doins ${voice}/license.txt
[[ -f "${voice}/${voice}" ]] && doins ${voice}/${voice}
[[ -f "${voice}/${voice}mrpa" ]] && doins ${voice}/${voice}mrpa
if [[ -d "${voice}/TEST" ]]; then
insinto /usr/share/${PN}/${voice}/TEST
doins ${voice}/TEST/*
fi
[[ -f "${voice}/${voice}.txt" ]] && dodoc ${voice}/${voice}.txt
done
}