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

33 lines
971 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/symbola/symbola-7.12.ebuild,v 1.1 2013/09/15 21:09:15 chithanh Exp $
EAPI=4
MY_PN="${PN/s/S}"
inherit font
DESCRIPTION="Unicode font for Basic 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
}