Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: font.eclass
Date: Tue, 08 Jan 2008 17:12:26
Message-Id: E1JCHzz-0002bP-Og@stork.gentoo.org
1 pva 08/01/08 17:12:23
2
3 Modified: font.eclass
4 Log:
5 First stage of fixing bug #201834.
6
7 Revision Changes Path
8 1.35 eclass/font.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.35&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.35&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?r1=1.34&r2=1.35
13
14 Index: font.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/font.eclass,v
17 retrieving revision 1.34
18 retrieving revision 1.35
19 diff -u -r1.34 -r1.35
20 --- font.eclass 10 Dec 2007 23:58:17 -0000 1.34
21 +++ font.eclass 8 Jan 2008 17:12:23 -0000 1.35
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.34 2007/12/10 23:58:17 dirtyepic Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.35 2008/01/08 17:12:23 pva Exp $
27
28 # Author: foser <foser@g.o>
29
30 @@ -16,11 +16,11 @@
31
32 FONT_SUFFIX="" # Space delimited list of font suffixes to install
33
34 -FONT_S="${S}" # Dir containing the fonts
35 +FONT_S=${S} # Dir containing the fonts
36
37 -FONT_PN="${PN}" # Last part of $FONTDIR
38 +FONT_PN=${PN} # Last part of $FONTDIR
39
40 -FONTDIR="/usr/share/fonts/${FONT_PN}" # This is where the fonts are installed
41 +FONTDIR=/usr/share/fonts/${FONT_PN} # This is where the fonts are installed
42
43 FONT_CONF="" # Space delimited list of fontconfig-2.4 file(s) to install
44
45 @@ -64,7 +64,7 @@
46 if [[ -n ${FONT_CONF} ]]; then
47 if has_version '>=media-libs/fontconfig-2.4'; then
48 insinto /etc/fonts/conf.avail/
49 - for conffile in ${FONT_CONF}; do
50 + for conffile in ${FONT_CONF[@]}; do
51 [[ -e ${conffile} ]] && doins ${conffile}
52 done
53 fi
54
55
56
57 --
58 gentoo-commits@l.g.o mailing list