Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/font-misc-ethiopic/
Date: Sat, 25 Nov 2017 20:19:11
Message-Id: 1511641120.5653411984a7424af40cc3cbb973ac516780cdb9.mattst88@gentoo
1 commit: 5653411984a7424af40cc3cbb973ac516780cdb9
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Sat Nov 25 14:40:22 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 25 20:18:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56534119
7
8 media-fonts/font-misc-ethiopic: EAPI 3 -> 5
9
10 Also remove unnecessary depedency on x11-apps/bdftopcf
11
12 Package-Manager: Portage-2.3.16, Repoman-2.3.6
13 Closes: https://github.com/gentoo/gentoo/pull/6296
14
15 media-fonts/font-misc-ethiopic/Manifest | 2 +-
16 .../font-misc-ethiopic-1.0.3-r1.ebuild | 21 +++++++++++++++++++++
17 2 files changed, 22 insertions(+), 1 deletion(-)
18
19 diff --git a/media-fonts/font-misc-ethiopic/Manifest b/media-fonts/font-misc-ethiopic/Manifest
20 index 33f5d559b5d..5389338f4b9 100644
21 --- a/media-fonts/font-misc-ethiopic/Manifest
22 +++ b/media-fonts/font-misc-ethiopic/Manifest
23 @@ -1 +1 @@
24 -DIST font-misc-ethiopic-1.0.3.tar.bz2 245606 SHA256 53cb1fd83afdbe7939c0eac34003676ee0e6023216892d98054db90b703c98a5 SHA512 b3e3f7462f37216796730a894761c7d60d5ede0f51351997e6c3c92e3136c788a2710690f482d05ed1396a4b6be452e1f871febc7e5b7a1a67e43bcc1ec7c77d WHIRLPOOL ce823c72f9b9c021b3d4bcb4756897f6b8f8682940d403e7004550ecfa2ae42439e57a914925a7fe9fc7bdf6c262806fcb125239d54ec61f07467f53addee97c
25 +DIST font-misc-ethiopic-1.0.3.tar.bz2 245606 BLAKE2B e0cf89f4500226b7213d6f3f88b3bf575501140d8742fe5e30b07eefd2c1fe2fc9bfe941639032d3b5ce45eb7e6f352af7b6468e7f8b0fc941ed9cee8d531f96 SHA512 b3e3f7462f37216796730a894761c7d60d5ede0f51351997e6c3c92e3136c788a2710690f482d05ed1396a4b6be452e1f871febc7e5b7a1a67e43bcc1ec7c77d
26
27 diff --git a/media-fonts/font-misc-ethiopic/font-misc-ethiopic-1.0.3-r1.ebuild b/media-fonts/font-misc-ethiopic/font-misc-ethiopic-1.0.3-r1.ebuild
28 new file mode 100644
29 index 00000000000..fe37758e952
30 --- /dev/null
31 +++ b/media-fonts/font-misc-ethiopic/font-misc-ethiopic-1.0.3-r1.ebuild
32 @@ -0,0 +1,21 @@
33 +# Copyright 1999-2017 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=5
37 +FONT_DIR="OTF"
38 +
39 +inherit xorg-2
40 +
41 +DESCRIPTION="Miscellaneous Ethiopic fonts"
42 +
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
44 +IUSE=""
45 +
46 +FONT_OPTIONS="--with-otf-fontdir=${EPREFIX}/usr/share/fonts/OTF"
47 +
48 +src_install() {
49 + xorg-2_src_install
50 + # TTF fonts are not supposed to be installed.
51 + # Also fixes file collision per bug #309689
52 + rm -rf "${ED}/usr/share/fonts/TTF" || die
53 +}