Package: sylpheed-claws-gtk2 Version: 2.6.0-1 Severity: minor Tags: patch The build process modifies the source tree in such a way that the second build fails: It moves manual/<language>/dist/sylpheed-claws-manual.html files to the debian/sylpheed-claws-gtk2-doc/usr/share/doc/sylpheed-claws- gtk2/<language> directory instead of copying them, thus the next build attempting to install(1) them will fail (unless you have docbook-utils installed - which is not a build-dep - and the HTML files are re-generated).
Best regards, norbi -- System Information: Debian Release: 4.0 APT prefers testing APT policy: (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18 Locale: LANG=C, LC_CTYPE=hu_HU (charmap=ISO-8859-2) Versions of packages sylpheed-claws-gtk2 depends on: ii libaspell15 0.60.4-4 GNU Aspell spell-checker runtime l ii libc6 2.3.6.ds1-11 GNU C Library: Shared libraries ii libcompfaceg1 1:1.5.2-4 Compress/decompress images for mai ii libetpan10 0.48-1 mail handling library ii libglib2.0-0 2.12.4-2 The GLib library of C routines ii libgnomeprint2.2-0 2.12.1-7 The GNOME 2.2 print architecture - ii libgnomeprintui2.2-0 2.12.1-4 GNOME 2.2 print architecture User ii libgtk2.0-0 2.8.20-5 The GTK+ graphical user interface ii libice6 1:1.0.1-2 X11 Inter-Client Exchange library ii libldap2 2.1.30-13.2 OpenLDAP libraries ii libpango1.0-0 1.14.8-5 Layout and rendering of internatio ii libpisock9 0.12.1-5 library for communicating with a P ii libsm6 1:1.0.1-3 X11 Session Management library ii libssl0.9.8 0.9.8c-4 SSL shared libraries Versions of packages sylpheed-claws-gtk2 recommends: ii aspell-en [aspell-dictionary] 6.0-0-5.1 English dictionary for GNU Aspell ii metamail 2.7-52 implementation of MIME ii sylpheed-claws-gtk2-i18n 2.6.0-1 Locale data for Sylpheed-Claws GTK ii sylpheed-claws-scripts 1.0.5-5 Helper scripts for Sylpheed and Sy ii xfonts-100dpi 1:1.0.0-3 100 dpi fonts for X ii xfonts-100dpi-transcoded 1:1.0.0-3 100 dpi fonts for X (transcoded fr ii xfonts-75dpi 1:1.0.0-3 75 dpi fonts for X ii xfonts-75dpi-transcoded 1:1.0.0-3 75 dpi fonts for X (transcoded fro -- debconf-show failed
diff -Naur sylpheed-claws-gtk2-2.6.0/debian/inst-manual.sh sylpheed-claws-gtk2-2.6.0-fixed/debian/inst-manual.sh --- sylpheed-claws-gtk2-2.6.0/debian/inst-manual.sh 2007-02-22 22:53:24.000000000 +0100 +++ sylpheed-claws-gtk2-2.6.0-fixed/debian/inst-manual.sh 2007-02-23 23:26:44.000000000 +0100 @@ -4,5 +4,5 @@ NAME=sylpheed-claws-manual test -d "$2" || mkdir -m 755 -p "$2" for format in html txt pdf ps; -do mv "$1/$format/$NAME.$format" "$2" +do cp -a "$1/$format/$NAME.$format" "$2" done