You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.8 KiB
102 lines
2.8 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/mbrola/mbrola-3.0.1h-r6.ebuild,v 1.7 2012/03/06 21:31:21 ranger Exp $
|
|
|
|
IUSE="linguas_de linguas_es linguas_fr linguas_it linguas_la linguas_pl
|
|
linguas_ro linguas_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
|
|
linguas_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 )
|
|
linguas_es? ( ${TCTS}/mbrola/dba/es1/es1-980610.zip
|
|
${TCTS}/mbrola/dba/es2/es2-989825.zip
|
|
${TCTS}/mbrola/dba/es4/es4.zip )
|
|
linguas_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 )
|
|
linguas_it? ( ${TCTS}/mbrola/dba/it3/it3-010304.zip
|
|
${TCTS}/mbrola/dba/it4/it4-010926.zip )
|
|
linguas_la? ( ${TCTS}/mbrola/dba/la1/la1.zip )
|
|
linguas_pl? ( ${TCTS}/mbrola/dba/pl1/pl1.zip )
|
|
linguas_ro? ( ${TCTS}/mbrola/dba/ro1/ro1-980317.zip )
|
|
linguas_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
|
|
}
|