Description: Add -o to manlifter
 The manlifter man page refers to a -o option, but manlifter itself
 doesn't recognize it.  This patch adds the option.
Author: Jeff Licquia <licquia@debian.org>
Last-Update: 2011-02-19

Index: doclifter-2.11/manlifter
===================================================================
--- doclifter-2.11.orig/manlifter	2013-06-07 21:35:50.000000000 +0000
+++ doclifter-2.11/manlifter	2013-06-07 21:37:40.000000000 +0000
@@ -615,6 +615,8 @@
             makepatch = True
         elif (switch == '-M'):	# Make a patch with specified page
             patchlift = True
+        elif (switch == '-o'):  # Specify output directory
+            outdir = val
 	elif (switch == '-p'):	# Specify patch directory
 	    patchdir = os.path.abspath(val)
         elif (switch == '-P'):
@@ -696,7 +698,7 @@
         sys.stderr.write("manlifter: can't find doclifter!\n")
         sys.exit(1)
     # Gather options
-    (options, arguments) = getopt.getopt(sys.argv[1:], "d:ef:hI:mMp:Pqs:SvwX:")
+    (options, arguments) = getopt.getopt(sys.argv[1:], "d:ef:hI:mMop:Pqs:SvwX:")
     # Do the real work
     if "-P" in sys.argv and hotshot:
         prof = hotshot.Profile("manlifter.prof")
