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

--- doclifter-2.6.orig/manlifter	2011-02-19 16:20:58.000000000 -0500
+++ doclifter-2.6/manlifter	2011-02-19 16:22:15.000000000 -0500
@@ -574,6 +574,8 @@
             mandir = val
         elif (switch == '-m'):	# Make a patch from the last fetched page
             makepatch = True
+        elif (switch == '-o'):  # Specify output directory
+            outdir = val
 	elif (switch == '-p'):	# Specify patch directory
 	    patchdir = os.path.abspath(val)
         elif (switch == '-P'):
@@ -660,7 +662,7 @@
     finally:
         os.system("rm -f doclifter_test%s.py*" % os.getpid())
     # Gather options
-    (options, arguments) = getopt.getopt(sys.argv[1:], "d:ef:hI:mp:Pqs:Svw")
+    (options, arguments) = getopt.getopt(sys.argv[1:], "d:ef:hI:mo:p:Pqs:Svw")
     # Do the real work
     if "-P" in sys.argv and hotshot:
         prof = hotshot.Profile("manlifter.prof")
