Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/lcdf-typetools/
Date: Thu, 03 Oct 2019 13:22:55
Message-Id: 1570108944.9d685b91037be6853ae348bea8c92afce87da8ee.aballier@gentoo
1 commit: 9d685b91037be6853ae348bea8c92afce87da8ee
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 3 13:16:01 2019 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 3 13:22:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d685b91
7
8 app-text/lcdf-typetools: bump to 2.108.
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 app-text/lcdf-typetools/Manifest | 1 +
14 .../lcdf-typetools/lcdf-typetools-2.108.ebuild | 28 ++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/app-text/lcdf-typetools/Manifest b/app-text/lcdf-typetools/Manifest
18 index c6e5dc8d88d..f2f17c7c48a 100644
19 --- a/app-text/lcdf-typetools/Manifest
20 +++ b/app-text/lcdf-typetools/Manifest
21 @@ -1,2 +1,3 @@
22 DIST lcdf-typetools-2.106.tar.gz 643503 BLAKE2B cb016da74dfbad92808292842de653badec4dd3b703fee5e177016856a795e1383ceeed68de668846cce167b7b9c74bd7e0b17ea3a60b2f9b9caa0b73444e02d SHA512 039215132585214e6518864161885f7a06f08f8b36b002a961b1d83182e388b31eb034eaa4466ba56a2af52e1cfb202e88f004be17c22df1343f94481e3114cf
23 DIST lcdf-typetools-2.107.tar.gz 652445 BLAKE2B bbbc428673c8e036f8d3be8ec80dbcf8892f60976fee7f11d622af8442c4d3eda0e118d47b364f55fe0dc8b53062ece0926be1d67e6627500a787bce810c074c SHA512 be54d4346d567c640b260dc513854085901af96b82701fccb8f0feae4b373ac69962c568a648515eb9ebfcabc828359ab2d742947ccdf9422643b0d889961ff3
24 +DIST lcdf-typetools-2.108.tar.gz 651350 BLAKE2B c60986672a31bcf47b876fa75d04a976be761442b04b1541f7f9082521d716708542b8708fd3da558f9df6b459cca1043a7e1ee2eb006f94054611dd4ef348d5 SHA512 2c7afe1c6838f432ddd5bbd5fa86a58743242d5a2203220d3cd0153c0c69f23ca734e8d4352ed3c8a6bffc1c61bb93c19d00c6483545a09d6f8363f870bf2fd0
25
26 diff --git a/app-text/lcdf-typetools/lcdf-typetools-2.108.ebuild b/app-text/lcdf-typetools/lcdf-typetools-2.108.ebuild
27 new file mode 100644
28 index 00000000000..65192f6e24b
29 --- /dev/null
30 +++ b/app-text/lcdf-typetools/lcdf-typetools-2.108.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=5
36 +
37 +inherit toolchain-funcs flag-o-matic
38 +
39 +DESCRIPTION="Font utilities for eg manipulating OTF"
40 +SRC_URI="http://www.lcdf.org/type/${P}.tar.gz"
41 +HOMEPAGE="http://www.lcdf.org/type/#typetools"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
43 +SLOT="0"
44 +LICENSE="GPL-2"
45 +IUSE="+kpathsea"
46 +
47 +RDEPEND="kpathsea? ( virtual/tex-base dev-libs/kpathsea )"
48 +DEPEND="${RDEPEND}
49 + virtual/pkgconfig"
50 +
51 +src_configure() {
52 + use kpathsea && has_version '>=dev-libs/kpathsea-6.2.1' && append-cppflags "$($(tc-getPKG_CONFIG) --cflags kpathsea)"
53 + econf $(use_with kpathsea)
54 +}
55 +
56 +src_install() {
57 + emake DESTDIR="${D}" install
58 + dodoc NEWS.md README.md ONEWS
59 +}