summaryrefslogtreecommitdiff
path: root/office/calibre/patches/fix-manpages.diff
diff options
context:
space:
mode:
Diffstat (limited to 'office/calibre/patches/fix-manpages.diff')
-rw-r--r--office/calibre/patches/fix-manpages.diff21
1 files changed, 21 insertions, 0 deletions
diff --git a/office/calibre/patches/fix-manpages.diff b/office/calibre/patches/fix-manpages.diff
new file mode 100644
index 0000000000..55e7ff8582
--- /dev/null
+++ b/office/calibre/patches/fix-manpages.diff
@@ -0,0 +1,21 @@
+diff -Naur calibre-0.5.6.orig/src/calibre/linux.py calibre-0.5.6/src/calibre/linux.py
+--- calibre-0.5.6.orig/src/calibre/linux.py 2009-04-09 04:13:27.000000000 +0000
++++ calibre-0.5.6/src/calibre/linux.py 2009-04-13 22:17:10.000000000 +0000
+@@ -417,7 +417,7 @@
+ def install_man_pages(fatal_errors, use_destdir=False):
+ from calibre.utils.help2man import create_man_page
+ prefix = os.environ.get('DESTDIR', '/') if use_destdir else '/'
+- manpath = os.path.join(prefix, 'usr/share/man/man1')
++ manpath = os.path.join(prefix, 'usr/man/man1')
+ if not os.path.exists(manpath):
+ os.makedirs(manpath)
+ print 'Installing MAN pages...'
+@@ -431,7 +431,7 @@
+ continue
+ parser = parser()
+ raw = create_man_page(prog, parser)
+- manfile = os.path.join(manpath, prog+'.1'+__appname__+'.bz2')
++ manfile = os.path.join(manpath, prog+'.1'+'.bz2')
+ print '\tInstalling MAN page for', prog
+ open(manfile, 'wb').write(raw)
+ manifest.append(manfile)