[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Pkg-fonts-devel] Bug#649145: msttcorefonts: Please drop defoma support



Package: msttcorefonts
Severity: important
Tags: patch
User: pabs@debian.org
Usertags: defoma-removal

Your package ships a defoma hint file or depends on or uses defoma or
x-ttcidfont-conf. defoma is in the process of being removed from Debian:

http://wiki.debian.org/OldPkgRemovals#defoma

If you have any questions about this transition, please contact the
Debian Fonts Task Force on our mailing list. We are also interested in
new people if you want to help us maintain, check and discuss fonts.

pkg-fonts-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-fonts-devel
http://pkg-fonts.alioth.debian.org/
http://wiki.debian.org/Fonts

To help us complete the transition from defoma to fontconfig, please
remove any use of defoma or x-ttcidfont-conf from your package. Here
are some things that you might want to check in your package:

If installing your package causes defoma to modify the defoma
configuration file for fontconfig (/etc/fonts/conf.d/30-defoma.conf),
then you need to migrate those changes to a file in the fontconfig
directory /etc/fonts/conf.avail with a symlink in /etc/fonts/conf.d.
In some cases the config produced by defoma was not appropriate in the
first place and should be dropped.

Remove any mentions of defoma, defoma-doc, psfontmgr or
x-ttcidfont-conf from your debian/control file.

If you are running dh_installdefoma in your debian/rules file, simply
remove that call.

If you are shipping a defoma hint file, then you will need to remove
it on upgrade. You can do so by adding this snippet to your postinst,
postrm and preinst maintainer scripts. You should replace $PACKAGE
with the name of the package and $VERSION with the version where you
are making the defoma hint conffile obsolete and removable:

if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
  dpkg-maintscript-helper rm_conffile /etc/defoma/hints/$PACKAGE.hints
$VERSION -- "$@"
fi

If you were using defoma in your maintainer scripts (postrm, postinst
etc, dh_installdefoma usually handles them) then on upgrade from a
version before the one that dropped you need to run defoma-app purge
$PACKAGE, but only if the defoma-app binary is available and
executable.

A proposed patch is attached to this bug report.

-- System Information:
Debian Release: wheezy/sid
Architecture: i386 (i686)

Kernel: Linux 3.0.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru msttcorefonts-3.3.old/debian/changelog msttcorefonts-3.3/debian/changelog
--- msttcorefonts-3.3.old/debian/changelog	2011-11-18 07:29:01.091038237 +0100
+++ msttcorefonts-3.3/debian/changelog	2011-11-18 07:29:16.415192897 +0100
@@ -1,3 +1,9 @@
+msttcorefonts (3.4) UNRELEASED; urgency=low
+
+  * Drop defoma support
+
+ -- Christian Perrier <bubulle@debian.org>  Fri, 18 Nov 2011 07:29:10 +0100
+
 msttcorefonts (3.3) unstable; urgency=low
 
   * Add Slovak debconf translation, thanks Slavko Pozdravom
diff -Nru msttcorefonts-3.3.old/debian/control msttcorefonts-3.3/debian/control
--- msttcorefonts-3.3.old/debian/control	2011-11-18 07:29:01.091038237 +0100
+++ msttcorefonts-3.3/debian/control	2011-11-18 07:29:37.011400888 +0100
@@ -4,13 +4,12 @@
 Maintainer: Thijs Kinkhorst <thijs@debian.org>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: defoma
 Vcs-Svn: https://svn.kinkhorst.nl/svn/debian/msttcorefonts/trunk
 Vcs-Browser: https://aphrodite.kinkhorst.nl/wsvn/debian/msttcorefonts/
 
 Package: ttf-mscorefonts-installer
 Architecture: all
-Depends: wget, cabextract, xfonts-utils, defoma, ${misc:Depends}
+Depends: wget, cabextract, xfonts-utils, ${misc:Depends}
 Recommends: ttf-liberation, x-ttcidfont-conf
 Provides: msttcorefonts
 Replaces: msttcorefonts (<< 2.6)
diff -Nru msttcorefonts-3.3.old/debian/dirs msttcorefonts-3.3/debian/dirs
--- msttcorefonts-3.3.old/debian/dirs	2011-11-18 07:29:01.091038237 +0100
+++ msttcorefonts-3.3/debian/dirs	2011-11-18 07:43:48.043510831 +0100
@@ -1,3 +1,2 @@
 var/lib/msttcorefonts
-etc/defoma/hints
 usr/share/fonts/truetype
diff -Nru msttcorefonts-3.3.old/debian/postinst.in msttcorefonts-3.3/debian/postinst.in
--- msttcorefonts-3.3.old/debian/postinst.in	2011-11-18 07:29:01.083038160 +0100
+++ msttcorefonts-3.3/debian/postinst.in	2011-11-18 07:42:44.870873124 +0100
@@ -25,5 +25,15 @@
         http_proxy=$RET
 done
 
