Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-fonts/corefonts: corefonts-1-r5.ebuild ChangeLog
Date: Wed, 23 Feb 2011 10:11:21
Message-Id: 20110223101109.EDCF420054@flycatcher.gentoo.org
1 robbat2 11/02/23 10:11:09
2
3 Modified: ChangeLog
4 Added: corefonts-1-r5.ebuild
5 Log:
6 To fully comply with the license, we need to make sure a copy of it ends up on the system (and inside any binpkgs we generate). Revbump to support the new LiveDVD release.
7
8 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.35 media-fonts/corefonts/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/corefonts/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/corefonts/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/corefonts/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-fonts/corefonts/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -p -w -b -B -u -u -r1.34 -r1.35
23 --- ChangeLog 9 Jan 2010 21:22:09 -0000 1.34
24 +++ ChangeLog 23 Feb 2011 10:11:09 -0000 1.35
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-fonts/corefonts
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-fonts/corefonts/ChangeLog,v 1.34 2010/01/09 21:22:09 fauli Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/corefonts/ChangeLog,v 1.35 2011/02/23 10:11:09 robbat2 Exp $
31 +
32 +*corefonts-1-r5 (23 Feb 2011)
33 +
34 + 23 Feb 2011; Robin H. Johnson <robbat2@g.o> +corefonts-1-r5.ebuild:
35 + To fully comply with the license, we need to make sure a copy of it ends up
36 + on the system (and inside any binpkgs we generate). Revbump to support the
37 + new LiveDVD release.
38
39 09 Jan 2010; Christian Faulhammer <fauli@g.o>
40 corefonts-1-r4.ebuild:
41
42
43
44 1.1 media-fonts/corefonts/corefonts-1-r5.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/corefonts/corefonts-1-r5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/corefonts/corefonts-1-r5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: corefonts-1-r5.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-fonts/corefonts/corefonts-1-r5.ebuild,v 1.1 2011/02/23 10:11:09 robbat2 Exp $
54
55 inherit font
56
57 DESCRIPTION="Microsoft's TrueType core fonts"
58 HOMEPAGE="http://corefonts.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/corefonts/andale32.exe
60 mirror://sourceforge/corefonts/arial32.exe
61 mirror://sourceforge/corefonts/arialb32.exe
62 mirror://sourceforge/corefonts/comic32.exe
63 mirror://sourceforge/corefonts/courie32.exe
64 mirror://sourceforge/corefonts/georgi32.exe
65 mirror://sourceforge/corefonts/impact32.exe
66 mirror://sourceforge/corefonts/times32.exe
67 mirror://sourceforge/corefonts/trebuc32.exe
68 mirror://sourceforge/corefonts/verdan32.exe
69 mirror://sourceforge/corefonts/webdin32.exe"
70
71 LICENSE="MSttfEULA"
72 SLOT="0"
73 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~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"
74 IUSE="X"
75
76 DEPEND="app-arch/cabextract"
77 RDEPEND=""
78
79 S=${WORKDIR}
80 FONT_S=${WORKDIR}
81 FONT_SUFFIX="ttf"
82
83 src_unpack() {
84 for exe in ${A} ; do
85 echo ">>> Unpacking ${exe} to ${WORKDIR}"
86 cabextract --lowercase "${DISTDIR}"/${exe} > /dev/null \
87 || die "failed to unpack ${exe}"
88 done
89 }
90
91 src_install() {
92 font_src_install
93 # The license explicitly states that the license must be distributed with the
94 # fonts. The only way to do that for the binpkg is to include it.
95 # We just have to copy it from the portdir because it's not actually inside
96 # upstream's own files...
97 dodoc "${PORTDIR}"/licenses/"${LICENSE}"
98 }