diff options
author | William Hubbs <williamh@gentoo.org> | 2010-01-01 22:30:52 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2010-01-01 22:30:52 +0000 |
commit | 36daf3c502325f09d26e8674cd57aab4b8e743bf (patch) | |
tree | 4392bebb492db6781b13ee57f8148c49baba0c89 /app-accessibility/flite/flite-1.4-r1.ebuild | |
parent | Version bump, fixes bug 256069. Thanks to Michael Dehler for the updated ebuild. (diff) | |
download | historical-36daf3c502325f09d26e8674cd57aab4b8e743bf.tar.gz historical-36daf3c502325f09d26e8674cd57aab4b8e743bf.tar.bz2 historical-36daf3c502325f09d26e8674cd57aab4b8e743bf.zip |
fix shared library support and parallel build issue.
Package-Manager: portage-2.2_rc61/cvs/Linux i686
Diffstat (limited to 'app-accessibility/flite/flite-1.4-r1.ebuild')
-rw-r--r-- | app-accessibility/flite/flite-1.4-r1.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/app-accessibility/flite/flite-1.4-r1.ebuild b/app-accessibility/flite/flite-1.4-r1.ebuild new file mode 100644 index 000000000000..a0a2c741b0d1 --- /dev/null +++ b/app-accessibility/flite/flite-1.4-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/flite/flite-1.4-r1.ebuild,v 1.1 2010/01/01 22:30:51 williamh Exp $ + +EAPI="2" + +inherit 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 as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="alsa oss static-libs" + +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 +} + +src_configure() { + local myconf + if ! use static-libs; then + myconf=--enable-shared + fi + myconf="${myconf} --with-audio=$(get_audio)" + econf ${myconf} || die "configuration failed" +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "compilation failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "installation failed" + dodoc ACKNOWLEDGEMENTS README || die "Documentation installation failed" + 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 +} |