Gentoo Archives: gentoo-commits

From: Flammie Pirinen <flammie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-misc/openfst/
Date: Tue, 31 Jul 2012 00:01:32
Message-Id: 1343692547.5032760835ce3de16d7065aa498f3382c86df0fc.flammie@gentoo
1 commit: 5032760835ce3de16d7065aa498f3382c86df0fc
2 Author: Flammie Pirinen <flammie <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 30 23:55:47 2012 +0000
4 Commit: Flammie Pirinen <flammie <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 30 23:55:47 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=50327608
7
8 Version bump.
9
10 (Portage version: 2.1.10.65/git/Linux i686, unsigned Manifest commit)
11
12 ---
13 sci-misc/openfst/ChangeLog | 7 ++++++-
14 sci-misc/openfst/openfst-1.3.2.ebuild | 30 ++++++++++++++++++++++++++++++
15 2 files changed, 36 insertions(+), 1 deletions(-)
16
17 diff --git a/sci-misc/openfst/ChangeLog b/sci-misc/openfst/ChangeLog
18 index 08df6aa..e2ca5a1 100644
19 --- a/sci-misc/openfst/ChangeLog
20 +++ b/sci-misc/openfst/ChangeLog
21 @@ -1,7 +1,12 @@
22 # ChangeLog for sci-misc/openfst
23 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
24 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
25 # $Header: $
26
27 +*openfst-1.3.2 (30 Jul 2012)
28 +
29 + 30 Jul 2012; Flammie Pirinen <flammie@g.o> +openfst-1.3.2.ebuild:
30 + Version bump.
31 +
32 25 Oct 2011; Justin Lecher <jlec@g.o> metadata.xml:
33 Removed no-herd from herd tag in metadata.xml
34
35
36 diff --git a/sci-misc/openfst/openfst-1.3.2.ebuild b/sci-misc/openfst/openfst-1.3.2.ebuild
37 new file mode 100644
38 index 0000000..98cbaa7
39 --- /dev/null
40 +++ b/sci-misc/openfst/openfst-1.3.2.ebuild
41 @@ -0,0 +1,30 @@
42 +# Copyright 1999-2012 Gentoo Foundation
43 +# Distributed under the terms of the GNU General Public License v2
44 +# $Header: $
45 +
46 +inherit eutils flag-o-matic multilib
47 +
48 +DESCRIPTION="Finite State Transducer tools by Google et al."
49 +HOMEPAGE="http://www.openfst.org"
50 +SRC_URI="http://www.openfst.org/twiki/pub/FST/FstDownload/${P}.tar.gz"
51 +
52 +LICENSE="Apache-2.0"
53 +
54 +SLOT="0"
55 +
56 +KEYWORDS="~x86"
57 +
58 +IUSE=""
59 +
60 +DEPEND=""
61 +RDEPEND="${DEPEND}"
62 +
63 +src_install() {
64 + emake DESTDIR="${D}" install || die "install failed"
65 + dodoc AUTHORS NEWS README || die "docs missing"
66 +}
67 +
68 +src_test() {
69 + einfo "make test can take a few hours on moderately modern systems"
70 + make test || die "check failed"
71 +}