diff options
author | William Hubbs <williamh@gentoo.org> | 2008-10-23 13:27:28 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2008-10-23 13:27:28 +0000 |
commit | 57f76a8e147ded21b25bf8dfc95351a53800366d (patch) | |
tree | f017f06cd75cb63261a2d44f8c8e98b0a43d0932 /app-accessibility/espeakup | |
parent | Adding linux patches: 2.6.27.1 2.6.27.2 and 2.6.27.3 (diff) | |
download | gentoo-2-57f76a8e147ded21b25bf8dfc95351a53800366d.tar.gz gentoo-2-57f76a8e147ded21b25bf8dfc95351a53800366d.tar.bz2 gentoo-2-57f76a8e147ded21b25bf8dfc95351a53800366d.zip |
Version bump.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo i686)
Diffstat (limited to 'app-accessibility/espeakup')
-rw-r--r-- | app-accessibility/espeakup/ChangeLog | 7 | ||||
-rw-r--r-- | app-accessibility/espeakup/espeakup-0.4.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/app-accessibility/espeakup/ChangeLog b/app-accessibility/espeakup/ChangeLog index 317cd7f3cd1a..d84c7bb75059 100644 --- a/app-accessibility/espeakup/ChangeLog +++ b/app-accessibility/espeakup/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-accessibility/espeakup # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeakup/ChangeLog,v 1.2 2008/09/11 18:08:35 dmwaters Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeakup/ChangeLog,v 1.3 2008/10/23 13:27:28 williamh Exp $ + +*espeakup-0.4 (23 Oct 2008) + + 23 Oct 2008; William Hubbs <williamh@gentoo.org> +espeakup-0.4.ebuild: + Version bump. 11 Sep 2008; Deedra Waters <dmwaters@gentoo.org> metadata.xml, espeakup-0.2.ebuild: diff --git a/app-accessibility/espeakup/espeakup-0.4.ebuild b/app-accessibility/espeakup/espeakup-0.4.ebuild new file mode 100644 index 000000000000..e3810e53f9ab --- /dev/null +++ b/app-accessibility/espeakup/espeakup-0.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeakup/espeakup-0.4.ebuild,v 1.1 2008/10/23 13:27:28 williamh Exp $ + +DESCRIPTION="espeakup is a small lightweight connector for espeak and speakup" +HOMEPAGE="http://www.linux-speakup.org" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-accessibility/espeak" +RDEPEND="${DEPEND} + app-accessibility/speakup" + +src_compile() { + emake || die "Compile failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "Install failed." + dodoc README ToDo + newinitd "${FILESDIR}"/espeakup.rc espeakup +} + +pkg_postinst() { + elog "To get espeakup to start automatically, it is currently recommended" + echo "that you add it to the default run level, by giving the following" + elog "command as root." + elog + elog "rc-update add espeakup default" +} |