Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/lttoolbox/
Date: Sat, 24 Sep 2016 13:31:09
Message-Id: 1474723826.6998dabc062ee6eb26738d2074af7e39485b4dab.soap@gentoo
1 commit: 6998dabc062ee6eb26738d2074af7e39485b4dab
2 Author: Gerhard Bräunlich <wippbox <AT> gmx <DOT> net>
3 AuthorDate: Thu Sep 22 15:08:12 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 13:30:26 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6998dabc
7
8 sci-misc/lttoolbox: Version bump to 3.3.3 + EAPI bump 4 -> 6
9
10 Package-Manager: portage-2.2.28
11 Closes: https://github.com/gentoo/gentoo/pull/2387
12
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 sci-misc/lttoolbox/Manifest | 1 +
16 sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild | 28 ++++++++++++++++++++++++++++
17 2 files changed, 29 insertions(+)
18
19 diff --git a/sci-misc/lttoolbox/Manifest b/sci-misc/lttoolbox/Manifest
20 index 347bdd6..e7eca38 100644
21 --- a/sci-misc/lttoolbox/Manifest
22 +++ b/sci-misc/lttoolbox/Manifest
23 @@ -1,2 +1,3 @@
24 DIST lttoolbox-3.1.0.tar.gz 375031 SHA256 17ceeac6a2a2c0afdeded8f79594145b9964e78bc2ab8eb49bf2a35f63c80fb4 SHA512 156a404e83ed264e7f003eba3584b1db9de71c1403cc3bc824f0e295c50d84e7f1e2aa6b5af02c847723c0924bc4aa55eb394b94db3d8a61e62c29f266f97667 WHIRLPOOL 453513beb9f17a041f602435102bb06813f6f917a9f90a6ee2e52a53b371396f9bb39ee1b797a3a59df9e42aaee9a75394bf47f8641ee7b7c654f3b30e50f2a3
25 DIST lttoolbox-3.2.0.tar.gz 372484 SHA256 1359291173ae4af6cbaa625f5ab63ad288b91f72ed0555b2a676e3dfe9b4c1fc SHA512 b33fb99f81ec4dc1bbcc802a23de6b58259efd12e471fcc7f934563f8cadd2f52407b88b8100966f6ca814c56fa9408498fd79f7c6863c178cefa5918572b827 WHIRLPOOL 9f106cece87f18beaa6a47f40f1c0a7348e0bb5de8f298e7ba94021d898421d1e04314c416cf1c0d4a71450d06acbe3f69e7039a6815ae06e6d0854f321ce810
26 +DIST lttoolbox-3.3.3.tar.gz 454916 SHA256 5ccfc98bd71e1c9cbb952f3b01a6f615cf580f39ce74cdcb7221fc9b48f40617 SHA512 2e6338d39d2f16641c408076bd1d3b29fcd11e2d83e622b93fb7b91bae8eb92f58eacf978c72647d2872119be28b76093fc4afbfe22d7e9a62e1a87d818f9a3c WHIRLPOOL 164b8cc010692bbb5ecfdee80c25204f73bfef9aae7945987267ac230b9f3b070ba900ea8bb04c6347428611a3f48ee47cf4ba126e1b7735c7b9d45e5fe69880
27
28 diff --git a/sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild b/sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild
29 new file mode 100644
30 index 00000000..226537b
31 --- /dev/null
32 +++ b/sci-misc/lttoolbox/lttoolbox-3.3.3.ebuild
33 @@ -0,0 +1,28 @@
34 +# Copyright 1999-2016 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI=6
39 +inherit autotools
40 +
41 +DESCRIPTION="Toolbox for lexical processing, morphological analysis and generation of words"
42 +HOMEPAGE="https://www.apertium.org"
43 +SRC_URI="mirror://sourceforge/apertium/${P}.tar.gz"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="static-libs"
49 +
50 +RDEPEND="dev-libs/libxml2:2"
51 +DEPEND="${RDEPEND}
52 + virtual/pkgconfig"
53 +
54 +src_prepare() {
55 + default
56 + eautoreconf
57 +}
58 +
59 +src_configure() {
60 + econf $(use_enable static-libs static)
61 +}