70 lines
1.6 KiB
Bash
70 lines
1.6 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/flite/flite-1.4-r2.ebuild,v 1.3 2013/08/25 14:42:09 jer Exp $
|
|
|
|
EAPI=4
|
|
inherit autotools eutils
|
|
|
|
DESCRIPTION="Flite text to speech engine"
|
|
HOMEPAGE="http://www.speech.cs.cmu.edu/flite/index.html"
|
|
SRC_URI=" http://www.speech.cs.cmu.edu/${PN}/packed/${P}/${P}-release.tar.bz2"
|
|
|
|
LICENSE="BSD freetts public-domain regexp-UofT BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS=" ~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
|
|
IUSE="alsa oss static-libs"
|
|
|
|
DEPEND="alsa? ( >=media-libs/alsa-lib-1.0.24.1 )"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S=${WORKDIR}/${P}-release
|
|
|
|
get_audio() {
|
|
if use alsa; then
|
|
echo alsa
|
|
elif use oss; then
|
|
echo oss
|
|
else
|
|
echo none
|
|
fi
|
|
}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-fix-parallel-builds.patch
|
|
epatch "${FILESDIR}"/${P}-respect-destdir.patch
|
|
epatch "${FILESDIR}"/${P}-ldflags.patch
|
|
epatch "${FILESDIR}"/${P}-audio-interface.patch
|
|
sed -i main/Makefile \
|
|
-e '/-rpath/s|$(LIBDIR)|$(INSTALLLIBDIR)|g' \
|
|
|| die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local myconf
|
|
if ! use static-libs; then
|
|
myconf=--enable-shared
|
|
fi
|
|
myconf="${myconf} --with-audio=$(get_audio)"
|
|
econf ${myconf}
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
dodoc ACKNOWLEDGEMENTS README
|
|
if ! use static-libs; then
|
|
rm -rf "${D}"/usr/lib*/*.a
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if [ "$(get_audio)" = "none" ]; then
|
|
ewarn "you have built flite without audio support."
|
|
ewarn "If you want audio support, re-emerge"
|
|
ewarn "flite with alsa or oss in your use flags."
|
|
fi
|
|
}
|