+if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
+  dpkg-maintscript-helper rm_conffile /etc/defoma/hints/ttf-mscorefonts-installer.hints 3.4 -- "$@"
+fi
+  
+if dpkg --compare-versions "$2" lt 3.4; then
+	if [ -x "which defoma-app 2>/dev/null" ]; then
+		defoma-app purge ttf-mscorefonts-installer
+	fi
+fi
+
 ## Content of update-ms-fonts will be concatenated below
 
diff -Nru msttcorefonts-3.3.old/debian/postrm msttcorefonts-3.3/debian/postrm
--- msttcorefonts-3.3.old/debian/postrm	1970-01-01 01:00:00.000000000 +0100
+++ msttcorefonts-3.3/debian/postrm	2011-11-18 07:42:31.342736565 +0100
@@ -0,0 +1,7 @@
+#! /bin/sh
+
+set -e
+
+if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
+  dpkg-maintscript-helper rm_conffile /etc/defoma/hints/ttf-mscorefonts-installer.hints 3.4 -- "$@"
+fi
diff -Nru msttcorefonts-3.3.old/debian/preinst msttcorefonts-3.3/debian/preinst
--- msttcorefonts-3.3.old/debian/preinst	1970-01-01 01:00:00.000000000 +0100
+++ msttcorefonts-3.3/debian/preinst	2011-11-18 07:43:11.631143252 +0100
@@ -0,0 +1,7 @@
+#! /bin/sh
+
+set -e
+
+if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
+  dpkg-maintscript-helper rm_conffile /etc/defoma/hints/ttf-mscorefonts-installer.hints 3.4 -- "$@"
+fi
diff -Nru msttcorefonts-3.3.old/debian/README.comic-font msttcorefonts-3.3/debian/README.comic-font
--- msttcorefonts-3.3.old/debian/README.comic-font	2011-11-18 07:29:01.095038279 +0100
+++ msttcorefonts-3.3/debian/README.comic-font	1970-01-01 01:00:00.000000000 +0100
@@ -1,49 +0,0 @@
-Some users have reported that after installing the ttf-mscorefonts-installer
-package many older X clients (such as xmessage, xfontsel, etc) display text
-using the 'Comic Sans MS' font, that looks... somewhat strange.
-
-This is caused by the following:
-- users have /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType as the first
-  element in X font path;
-- ttf-mscorefonts-installer is the only truetype font package installed;
-- '-microsoft-comic sans ms-...' happens to be alphabetically first font
-  provided by ttf-mscorefonts-installer;
-- older applications request any font that matches a generic pattern, and get
-  the comic font.
-
-This may be worked around in several ways.
-
-1. Install other font packages, and/or make another directory first in the
-   font path. X clients will get other fonts by default.
-
-2. If for whatever reason you don't want to install other fonts, and really
-   want to keep the truetype directory first in the font path, you may
-   manually configure clients to use another font.
-   E.g. add the following line:
-     *font: -microsoft-verdana-medium-r-normal--*-*-*-*-*-*-*
-   to /etc/X11/Xresources/local
-   If that causes unwanted font changes in some apps (e.g. motif/lesstif-based),
-   you may be a bit more specific, e.g.:
-     xmessage*font: -microsoft-verdana-medium-r-normal--*-*-*-*-*-*-*
-
-3. Instead, it is possible to do fancy configuration using defoma.
-   It is possible to make another font alphabetically first in
-   /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType directory, by 'aliasing'
-   the font foundry. To do so:
-   - create an empty directory, e.g. /usr/local/share/fonts/deuglify
-   - symlink a few fonts there:
-        arialbolditalic.ttf -> /usr/share/fonts/truetype/Arial_Bold_Italic.ttf
-        arialbold.ttf -> /usr/share/fonts/truetype/Arial_Bold.ttf
-        arialitalic.ttf -> /usr/share/fonts/truetype/Arial_Italic.ttf
-        arial.ttf -> /usr/share/fonts/truetype/Arial.ttf
-     Note different file names used for links - that is required.
-   - create a new file in /etc/defoma/hints, e.g. 'deuglify.hints'
-   - for each font you have symlinked above, copy appropriate section from
-     ttf-mscorefonts-installer.hints to deuglify.hints; change font pathname
-     to symlink pathname, and change Foundry to something like '000'
-   - run 
-       /usr/bin/defoma-font reregister-all /etc/defoma/hints/deuglify.hints
-   Now, after 'xset fp rehash' (or X server or xfs restart) new font names will
-   become available, in the above example '-000-arial-*'. Now those are
-   alphabetically first, and will be used by default by xmessage & co.
-
diff -Nru msttcorefonts-3.3.old/debian/rules msttcorefonts-3.3/debian/rules
--- msttcorefonts-3.3.old/debian/rules	2011-11-18 07:29:01.079038121 +0100
+++ msttcorefonts-3.3/debian/rules	2011-11-18 07:29:51.347545536 +0100
@@ -36,7 +36,6 @@
 	dh_testroot
 	dh_installdebconf
 	dh_installdocs
