Module Name:    src
Committed By:   joerg
Date:           Thu Feb 16 22:57:19 UTC 2012

Modified Files:
        src/etc: man.conf

Log Message:
Add entries for bzip2 and xz.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/etc/man.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/man.conf
diff -u src/etc/man.conf:1.29 src/etc/man.conf:1.30
--- src/etc/man.conf:1.29	Tue Feb 14 14:03:35 2012
+++ src/etc/man.conf	Thu Feb 16 22:57:19 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: man.conf,v 1.29 2012/02/14 14:03:35 wiz Exp $
+#	$NetBSD: man.conf,v 1.30 2012/02/16 22:57:19 joerg Exp $
 
 # Sheer, raging paranoia...
 _version	BSD.2
@@ -17,18 +17,26 @@ _subdir		cat1 man1 cat8 man8 cat6 man6 c
 # Note the order, .Z must come after .[1-9].Z, or it will match first.
 _suffix		.0
 _build		.0.Z		/usr/bin/zcat %s
-_build		.0.gz		/usr/bin/gunzip -c %s
+_build		.0.bz2		/usr/bin/bzcat %s
+_build		.0.gz		/usr/bin/zcat %s
+_build		.0.xz		/usr/bin/xzcat %s
 _build		.[1-9ln]	/usr/bin/mandoc %s
 _build		.[1-9ln].Z	/usr/bin/zcat %s | /usr/bin/mandoc
-_build		.[1-9ln].gz	/usr/bin/gunzip -c %s | /usr/bin/mandoc
+_build		.[1-9ln].bz2	/usr/bin/bzcat %s | /usr/bin/mandoc
+_build		.[1-9ln].gz	/usr/bin/zcat %s | /usr/bin/mandoc
+_build		.[1-9ln].xz	/usr/bin/xzcat %s | /usr/bin/mandoc
 _build		.tbl		/usr/bin/mandoc %s
 _build		.tbl.Z		/usr/bin/zcat %s | /usr/bin/mandoc
-_build		.tbl.gz		/usr/bin/gunzip -c %s | /usr/bin/mandoc
+_build		.tbl.bz2	/usr/bin/bzcat %s | /usr/bin/mandoc
+_build		.tbl.gz		/usr/bin/zcat %s | /usr/bin/mandoc
+_build		.tbl.xz		/usr/bin/xzcat %s | /usr/bin/mandoc
 
 _build		.me		/usr/bin/nroff -msafer -me %s 2>/dev/null | cat -s
 
-_crunch		.Z		/usr/bin/compress -c > %s
-_crunch		.gz		/usr/bin/gzip -c > %s
+_crunch		.Z		/usr/bin/zcat > %s
+_crunch		.bz		/usr/bin/bzcat > %s
+_crunch		.gz		/usr/bin/zcat > %s
+_crunch		.xz		/usr/bin/xzcat > %s
 
 # Sections and their directories.
 # All paths ending in '/' are the equivalent of entries specifying that

Reply via email to