aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in2
-rwxr-xr-xtool/rbinstall.rb17
2 files changed, 17 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 04767d07fd..aecbcdd8cd 100644
--- a/configure.in
+++ b/configure.in
@@ -4194,7 +4194,7 @@ AC_ARG_WITH(mantype,
AS_HELP_STRING([--with-mantype=TYPE], [specify man page type; TYPE is one of man and doc]),
[
AS_CASE(["$withval"],
- [man|doc], [MANTYPE=$withval],
+ [man|man.gz|man.bz2|doc|doc.gz|doc.bz2], [MANTYPE=$withval],
[AC_MSG_ERROR(invalid man type: $withval)])
])
if test -z "$MANTYPE"; then
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index fab8a7b8f9..1a17f093a8 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -545,7 +545,22 @@ install?(:local, :comm, :man) do
alias print push
end
open(mdoc) {|r| Mdoc2Man.mdoc2man(r, w)}
- open_for_install(destfile, $data_mode) {w.join("")}
+ w = w.join("")
+ case $mantype
+ when /\.(?:(gz)|bz2)\z/
+ suffix = $&
+ compress = $1 ? "gzip" : "bzip2"
+ require 'tmpdir'
+ Dir.mktmpdir("man") {|d|
+ dest = File.join(d, File.basename(destfile))
+ File.open(dest, "wb") {|f| f.write w}
+ if system(compress, dest)
+ w = File.open(dest+suffix, "rb") {|f| f.read}
+ destfile << suffix
+ end
+ }
+ end
+ open_for_install(destfile, $data_mode) {w}
end
end
end