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/zh-kcfonts/zh-kcfonts-1.05-r2.ebuild

50 lines
1.3 KiB

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/zh-kcfonts/zh-kcfonts-1.05-r2.ebuild,v 1.10 2007/07/22 07:11:28 dirtyepic Exp $
inherit toolchain-funcs eutils
KCFONTS="${P}.tgz"
MY_PN="kcfonts"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Kuo Chauo Chinese Fonts collection in BIG5 encoding"
SRC_URI="ftp://freebsd.sinica.edu.tw/pub/distfiles/${MY_P}.tar.gz
ftp://wm28.csie.ncu.edu.tw/pub/distfiles/${MY_P}.tar.gz
mirror://gentoo/${MY_P}-freebsd-aa_ad.patch.gz"
HOMEPAGE="http://freebsd.sinica.edu.tw/"
# no real homepage exists, but this was written by Taiwanese FreeBSD devs
LICENSE="freedist"
SLOT="0"
KEYWORDS="alpha amd64 arm ia64 ppc s390 sh sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="x11-apps/mkfontdir
x11-apps/bdftopcf"
RDEPEND=""
S="${WORKDIR}"
FONTPATH="/usr/share/fonts/${PN}"
# Only installs fonts
RESTRICT="strip binchecks"
src_unpack() {
unpack ${MY_P}.tar.gz
EPATCH_OPTS="-p0 -d ${S}" epatch "${DISTDIR}/${MY_P}-freebsd-aa_ad.patch.gz"
EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}/${MY_P}-code-fixups.patch"
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
insinto ${FONTPATH}
doins *.pcf.gz || die
sort kc_fonts.alias | uniq > "${T}/fonts.alias"
doins "${T}/fonts.alias" || die
mkfontdir "${D}/${FONTPATH}"
dodoc 00README Xdefaults.*
}