7ea578d829
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@1519 6952d904-891a-0410-993b-d76249ca496b
30 lines
896 B
Bash
30 lines
896 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=2
|
|
|
|
inherit font
|
|
|
|
DESCRIPTION="True Type Font that mimics the character set of the Commodore 64."
|
|
HOMEPAGE="http://www.devincook.com/goldparser/grammars/index.htm"
|
|
SRC_URI="http://www.devincook.com/goldparser/misc/Commodore-64-Fonts.zip"
|
|
|
|
LICENSE="as-is"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
|
|
IUSE="X"
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND=""
|
|
|
|
S=${WORKDIR}
|
|
FONT_S=${WORKDIR}
|
|
FONT_SUFFIX="ttf"
|
|
|
|
src_prepare() {
|
|
mv "${WORKDIR}/Commodore-64-v622.TTF" "${WORKDIR}/Commodore-64-v622.ttf"
|
|
mv "${WORKDIR}/Commodore Angled v1-1.ttf" "${WORKDIR}/Commodore-64-Angled.ttf"
|
|
mv "${WORKDIR}/Commodore Pixeled.ttf" "${WORKDIR}/Commodore-64-Pixeled.ttf"
|
|
mv "${WORKDIR}/Commodore Rounded v1-1.ttf" "${WORKDIR}/Commodore-64-Rounded.ttf"
|
|
} |