Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: font.eclass
Date: Sun, 16 Sep 2007 02:25:39
Message-Id: E1IWji0-0002l2-J1@stork.gentoo.org
1 dirtyepic 07/09/16 02:18:04
2
3 Modified: font.eclass
4 Log:
5 Do permission setting in ${D} rather than ${WORKDIR}.
6
7 Revision Changes Path
8 1.28 eclass/font.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.28&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.28&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?r1=1.27&r2=1.28
13
14 Index: font.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/font.eclass,v
17 retrieving revision 1.27
18 retrieving revision 1.28
19 diff -u -r1.27 -r1.28
20 --- font.eclass 16 Aug 2007 00:54:11 -0000 1.27
21 +++ font.eclass 16 Sep 2007 02:18:04 -0000 1.28
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2007 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.27 2007/08/16 00:54:11 dirtyepic Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.28 2007/09/16 02:18:04 dirtyepic Exp $
27
28 # Author: foser <foser@g.o>
29
30 @@ -83,9 +83,9 @@
31 insinto "${FONTDIR}"
32
33 for suffix in ${FONT_SUFFIX}; do
34 - # ensure fonts are world readable to prevent fontconfig segfaults
35 - chmod 0644 *.${suffix}
36 doins *.${suffix}
37 + # ensure fonts are world readable to prevent fontconfig segfaults
38 + chmod -v 0644 ${D}${FONTDIR}/*.${suffix}
39 done
40
41 rm -f fonts.{dir,scale} encodings.dir
42
43
44
45 --
46 gentoo-commits@g.o mailing list