You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-fonts/symbola/symbola-7.12.ebuild

32 lines
846 B

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
MY_PN="${PN/s/S}"
inherit font
DESCRIPTION="Unicode font for Latin, IPA Extensions, Greek, Cyrillic and many Symbol Blocks"
HOMEPAGE="http://users.teilar.gr/~g1951d/"
SRC_URI="http://users.teilar.gr/~g1951d/${MY_PN}.ttf -> ${P}.ttf
doc? ( http://users.teilar.gr/~g1951d/${MY_PN}.docx -> ${P}.docx
http://users.teilar.gr/~g1951d/${MY_PN}.pdf -> ${P}.pdf )"
LICENSE="Unicode_Fonts_for_Ancient_Scripts"
SLOT="0"
KEYWORDS="amd64 ~arm ppc x86"
IUSE="doc"
S="${WORKDIR}"
FONT_SUFFIX="ttf"
src_prepare() {
cp "${DISTDIR}"/${P}.ttf "${S}"/${MY_PN}.ttf || die
if use doc; then
DOCS="${MY_PN}.docx ${MY_PN}.pdf"
cp "${DISTDIR}"/${P}.docx "${S}"/${MY_PN}.docx || die
cp "${DISTDIR}"/${P}.pdf "${S}"/${MY_PN}.pdf || die
fi
}