From: "Tom Wijsman (tomwij)" <tomwij@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in app-accessibility/freetts: freetts-1.2.2.ebuild ChangeLog
Date: Sat, 8 Jun 2013 13:31:55 +0000 (UTC) [thread overview]
Message-ID: <20130608133156.689362171D@flycatcher.gentoo.org> (raw)
tomwij 13/06/08 13:31:55
Modified: ChangeLog
Added: freetts-1.2.2.ebuild
Log:
Version bump to 1.2.2. EAPI 5, fixed compilation and added more Java package USE flags.
(Portage version: 2.1.12.3/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Revision Changes Path
1.37 app-accessibility/freetts/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/freetts/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/freetts/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/freetts/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/freetts/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 6 Mar 2012 21:33:37 -0000 1.36
+++ ChangeLog 8 Jun 2013 13:31:55 -0000 1.37
@@ -1,6 +1,13 @@
# ChangeLog for app-accessibility/freetts
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/freetts/ChangeLog,v 1.36 2012/03/06 21:33:37 ranger Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/freetts/ChangeLog,v 1.37 2013/06/08 13:31:55 tomwij Exp $
+
+*freetts-1.2.2 (08 Jun 2013)
+
+ 08 Jun 2013; Tom Wijsman <TomWij@gentoo.org> +freetts-1.2.2.ebuild,
+ metadata.xml:
+ Version bump to 1.2.2. EAPI 5, fixed compilation and added more Java package
+ USE flags.
06 Mar 2012; Brent Baude <ranger@gentoo.org> freetts-1.2.1-r2.ebuild:
Marking freetts-1.2.1-r2 ppc64 for bug 396743
@@ -134,4 +141,3 @@
20 Mar 2004; Chris Aniszczyk <zx@gentoo.org> freetts-1.2_beta.ebuild,
metadata.xml, files/jsapi-gentoo.diff:
Initial Import :)
-
1.1 app-accessibility/freetts/freetts-1.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/freetts/freetts-1.2.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/freetts/freetts-1.2.2.ebuild?rev=1.1&content-type=text/plain
Index: freetts-1.2.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/freetts/freetts-1.2.2.ebuild,v 1.1 2013/06/08 13:31:55 tomwij Exp $
EAPI="5"
JAVA_PKG_IUSE="doc examples source"
inherit eutils java-pkg-2 java-ant-2
DESCRIPTION="A speech synthesis system written entirely in Java"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
HOMEPAGE="http://freetts.sourceforge.net/"
RDEPEND=">=virtual/jre-1.4
mbrola? ( >=app-accessibility/mbrola-3.0.1h-r6 ) "
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
jsapi? ( app-arch/sharutils )
app-arch/unzip"
LICENSE="jsapi? ( sun-bcla-jsapi ) freetts"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="jsapi mbrola"
# Tests aren't present.
RESTRICT="test"
java_prepare() {
# Prepare source directory.
mkdir src || die "Failed to create source directory."
mv com de src/ || die "Failed to move files to source directory."
# Prepare library directory.
cd lib || die "Lib directory not present."
chmod 0755 jsapi.sh || die "jsapi.sh not present or can't change permissions."
epatch "${FILESDIR}"/jsapi-gentoo.diff
use mbrola && echo "mbrola.base=/usr/share/mbrola/" >> "${S}"/speech.properties
}
src_compile() {
if use jsapi; then
pushd lib
./jsapi.sh || die "jsapi.sh failed"
popd
fi
eant jars
}
# Tests aren't present.
# http://freetts.sourceforge.net/docs/index.php#how_test
#src_test() {
# ANT_TASKS="ant-junit" eant junit
#}
src_install() {
java-pkg_dojar lib/*.jar mbrola/*.jar
use mbrola && local jflags="--java_args -Dmbrola.base=/usr/share/mbrola"
java-pkg_dolauncher ${PN} --main com.sun.speech.freetts.FreeTTS ${jflags}
insinto /usr/share/${PN}
doins speech.properties
doins -r tools
dodoc ANNOUNCE.txt README.txt RELEASE_NOTES
if use doc ; then
insinto /usr/share/doc/${PF}/html
doins -r docs/*
java-pkg_dojavadoc javadoc
fi
if use examples ; then
java-pkg_doexamples demo
fi
if use source ; then
java-pkg-dosrc src/*
fi
}
reply other threads:[~2013-06-08 13:31 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130608133156.689362171D@flycatcher.gentoo.org \
--to=tomwij@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox