55 lines
2.0 KiB
Bash
55 lines
2.0 KiB
Bash
|
# Copyright 1999-2015 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/media-fonts/corefonts/corefonts-1-r7.ebuild,v 1.2 2015/04/28 09:19:30 yngwin Exp $
|
||
|
|
||
|
EAPI=5
|
||
|
inherit font
|
||
|
|
||
|
DESCRIPTION="Microsoft's TrueType core fonts"
|
||
|
HOMEPAGE="http://corefonts.sourceforge.net/"
|
||
|
SRC_URI="mirror://gentoo/EUupdate.EXE
|
||
|
mirror://sourceforge/corefonts/andale32.exe
|
||
|
mirror://sourceforge/corefonts/arialb32.exe
|
||
|
mirror://sourceforge/corefonts/comic32.exe
|
||
|
mirror://sourceforge/corefonts/courie32.exe
|
||
|
mirror://sourceforge/corefonts/georgi32.exe
|
||
|
mirror://sourceforge/corefonts/impact32.exe
|
||
|
mirror://sourceforge/corefonts/webdin32.exe
|
||
|
mirror://sourceforge/corefonts/wd97vwr32.exe
|
||
|
http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-US/IELPKTH.CAB
|
||
|
mirror://sourceforge/corefonts/times32.exe
|
||
|
mirror://sourceforge/corefonts/trebuc32.exe
|
||
|
mirror://sourceforge/corefonts/verdan32.exe
|
||
|
http://download.microsoft.com/download/9/F/7/9F742C8F-8C70-4498-B4D1-539BE36A1077/PowerPointViewer.exe"
|
||
|
|
||
|
|
||
|
LICENSE="MSttfEULA"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
|
||
|
IUSE="X"
|
||
|
|
||
|
DEPEND="app-arch/cabextract"
|
||
|
|
||
|
S=${WORKDIR}
|
||
|
FONT_S=${WORKDIR}
|
||
|
FONT_SUFFIX="ttf"
|
||
|
|
||
|
src_unpack() {
|
||
|
for exe in ${A} ; do
|
||
|
echo ">>> Unpacking ${exe} to ${WORKDIR}"
|
||
|
cabextract --lowercase "${DISTDIR}"/${exe} > /dev/null \
|
||
|
|| die "failed to unpack ${exe}"
|
||
|
done
|
||
|
cabextract -F --lowercase "${WORKDIR}/viewer1.cab" > /dev/null \
|
||
|
|| die "failed to unpack extra fonts"
|
||
|
cabextract --lowercase "${WORKDIR}/ppviewer.cab" > /dev/null \
|
||
|
|| die "failed to unpack extra fonts"
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
font_src_install
|
||
|
# The license explicitly states that the license must be distributed with the
|
||
|
# fonts. The only way to do that for the binpkg is to include it.
|
||
|
dodoc license.txt
|
||
|
}
|