Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/arabeyes-fonts/
Date: Fri, 22 Feb 2019 21:08:52
Message-Id: 1550869686.f79a2a1c025c67abb4fd8ebb7e5a5380616fba8e.monsieurp@gentoo
1 commit: f79a2a1c025c67abb4fd8ebb7e5a5380616fba8e
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 22 16:17:19 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 22 21:08:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f79a2a1c
7
8 media-fonts/arabeyes-fonts: EAPI6, fix HOMEPAGE.
9
10 Closes: https://bugs.gentoo.org/678592
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/11141
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 .../arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild | 29 ++++++++++++++++++++++
16 1 file changed, 29 insertions(+)
17
18 diff --git a/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild b/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild
19 new file mode 100644
20 index 00000000000..81e650ec5df
21 --- /dev/null
22 +++ b/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild
23 @@ -0,0 +1,29 @@
24 +# Copyright 1999-2019 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=6
28 +
29 +inherit font
30 +
31 +MY_PN="ae_fonts"
32 +S="${WORKDIR}"/${MY_PN}_${PV}
33 +
34 +DESCRIPTION="Arabeyes Arabic TrueType fonts"
35 +HOMEPAGE="https://www.arabeyes.org/Khotot#2.0"
36 +SRC_URI="mirror://sourceforge/arabeyes/${MY_PN}_${PV}.tar.bz2"
37 +LICENSE="GPL-2"
38 +
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
41 +
42 +FONT_SUFFIX="ttf"
43 +
44 +DOCS="README ChangeLog"
45 +
46 +src_install() {
47 + local d
48 + for d in AAHS AGA FS Kasr MCS Shmookh; do
49 + FONT_S="${S}"/$d
50 + font_src_install
51 + done
52 +}