tags 395034 +patch Thankyou According to packages.debian.org, every arch except i386 has this bug.
The bug is really that install_text is being run which puts stuff in /usr/share/doc/4Suite. i386 build doesn't even have this directory. Well, hurd-i386 doesn't have it either... I don't know why people's local builds are working... Check your logs for "running install_text"... Anyway, here's a dpatch to try (not tested, I don't have an autobuilder ^_^) -- Paul "TBBle" Hampson, [EMAIL PROTECTED] Shorter .sig for a more eco-friendly paperless office.
#! /bin/sh -e
## 21-stdint-include.dpatch by Matthias Klose <[EMAIL PROTECTED]>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Don't install stuff into /usr/share/doc/4Suite
if [ $# -lt 1 ]; then
echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
exit 1
fi
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
case "$1" in
-patch) patch -p1 ${patch_opts} < $0;;
-unpatch) patch -R -p1 ${patch_opts} < $0;;
*)
echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
exit 1;;
esac
exit 0
@DPATCH@
--- ./4Suite/setup.py.org 2007-01-10 13:27:33.000000000 +1100
+++ ./4Suite/setup.py 2007-01-10 13:27:36.000000000 +1100
@@ -38,7 +38,7 @@
],
# Used by Windows binary installer (bdist_inno)
- license_file='COPYRIGHT',
+ #license_file='COPYRIGHT',
# Fields used in package metadata 1.0 (PEP 241 / Python 2.1+):
name='4Suite',
--- ./4Suite/packages/Xml.pkg.org 2007-01-10 13:27:47.000000000 +1100
+++ ./4Suite/packages/Xml.pkg 2007-01-10 13:28:27.000000000 +1100
@@ -206,7 +206,7 @@
]
doc_files = [
- File('README'),
+# File('README'),
Document('docs/xml/index.doc', 'sdocbook',
title='4Suite Documentation Index',
pgpWIoVy05KA9.pgp
Description: PGP signature

