diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2009-04-12 06:13:19 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2009-04-12 06:13:19 +0000 |
commit | 41f274f43eb6804819621415ce728591853cfcd8 (patch) | |
tree | ec138076a0760b6fadc4fe66ed09ef8d98512633 /kde-base/kttsd | |
parent | Add KDE 4.2.2 (diff) | |
download | gentoo-2-41f274f43eb6804819621415ce728591853cfcd8.tar.gz gentoo-2-41f274f43eb6804819621415ce728591853cfcd8.tar.bz2 gentoo-2-41f274f43eb6804819621415ce728591853cfcd8.zip |
Add KDE 4.2.2
(Portage version: 2.2_rc29/cvs/Linux x86_64)
Diffstat (limited to 'kde-base/kttsd')
-rw-r--r-- | kde-base/kttsd/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kttsd/kttsd-4.2.2.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/kde-base/kttsd/ChangeLog b/kde-base/kttsd/ChangeLog index 0c96a6e9dce7..985d0514dc17 100644 --- a/kde-base/kttsd/ChangeLog +++ b/kde-base/kttsd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kttsd # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kttsd/ChangeLog,v 1.112 2009/03/15 14:36:32 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kttsd/ChangeLog,v 1.113 2009/04/12 06:13:19 alexxy Exp $ + +*kttsd-4.2.2 (11 Apr 2009) + + 11 Apr 2009; Alexey Shvetsov <alexxy@gentoo.org> +kttsd-4.2.2.ebuild: + Add KDE 4.2.2 15 Mar 2009; Tomas Chvatal <scarabeus@gentoo.org> kttsd-4.2.1.ebuild: Automatic-merge: merge updates for 4.2.1 from kde-testing. diff --git a/kde-base/kttsd/kttsd-4.2.2.ebuild b/kde-base/kttsd/kttsd-4.2.2.ebuild new file mode 100644 index 000000000000..9ad483e97bb7 --- /dev/null +++ b/kde-base/kttsd/kttsd-4.2.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kttsd/kttsd-4.2.2.ebuild,v 1.1 2009/04/12 06:13:19 alexxy Exp $ + +EAPI="2" + +KMNAME="kdeaccessibility" +inherit kde4-meta + +DESCRIPTION="KDE text-to-speech subsystem" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~x86" +IUSE="alsa debug doc +ktts +phonon" + +DEPEND=" + ktts? ( + alsa? ( >=media-libs/alsa-lib-1.0.14a ) + phonon? ( >=media-sound/phonon-4.3.1 ) + ) +" +RDEPEND="${DEPEND} + >=kde-base/kcmshell-${PV}:${SLOT}[kdeprefix=] + >=kde-base/knotify-${PV}:${SLOT}[kdeprefix=] + ktts? ( + app-accessibility/epos + app-accessibility/festival + app-accessibility/flite + app-accessibility/freetts + ) +" + +src_configure() { + mycmakeargs="${mycmakeargs} + $(cmake-utils_use_with alsa Alsa) + -DKDE4_KTTSD_PHONON=$(use phonon && echo OFF || echo ON) + -DKDE4_KTTSD_ALSA=$(use alsa && echo ON || echo OFF) + $(cmake-utils_use_with ktts Kttsmodule)" + + kde4-meta_src_configure +} |