diff options
author | Flammie Pirinen <flammie@iki.fi> | 2010-02-22 18:58:50 +0200 |
---|---|---|
committer | Flammie Pirinen <flammie@iki.fi> | 2010-02-22 19:29:33 +0200 |
commit | 9559a1b1cc7c8e27498761effde3260185471430 (patch) | |
tree | 226648ef1632e68fa0f729ef7c279c0ffecf8a34 /sci-misc | |
parent | touch mpir to enable testing on non-x86/amd64 archs. Remove old mpir. (diff) | |
download | sci-9559a1b1cc7c8e27498761effde3260185471430.tar.gz sci-9559a1b1cc7c8e27498761effde3260185471430.tar.bz2 sci-9559a1b1cc7c8e27498761effde3260185471430.zip |
Version bump.
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/openfst/ChangeLog | 7 | ||||
-rw-r--r-- | sci-misc/openfst/Manifest | 2 | ||||
-rw-r--r-- | sci-misc/openfst/openfst-1.1.ebuild | 31 |
3 files changed, 39 insertions, 1 deletions
diff --git a/sci-misc/openfst/ChangeLog b/sci-misc/openfst/ChangeLog index 87aefbb22..5362fdb7d 100644 --- a/sci-misc/openfst/ChangeLog +++ b/sci-misc/openfst/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for sci-misc/openfst -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*openfst-1.1 (22 Feb 2010) + + 22 Feb 2010; <flammie@gentoo.org> +openfst-1.1.ebuild: + Version bump. + *openfst-20080422 (20 Oct 2008) 20 Oct 2008; Flammie Pirinen <flammie@gentoo.org> diff --git a/sci-misc/openfst/Manifest b/sci-misc/openfst/Manifest index cec588520..459266a1a 100644 --- a/sci-misc/openfst/Manifest +++ b/sci-misc/openfst/Manifest @@ -1,5 +1,7 @@ AUX openfst-20080422_beta-gcc-4.3.patch 2918 RMD160 0aeceeb049614182f2e83fa3a149ba5aa54cffaa SHA1 64bb951888f83a3ba9f780b4ec4dec46d9d20303 SHA256 8aab92d28f806074916d76245de4c46b15c9ac302a8417e4cb168aa8d755cb12 DIST OpenFst-beta-20080422.tgz 156800 RMD160 480e4da360d3d854a85473a8f40f7d1a53ad6421 SHA1 3266501f9362a22e52982d940fa888cf699ae88b SHA256 9b07d6ceb1a88cd01f7e41b511cd71b2c56278ad924c5947b71e642bab0bfff2 +DIST openfst-1.1.tar.gz 513404 RMD160 45657bb11f91ffdce5261ff6f4c103c164cc161b SHA1 b070f84a981dfadc4c049f505bd3406a43dfa55d SHA256 445e364eaf44d13c0c876f0702abe9680eee80fdd731f6a653439e5f7849b50a +EBUILD openfst-1.1.ebuild 525 RMD160 412f46c3fe4cca05e0d46f6054f8d997df336f34 SHA1 920945fa6a7832be39934b2463ddf80fa17707bd SHA256 4eb268c976a676d8bfd931704a04f5d31356e4ea8aa791a8cef214bbc5d240d0 EBUILD openfst-20080422_beta.ebuild 1279 RMD160 c2b8f98642066bae459262ed6997e3441119a9fb SHA1 e204748bb06931ddc92d5eaa38a52f550da18665 SHA256 2ba750327cb706e523d5a3de49751fc1089eb8277192eef9b26e49e42dc4060a MISC ChangeLog 503 RMD160 d4e3bda8c7fa5051018af8491dda74c11f1e9b43 SHA1 3340a9878dc3148f1c6f3e7e45df46f6130e04b8 SHA256 cc01dc80d5cba977362c82aaa37cad3806bdaa8a450defbd0bbb0ee269527b95 MISC metadata.xml 223 RMD160 754bf1189c9d51090f3e0439f6e7d6f603b93df0 SHA1 54348ca01c174e03ff3318b2a9da50d970db6695 SHA256 5c57a999484660ea4a3e55f9c526bb38097d5c1cb2356353133ec4d7e89f1f88 diff --git a/sci-misc/openfst/openfst-1.1.ebuild b/sci-misc/openfst/openfst-1.1.ebuild new file mode 100644 index 000000000..c8c166cbd --- /dev/null +++ b/sci-misc/openfst/openfst-1.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils multilib + +DESCRIPTION="Finite State Transducer tools by Google et al." +HOMEPAGE="http://www.openfst.org" +SRC_URI="http://mohri-lt.cs.nyu.edu/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" +} + |