Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/offo-hyphenation/
Date: Thu, 01 Oct 2015 08:39:53
Message-Id: 1443686149.d85bd231377210c08d25015d5028ac913228d57b.monsieurp@gentoo
1 commit: d85bd231377210c08d25015d5028ac913228d57b
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 07:52:50 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 07:55:49 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d85bd231
7
8 dev-java/offo-hyphenation: EAPI 5 bump. Version bump.
9
10 Package-Manager: portage-2.2.18
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 dev-java/offo-hyphenation/Manifest | 1 +
14 .../offo-hyphenation/offo-hyphenation-2.0.ebuild | 41 ++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/dev-java/offo-hyphenation/Manifest b/dev-java/offo-hyphenation/Manifest
18 index 07c0ef9..3566401 100644
19 --- a/dev-java/offo-hyphenation/Manifest
20 +++ b/dev-java/offo-hyphenation/Manifest
21 @@ -1 +1,2 @@
22 DIST offo-hyphenation_v1.2.zip 378809 SHA256 026c3605416e921cdc5b24ba486fef306d1a4863ba95295f689b7190885e5c5a SHA512 ef0cb0aa7020bedd6c59f6d4cec95274f18fc5a7d19d24d1a05014c7c20b70c8e515aa7b7db4852a0c1bb87f594f638a906b5b61c0443804902cc9876d35d934 WHIRLPOOL 1a644a55a1769a866fa47e654310b942ef176396c3c2070c7b69f3e5e82e69156f42535363a127733753488bcddfee5b41b505ba512b4a0126f37fec96b6c98a
23 +DIST offo-hyphenation_v2.0.zip 858046 SHA256 79d341820583aa5b77ee00dc7da59bfafb92adceb88c7a1922fe300a90a22c4e SHA512 8a907a38dcb54ef1578973293efa2fcd771e3c77faedd537381f04f6f543b3f04ff8b8f96fb692274e9fe9cbdb2d3d8e5c7b29caae412271d9d8c023c079421b WHIRLPOOL 58e39e8caa8ef2dae2bdd715ceb8bd5a5b4c5879d61404558ebabeb4ee4256b6a1e0ee6932e0e81d6162bb65a8fbf8e70a5683df102851d764df3dfae98c1bb7
24
25 diff --git a/dev-java/offo-hyphenation/offo-hyphenation-2.0.ebuild b/dev-java/offo-hyphenation/offo-hyphenation-2.0.ebuild
26 new file mode 100644
27 index 0000000..8056c5c
28 --- /dev/null
29 +++ b/dev-java/offo-hyphenation/offo-hyphenation-2.0.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +DESCRIPTION="Hyphenation patterns for Apache Fop"
38 +HOMEPAGE="http://offo.sourceforge.net"
39 +# upstream will hopefully version future release...
40 +SRC_URI="mirror://sourceforge/offo/${PN}_v${PV}.zip"
41 +# review this upon update!
42 +LICENSE="GPL-2 Apache-2.0 LPPL-1.3b TeX"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
45 +IUSE="doc"
46 +
47 +RDEPEND=""
48 +DEPEND="app-arch/unzip"
49 +
50 +S="${WORKDIR}/${PN}"
51 +
52 +src_compile() { :; }
53 +
54 +src_install() {
55 + dodir /usr/share/${PN}/
56 + insinto /usr/share/${PN}/
57 + doins -r hyph
58 +
59 + if use doc; then
60 + dohtml -r images skin i*.html
61 + fi
62 +}
63 +
64 +pkg_postinst() {
65 + elog "This package installs hyphenation files for several languages"
66 + elog "into /usr/share/${PN}/hyph"
67 + elog "Check /usr/share/doc/${PF}/html/licenses.html for each file's license."
68 + elog "To compile the patterns, install dev-java/fop with USE=hyphenation."
69 + elog "Alternatively, use the uncompiled patterns via the <hyphenation-base>"
70 + elog "configuration option. See the documentation for more details."
71 +}