-	dh_installdefoma
 	dh_installchangelogs 
 	dh_lintian
 	dh_link
diff -Nru msttcorefonts-3.3.old/debian/ttf-mscorefonts-installer.defoma-hints msttcorefonts-3.3/debian/ttf-mscorefonts-installer.defoma-hints
--- msttcorefonts-3.3.old/debian/ttf-mscorefonts-installer.defoma-hints	2011-11-18 07:29:01.079038121 +0100
+++ msttcorefonts-3.3/debian/ttf-mscorefonts-installer.defoma-hints	1970-01-01 01:00:00.000000000 +0100
@@ -1,432 +0,0 @@
-category truetype
-begin /usr/share/fonts/truetype/msttcorefonts/Andale_Mono.ttf
-  Family = Andale-Mono
-  FontName = AndaleMono
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Slovak Catalan Italian Danish Turkish Slovenian Basque Portuguese German Swedish Polish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251
-  GeneralFamily = Typewriter
-  Weight = Medium
-  Width = Fixed
-  Shape = NoSerif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial.ttf
-  Family = Arial
-  FontName = Arial-Regular
-  Alias = Helvetica
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf
-  Family = Arial-Black
-  FontName = ArialBlack-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf
-  Family = Arial
-  FontName = Arial-Bold
-  Alias = Helvetica-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial_Bold_Italic.ttf
-  Family = Arial
-  FontName = Arial-BoldItalic
-  Alias = Helvetica-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf
-  Family = Arial
-  FontName = Arial-Italic
-  Alias = Helvetica-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf
-  Family = Comic-Sans-MS
-  FontName = ComicSansMS-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf
-  Family = Comic-Sans-MS
-  FontName = ComicSansMS-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf
-  Family = Courier-New
-  FontName = CourierNew-Regular
-  Alias = Courier
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Typewriter
-  Weight = Semilight
-  Width = Fixed
-  Shape = Serif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf
-  Family = Courier-New
-  FontName = CourierNew-Bold
-  Alias = Courier-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Typewriter
-  Weight = Demibold
-  Width = Fixed
-  Shape = Serif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf
-  Family = Courier-New
-  FontName = CourierNew-BoldItalic
-  Alias = Courier-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Typewriter
-  Weight = Demibold
-  Width = Fixed
-  Shape = Serif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf
-  Family = Courier-New
-  FontName = CourierNew-Italic
-  Alias = Courier-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Typewriter
-  Weight = Semilight
-  Width = Fixed
-  Shape = Italic Serif
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Georgia.ttf
-  Family = Georgia
-  FontName = Georgia-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = Roman
-  Weight = Medium
-  Width = Variable
-  Shape = Serif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Georgia_Bold.ttf
-  Family = Georgia
-  FontName = Georgia-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = Roman
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Georgia_Bold_Italic.ttf
-  Family = Georgia
-  FontName = Georgia-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = Roman
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Georgia_Italic.ttf
-  Family = Georgia
-  FontName = Georgia-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = Roman
-  Weight = Medium
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Impact.ttf
-  Family = Impact
-  FontName = Impact
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright Condensed
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman.ttf
-  Family = Times-New-Roman
-  FontName = TimesNewRoman-Regular
-  Alias = Times-Roman
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Roman
-  Weight = Medium
-  Width = Variable
-  Shape = Serif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf
-  Family = Times-New-Roman
-  FontName = TimesNewRoman-Bold
-  Alias = Times-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Roman
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold_Italic.ttf
-  Family = Times-New-Roman
-  FontName = TimesNewRoman-BoldItalic
-  Alias = Times-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Roman
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Italic.ttf
-  Family = Times-New-Roman
-  FontName = TimesNewRoman-Italic
-  Alias = Times-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Roman
-  Weight = Medium
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS.ttf
-  Family = Trebuchet-MS
-  FontName = TrebuchetMS-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold.ttf
-  Family = Trebuchet-MS
-  FontName = TrebuchetMS-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold_Italic.ttf
-  Family = Trebuchet-MS
-  FontName = TrebuchetMS-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Italic.ttf
-  Family = Trebuchet-MS
-  FontName = TrebuchetMS-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Verdana.ttf
-  Family = Verdana
-  FontName = Verdana-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Verdana_Bold.ttf
-  Family = Verdana
-  FontName = Verdana-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Verdana_Bold_Italic.ttf
-  Family = Verdana
-  FontName = Verdana-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Verdana_Italic.ttf
-  Family = Verdana
-  FontName = Verdana-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Webdings.ttf
-  Family = Webdings
-  FontName = Webdings
-  Encoding = Symbol
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = font-specific
-  GeneralFamily = Symbol
-  Weight = Medium
-  Width = Variable
-  Shape
-  Foundry = Microsoft
-  Priority = 20
-end

Reply to: