diff options
author | 2012-07-31 02:55:47 +0300 | |
---|---|---|
committer | 2012-07-31 02:55:47 +0300 | |
commit | 5032760835ce3de16d7065aa498f3382c86df0fc (patch) | |
tree | 9f7f85971ceac4d74310313cb34f57a5928576fc /sci-misc | |
parent | Update live ebuild (diff) | |
download | sci-5032760835ce3de16d7065aa498f3382c86df0fc.tar.gz sci-5032760835ce3de16d7065aa498f3382c86df0fc.tar.bz2 sci-5032760835ce3de16d7065aa498f3382c86df0fc.zip |
Version bump.
(Portage version: 2.1.10.65/git/Linux i686, unsigned Manifest commit)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/openfst/ChangeLog | 7 | ||||
-rw-r--r-- | sci-misc/openfst/Manifest | 3 | ||||
-rw-r--r-- | sci-misc/openfst/openfst-1.3.2.ebuild | 30 |
3 files changed, 38 insertions, 2 deletions
diff --git a/sci-misc/openfst/ChangeLog b/sci-misc/openfst/ChangeLog index 08df6aa0a..e2ca5a189 100644 --- a/sci-misc/openfst/ChangeLog +++ b/sci-misc/openfst/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for sci-misc/openfst -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*openfst-1.3.2 (30 Jul 2012) + + 30 Jul 2012; Flammie Pirinen <flammie@gentoo.org> +openfst-1.3.2.ebuild: + Version bump. + 25 Oct 2011; Justin Lecher <jlec@gentoo.org> metadata.xml: Removed no-herd from herd tag in metadata.xml diff --git a/sci-misc/openfst/Manifest b/sci-misc/openfst/Manifest index 244fadf3c..6c0467fd1 100644 --- a/sci-misc/openfst/Manifest +++ b/sci-misc/openfst/Manifest @@ -1 +1,2 @@ -DIST openfst-1.2.7.tar.gz 668134 RMD160 a24279f4deb85f79875b237c548f0b600c3a6af8 SHA1 75aa24fe050c295e16aaeb31a216c1d97952c84e SHA256 a38b10a7a1b6c054fb15035f3197f566ac6b23bc2acd5958052165ae7ce5c11c +DIST openfst-1.2.7.tar.gz 668134 SHA256 a38b10a7a1b6c054fb15035f3197f566ac6b23bc2acd5958052165ae7ce5c11c SHA512 899297a12b51acef51a82148a04160acd4bb4e1925da18e20a810814401542aaa582928ae3b80b96f49890420796cae7acd7cbf1d21fb6bc6c755254f1ae2c67 WHIRLPOOL b9c1d9a7b592a43cd77aa6778451c9de8bbf135f39f1415d467b25279c6a360c9537dcdb8b9795023e482462668e61ad66de8e843f211b72a7986b448d6e200a +DIST openfst-1.3.2.tar.gz 723259 SHA256 4e1c2e4f6c54aef15cf13f4f01611ac72122a97214dfa7dab0b7d1a7e1214602 SHA512 5cbaebc3e99c2156379bdaeddef6972b37019cbdce7e2744cf5020f300e959410dce8d1fb1b354c3691975a2d1c0f40123feab46ded59919e4b13a010bbb78f0 WHIRLPOOL a0ca8e814ff1f7c09fd64687dacadf66da3945560e3b16f9afc797df391dc85b7d124314354ddd823ee142131b3d7bbd7914f5659e8c6fc49e8b0abac74be0b2 diff --git a/sci-misc/openfst/openfst-1.3.2.ebuild b/sci-misc/openfst/openfst-1.3.2.ebuild new file mode 100644 index 000000000..98cbaa76e --- /dev/null +++ b/sci-misc/openfst/openfst-1.3.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils flag-o-matic multilib + +DESCRIPTION="Finite State Transducer tools by Google et al." +HOMEPAGE="http://www.openfst.org" +SRC_URI="http://www.openfst.org/twiki/pub/FST/FstDownload/${P}.tar.gz" + +LICENSE="Apache-2.0" + +SLOT="0" + +KEYWORDS="~x86" + +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS NEWS README || die "docs missing" +} + +src_test() { + einfo "make test can take a few hours on moderately modern systems" + make test || die "check failed" +} |