32 lines
556 B
Bash
32 lines
556 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=0
|
|
|
|
inherit font
|
|
|
|
DESCRIPTION="Pothana 2000 and Vemana fonts for the Telugu script"
|
|
HOMEPAGE="http://www.kavya-nandanam.com/"
|
|
SRC_URI="mirror://gentoo/${P}.zip"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ppc64 x86"
|
|
IUSE="doc"
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND=""
|
|
|
|
S="${WORKDIR}"
|
|
FONT_S="${WORKDIR}"
|
|
FONT_SUFFIX="ttf"
|
|
|
|
FONT_CONF=( "${FILESDIR}/65-pothana2k.conf" )
|
|
|
|
src_install() {
|
|
font_src_install
|
|
if use doc
|
|
then
|
|
dodoc MANUAL.PDF
|
|
fi
|
|
}
|