summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-05-21 22:36:22 +0000
committerMike Frysinger <vapier@gentoo.org>2012-05-21 22:36:22 +0000
commit099c91abafe22518bbccaab7712ec895847bb7f5 (patch)
tree0be263ebae0df9f56a1558708defe60279c29c59 /sci-geosciences/gpsd/files
parentrelocate and enforce standard for .love files (diff)
downloadhistorical-099c91abafe22518bbccaab7712ec895847bb7f5.tar.gz
historical-099c91abafe22518bbccaab7712ec895847bb7f5.tar.bz2
historical-099c91abafe22518bbccaab7712ec895847bb7f5.zip
Do not regen man pages since the tarball includes them.
Diffstat (limited to 'sci-geosciences/gpsd/files')
-rw-r--r--sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch b/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch
new file mode 100644
index 000000000000..20a3b707a4c3
--- /dev/null
+++ b/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch
@@ -0,0 +1,13 @@
+the scons logic is dumb and will always regenerate the man pages.
+forcibly disable that as the releases contain the man pages.
+
+--- a/SConstruct
++++ b/SConstruct
+@@ -575,6 +575,7 @@
+ manbuilder = "xmlto man $SOURCE; mv `basename $TARGET` $TARGET"
+ else:
+ announce("Neither xsltproc nor xmlto found, documentation cannot be built.")
++manbuilder = htmlbuilder = False
+ if manbuilder:
+ env['BUILDERS']["Man"] = Builder(action=manbuilder)
+ env['BUILDERS']["HTML"] = Builder(action=htmlbuilder,