diff options
author | Paul Healy <lmiphay@gmail.com> | 2020-05-31 21:55:18 +0100 |
---|---|---|
committer | Paul Healy <lmiphay@gmail.com> | 2020-05-31 21:55:18 +0100 |
commit | a4ae473ae083578bdc96424c0411b4041f4466b2 (patch) | |
tree | b50b4cb2d2252c997894e1c2876ec1b7e7c11a0d | |
parent | revbump firestorm (diff) | |
download | lmiphay-a4ae473ae083578bdc96424c0411b4041f4466b2.tar.gz lmiphay-a4ae473ae083578bdc96424c0411b4041f4466b2.tar.bz2 lmiphay-a4ae473ae083578bdc96424c0411b4041f4466b2.zip |
add ebuild for symbola font
Signed-off-by: Paul Healy <lmiphay@gmail.com>
-rw-r--r-- | licenses/UFAS | 22 | ||||
-rw-r--r-- | media-fonts/symbola/Manifest | 2 | ||||
-rw-r--r-- | media-fonts/symbola/symbola-1.ebuild | 24 |
3 files changed, 48 insertions, 0 deletions
diff --git a/licenses/UFAS b/licenses/UFAS new file mode 100644 index 0000000..defb3f3 --- /dev/null +++ b/licenses/UFAS @@ -0,0 +1,22 @@ +Unicode Fonts for Ancient Scripts: License Agreement + +ufas: refers to the set of all fonts and documents available on this site; +are licensed under the conditons stated in this License Agreement. + +developer: refers to George Douros, Kolokotroni 3, Larissa, 41223, Greece; +is the sole developer and exclusive owner of all ufas material; +retains all rights to previous, current and future versions of ufas; +does not warrant the performance or results user may obtain by using ufas sofware; +is in no event liable to user or anyone else for any consequental, incidental or special damages, +or for any claim against user by any third party seeking such damages. + +user: refers to anyone who downloads ufas from this, or any other, site; +may use ufas for strictly personal and non-commercial purposes, without charge; +is allowed a single instantaton and no network installaton; +agrees not to adapt, modify, alter, translate, convert, or otherwise change ufas; +may not host, loan to service bureaus or in any way redistribute ufas, with or without charge; +may not license, sell, rent, lease, sublicense, lend, or in any way distribute ufas for proft. + +Commercial or educatonal use of ufas is not permited. + +This and all ufas licenses are exclusively issued by developer. diff --git a/media-fonts/symbola/Manifest b/media-fonts/symbola/Manifest new file mode 100644 index 0000000..a041fe1 --- /dev/null +++ b/media-fonts/symbola/Manifest @@ -0,0 +1,2 @@ +DIST Symbola.zip 3667393 BLAKE2B 90cbd2551a7fca0ba406a059c4dce6ea279feb345572e9d2c077e4b6a875d890b982e8bb45970e02356a6d0fd8ebf7cc8e2e24d8094151b0b9d363e15d71e1f7 SHA512 ba671168ab2dc15293ae404f849f13b9b1f4684ce1856a8c2bbf8b9a2e2d70a27f86ef166a5e3ab6260e651c8276537ee272710a7e1fb49beef26fbed6355a35 +EBUILD symbola-1.ebuild 548 BLAKE2B 4d5f9ed445b6f5a2296b18e615e23d96a2f43116406359c5a8b729cc3f1bb24379ca8ef532c612af933cc34f34fb3d28d887c33f707e4dcd974a0e97f2fe6864 SHA512 2d2af1d6852ab50666089c2cba47f992c3aa8181b5ccbe95e02243b76b4c9669cd8d3fdeb26b48df90d0bc84077e254e59a7ebf2c46ae4b9c942395ca60fee0d diff --git a/media-fonts/symbola/symbola-1.ebuild b/media-fonts/symbola/symbola-1.ebuild new file mode 100644 index 0000000..2b30c04 --- /dev/null +++ b/media-fonts/symbola/symbola-1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit font + +DESCRIPTION="Multilingual support and Symbol blocks of The Unicode Standard" +HOMEPAGE="https://dn-works.com/ufas/" +SRC_URI="https://dn-works.com/wp-content/uploads/2020/UFAS-Fonts/Symbola.zip" +LICENSE="UFAS" +SLOT="0" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd" + +FONT_PN="symbola" +FONT_SUFFIX="ttf" + +S=${WORKDIR} + +src_prepare() +{ + mv Symbola.otf symbola.ttf || die + default +} |