blob: a2ad0ac99be7f7880a4aadd58696a2daab53bda6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/pothana2k/pothana2k-2006-r1.ebuild,v 1.1 2008/06/05 11:44:24 loki_val Exp $
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="~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
}
pkg_postinst() {
elog "To actually use this font for rendering Telugu, enable it in fontconfig:"
elog "eselect fontconfig enable 65-pothana2k.conf"
}
|