diff options
author | 2007-01-16 21:32:55 +0000 | |
---|---|---|
committer | 2007-01-16 21:32:55 +0000 | |
commit | 8a582db3f193c8fb6477c0fac083d234e0b5b73a (patch) | |
tree | 54453ebb1c6c2862b45b6d7e12a55eb4e4808ae4 /kde-base/kttsd/kttsd-3.5.6.ebuild | |
parent | Put the correct dependencies for autotools. Use automake 1.9 as only eautomak... (diff) | |
download | gentoo-2-8a582db3f193c8fb6477c0fac083d234e0b5b73a.tar.gz gentoo-2-8a582db3f193c8fb6477c0fac083d234e0b5b73a.tar.bz2 gentoo-2-8a582db3f193c8fb6477c0fac083d234e0b5b73a.zip |
Bump to 3.5.6 (prerelease).
(Portage version: 2.1.2)
Diffstat (limited to 'kde-base/kttsd/kttsd-3.5.6.ebuild')
-rw-r--r-- | kde-base/kttsd/kttsd-3.5.6.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/kde-base/kttsd/kttsd-3.5.6.ebuild b/kde-base/kttsd/kttsd-3.5.6.ebuild new file mode 100644 index 000000000000..2356d13f5f0c --- /dev/null +++ b/kde-base/kttsd/kttsd-3.5.6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kttsd/kttsd-3.5.6.ebuild,v 1.1 2007/01/16 21:32:55 flameeyes Exp $ +KMNAME=kdeaccessibility +MAXKDEVER=$PV +KM_DEPRANGE="$PV $MAXKDEVER" +inherit kde-meta + +DESCRIPTION="KDE text-to-speech subsystem" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="akode alsa gstreamer" +DEPEND="akode? ( media-libs/akode ) + alsa? ( media-libs/alsa-lib ) + gstreamer? ( =media-libs/gstreamer-0.8* + =media-libs/gst-plugins-0.8* ) + $(deprange-dual $PV $MAXKDEVER kde-base/kcontrol) + !arts? ( !alsa? ( !gstreamer? ( media-libs/akode ) ) )" + +RDEPEND="${DEPEND} + || ( app-accessibility/festival + app-accessibility/epos + app-accessibility/flite + app-accessibility/freetts )" + +pkg_setup() { + kde_pkg_setup + if ! use arts && ! use alsa && ! use gstreamer && ! use akode ; then + ewarn "No audio backend chosen. Defaulting to media-libs/akode." + fi +} + +src_compile() { + local myconf="$(use_with alsa) $(use_with gstreamer)" + + if ! use arts && ! use alsa && ! use gstreamer ; then + myconf="${myconf} --with-akokde" + else + myconf="${myconf} $(use_with akode)" + fi + + kde-meta_src_compile +} |