Your message dated Wed, 19 Apr 2006 14:33:20 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#363448: fixed in tightvnc 1.2.9-11
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: tightvncserver
Version: 1.2.9-10
Severity: grave
Tags: patch
Justification: renders package unusable
After upgrading to xorg 7.0 from unstable, Xvnc and tightvncserver
don't work because they can't find any fonts.
Here's a patch for tightvncserver. I didn't make the fallback font
path include all the fonts that xserver-xorg's configure script puts
in xorg.conf (which, on my system, looks like:
Section "Files"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection
I also haven't patched Xvnc itself, only that wrapper script. I like
to use Xvnc on my home network with no password, which tightvncserver
doesn't support.
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-ck5
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages tightvncserver depends on:
ii dpkg 1.13.18 package maintenance system for Deb
ii libc6 2.3.6-7 GNU C Library: Shared libraries
ii libjpeg62 6b-12 The Independent JPEG Group's JPEG
ii libx11-6 2:1.0.0-6 X11 client-side library
ii libxext6 1:1.0.0-3 X11 miscellaneous extension librar
ii perl 5.8.8-4 Larry Wall's Practical Extraction
ii vnc-common 3.3.7-9 Virtual network computing server s
ii x11-common 1:7.0.14 X Window System (X.Org) infrastruc
ii xbase-clients 1:7.0.0-4 miscellaneous X clients
ii zlib1g 1:1.2.3-11 compression library - runtime
Versions of packages tightvncserver recommends:
ii xfonts-base 1:1.0.0-3 standard fonts for X
-- no debconf information
--- tightvncserver.orig 2006-04-17 10:28:17.000000000 -0300
+++ tightvncserver 2006-04-19 03:28:58.000000000 -0300
@@ -80,13 +80,11 @@
&ReadConfigFile();
if (!$XFConfigPath) {
- if (-e "/etc/X11/XF86Config-4") {
- $XFConfigPath = "/etc/X11/XF86Config-4";
+ foreach ("/etc/X11/xorg.conf", "/etc/X11/XF86Config-4",
"/etc/X11/XF86Config" ){
+ $XFConfigPath = $_;
+ last if ( -e $XFConfigPath );
}
}
-if (!$XFConfigPath) {
- $XFConfigPath = "/etc/X11/XF86Config";
-}
if (!$fontPath) {
&ReadXFConfigFont;
}
@@ -95,13 +93,20 @@
"/usr/X11R6/lib/X11/fonts/Speedo/,".
"/usr/X11R6/lib/X11/fonts/misc/,".
"/usr/X11R6/lib/X11/fonts/75dpi/,".
- "/usr/X11R6/lib/X11/fonts/100dpi/"
+ "/usr/X11R6/lib/X11/fonts/100dpi/".
+ "/usr/share/fonts/X11/misc/,".
+ "/usr/share/fonts/X11/Type1/,".
+ "/usr/share/fonts/X11/75dpi/,".
+ "/usr/share/fonts/X11/100dpi/"
}
if (!$colorPath) {
&ReadXFConfigColor;
}
if (!$colorPath) {
- $colorPath = "/usr/X11R6/lib/X11/rgb";
+ foreach ("/etc/X11/rgb.txt", "/usr/X11R6/lib/X11/rgb"){
+ $colorPath = $_;
+ last if ( -e $colorPath );
+ }
}
##########################################################
--- End Message ---
--- Begin Message ---
Source: tightvnc
Source-Version: 1.2.9-11
We believe that the bug you reported is fixed in the latest version of
tightvnc, which is due to be installed in the Debian FTP archive:
tightvnc_1.2.9-11.diff.gz
to pool/main/t/tightvnc/tightvnc_1.2.9-11.diff.gz
tightvnc_1.2.9-11.dsc
to pool/main/t/tightvnc/tightvnc_1.2.9-11.dsc
tightvncserver_1.2.9-11_i386.deb
to pool/main/t/tightvnc/tightvncserver_1.2.9-11_i386.deb
xtightvncviewer_1.2.9-11_i386.deb
to pool/main/t/tightvnc/xtightvncviewer_1.2.9-11_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Ola Lundqvist <[EMAIL PROTECTED]> (supplier of updated tightvnc package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Wed, 19 Apr 2006 21:40:57 +0200
Source: tightvnc
Binary: tightvncserver xtightvncviewer
Architecture: source i386
Version: 1.2.9-11
Distribution: unstable
Urgency: low
Maintainer: Ola Lundqvist <[EMAIL PROTECTED]>
Changed-By: Ola Lundqvist <[EMAIL PROTECTED]>
Description:
tightvncserver - virtual network computing server software
xtightvncviewer - virtual network computing client software for X
Closes: 363448
Changes:
tightvnc (1.2.9-11) unstable; urgency=low
.
* Applied patch from Peter Cordes <[EMAIL PROTECTED]> that make it
possible to use with xorg version 7.0, closes: #363448.
Files:
a5b59001311af1e9e326e04c97fad49c 787 x11 optional tightvnc_1.2.9-11.dsc
d8f28424a1b2bf659a3324e0e7026dc9 314562 x11 optional tightvnc_1.2.9-11.diff.gz
e61a48f86f8784ef92b9d624985448d0 679178 x11 optional
tightvncserver_1.2.9-11_i386.deb
00defa07d94808db664bde0049c42f25 60414 x11 optional
xtightvncviewer_1.2.9-11_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)
iD8DBQFERpcOGKGxzw/lPdkRAsChAJkBkm2/Lq4HpeG0oZCWhWRJVBAt3QCggJA3
uqxsXJyk7eS4X9EX6FF/Ejc=
=5/L8
-----END PGP SIGNATURE-----
--- End Message ---