Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-misc/openfst/
Date: Tue, 28 Feb 2017 20:06:00
Message-Id: 1488187218.f348c3f87e3263365440a33dd386dcc5f6529be7.jlec@gentoo
1 commit: f348c3f87e3263365440a33dd386dcc5f6529be7
2 Author: Pavel Denisov <pavel.a.denisov <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 27 09:20:18 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 09:20:18 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=f348c3f8
7
8 sci-misc/openfst: Version bump (#739)
9
10 Bump to EAPI 6
11 Enable extensions
12
13 Package-Manager: Portage-2.3.3, Repoman-2.3.1
14
15 sci-misc/openfst/openfst-1.6.1.ebuild | 30 ++++++++++++++++++++++++++++++
16 1 file changed, 30 insertions(+)
17
18 diff --git a/sci-misc/openfst/openfst-1.6.1.ebuild b/sci-misc/openfst/openfst-1.6.1.ebuild
19 new file mode 100644
20 index 000000000..4507b7e87
21 --- /dev/null
22 +++ b/sci-misc/openfst/openfst-1.6.1.ebuild
23 @@ -0,0 +1,30 @@
24 +# Copyright 1999-2017 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=6
28 +
29 +DESCRIPTION="Finite State Transducer tools by Google et al"
30 +HOMEPAGE="http://www.openfst.org"
31 +SRC_URI="http://www.openfst.org/twiki/pub/FST/FstDownload/${P}.tar.gz"
32 +
33 +LICENSE="Apache-2.0"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +
37 +src_configure() {
38 + local myeconfargs=(
39 + --enable-compact-fsts
40 + --enable-compress
41 + --enable-const-fsts
42 + --enable-far
43 + --enable-linear-fsts
44 + --enable-lookahead-fsts
45 + --enable-mpdt
46 + --enable-ngram-fsts
47 + --enable-pdt
48 + --enable-special
49 + --enable-bin
50 + --enable-grm
51 + )
52 + econf ${myeconfargs[@]}
53 +}