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/terminus-font/terminus-font-4.30.ebuild

103 lines
3.2 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/terminus-font/terminus-font-4.30.ebuild,v 1.12 2011/05/06 15:38:03 jlec Exp $
EAPI="3"
inherit eutils font
DESCRIPTION="A clean fixed font for the console and X11"
HOMEPAGE="http://terminus-font.sourceforge.net/"
URI="mirror://sourceforge/${PN}/files/${P}"
SRC_URI="${URI}/${P}.tar.gz
ru-dv? ( ${URI}/${P}-dv1.diff.gz )
ru-g? ( ${URI}/${P}-ge1.diff.gz )
quote? ( ${URI}/${P}-gq2.diff.gz )
width? ( ${URI}/${P}-cm2.diff.gz )
bolddiag? ( ${URI}/${P}-kx3.diff.gz
a-like-o? ( ${URI}/${P}-kx3-ao2.diff.gz )
ru-i? ( ${URI}/${P}-kx3-ij1.diff.gz )
ru-k? ( ${URI}/${P}-kx3-ka2.diff.gz ) )
!bolddiag? ( a-like-o? ( ${URI}/${P}-ao2.diff.gz )
ru-i? ( ${URI}/${P}-ij1.diff.gz )
ru-k? ( ${URI}/${P}-ka2.diff.gz ) )
"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
IUSE="a-like-o ru-dv +ru-g quote ru-i ru-k width bolddiag +psf raw-font-data +pcf"
DEPEND="dev-lang/perl
sys-apps/gawk
app-arch/gzip
pcf? ( x11-apps/bdftopcf )"
RDEPEND=""
FONTDIR=/usr/share/fonts/terminus
DOCS="README README-BG"
pkg_setup() {
# Note: that pcf fonts can be loaded by freetype even if X is not installed.
# That's why configuration +pcf and -X is supported, bug #155783.
if use X && ! use pcf ; then
eerror "Fonts which works with Xserver are intalled only if pcf is enabled."
die "Either disable X use flag or enabled pcf."
fi
font_pkg_setup
}
src_prepare() {
# Upstream patches. Some of them are suggested to be applied by default
# dv - de NOT like latin g, but like caps greek delta
# ve NOT like greek beta, but like caps latin B
# ge - ge NOT like "mirrored" latin s, but like caps greek gamma
# ka - small ka NOT like minimised caps latin K, but like small latin k
if use bolddiag; then
epatch "${WORKDIR}"/${P}-kx3.diff
use a-like-o && epatch "${WORKDIR}"/${P}-kx3-ao2.diff
use ru-i && epatch "${WORKDIR}"/${P}-kx3-ij1.diff
use ru-k && epatch "${WORKDIR}"/${P}-kx3-ka2.diff
else
use a-like-o && epatch "${WORKDIR}"/${P}-ao2.diff
use ru-i && epatch "${WORKDIR}"/${P}-ij1.diff
use ru-k && epatch "${WORKDIR}"/${P}-ka2.diff
fi
use ru-dv && epatch "${WORKDIR}"/${P}-dv1.diff
use ru-g && epatch "${WORKDIR}"/${P}-ge1.diff
use quote && epatch "${WORKDIR}"/${P}-gq2.diff
use width && epatch "${WORKDIR}"/${P}-cm2.diff
epatch "${FILESDIR}"/${PN}-4.32-parallel-install.patch
}
src_configure() {
# selfwritten configure script
./configure \
--prefix="${EPREFIX}"/usr \
--psfdir="${EPREFIX}"/usr/share/consolefonts \
--acmdir="${EPREFIX}"/usr/share/consoletrans \
--unidir="${EPREFIX}"/usr/share/consoletrans \
--x11dir="${EPREFIX}"/${FONTDIR} || die
}
src_compile() {
if use psf; then emake psf txt || die; fi
if use raw-font-data; then emake raw || die; fi
if use pcf; then emake pcf || die; fi
}
src_install() {
if use psf; then
emake DESTDIR="${D}" install-psf install-uni install-acm install-ref || die
fi
if use raw-font-data; then
emake DESTDIR="${D}" install.raw || die
fi
if use pcf; then
emake DESTDIR="${D}" install-pcf || die
fi
font_src_install
}