diff options
author | Ben de Groot <yngwin@gentoo.org> | 2015-03-29 14:23:01 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2015-03-29 14:23:01 +0000 |
commit | 3e8b081991757a505a09a786f31173f383d0aa88 (patch) | |
tree | acf12b88f927e26dbeaa2d412b19031a276088a8 /media-fonts/corefonts/corefonts-1-r7.ebuild | |
parent | New addition written by me (diff) | |
download | historical-3e8b081991757a505a09a786f31173f383d0aa88.tar.gz historical-3e8b081991757a505a09a786f31173f383d0aa88.tar.bz2 historical-3e8b081991757a505a09a786f31173f383d0aa88.zip |
Add Tahoma optionally. Include shipped EULA (bug #416735).
Package-Manager: portage-2.2.18/cvs/Linux x86_64
Manifest-Sign-Key: 0x4FDF9CFD2FAC514E!
Diffstat (limited to 'media-fonts/corefonts/corefonts-1-r7.ebuild')
-rw-r--r-- | media-fonts/corefonts/corefonts-1-r7.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/media-fonts/corefonts/corefonts-1-r7.ebuild b/media-fonts/corefonts/corefonts-1-r7.ebuild new file mode 100644 index 000000000000..1aaf4cb25868 --- /dev/null +++ b/media-fonts/corefonts/corefonts-1-r7.ebuild @@ -0,0 +1,48 @@ +# 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.1 2015/03/29 14:22:51 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" + +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 tahoma" + +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 + if use tahoma; then + cabextract -F 'tahoma.ttf' "${WORKDIR}/viewer1.cab" > /dev/null \ + || die "failed to unpack tahoma.ttf" + fi +} + +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 +} |