]> Zhao Yanbai Git Server - minix.git/commitdiff
share: also install other existing manpages 10/3410/1
authorDavid van Moolenbroek <david@minix3.org>
Thu, 23 Feb 2017 13:35:03 +0000 (13:35 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Thu, 23 Feb 2017 14:09:01 +0000 (14:09 +0000)
A pair of manual pages were already present in /usr/share/man, but
not yet installed.  Install them as well.  Lots and lots more from
NetBSD's set of manual pages should be imported, though.

Change-Id: Ie2e8946967afcb2e71de563f06fa331586dcb31d

distrib/sets/lists/minix-man/mi
share/man/Makefile
share/man/man5/Makefile
share/man/man7/Makefile [new file with mode: 0644]

index 42a2c04251680b8abd5a54ef16b90a5338a19f58..9e9b08236fcb2fd29cba37167256502f48e71c78 100644 (file)
 ./usr/man/man5/kyua.conf.5                              minix-man       kyua
 ./usr/man/man5/kyuafile.5                               minix-man       kyua
 ./usr/man/man5/libarchive-formats.5                     minix-man
+./usr/man/man5/locale.alias.5                           minix-man
 ./usr/man/man5/magic.5                                  minix-man
 ./usr/man/man5/man.conf.5                               minix-man
 ./usr/man/man5/mtree.5                                  minix-man
 ./usr/man/man7/mandoc_mdoc.7                            minix-man
 ./usr/man/man7/mandoc_roff.7                            minix-man
 ./usr/man/man7/mandoc_tbl.7                             minix-man
+./usr/man/man7/nls.7                                    minix-man
 ./usr/man/man7/pkgsrc.7                                 minix-man
 ./usr/man/man7/re_format.7                              minix-man
 ./usr/man/man8                                          minix-man
index c58cf54873c414871003d795397fb769708e63fb..41b1b31dd31e88d48c85d7bfc3ef03e5a41b8600 100644 (file)
@@ -6,7 +6,7 @@
 .if ${MKSHARE} != "no"
 # MINIX 3: XXX FIXME
 #SUBDIR=       man0 man1 man2 man3 man3lua man4 man5 man6 man7 man8 man9 man9lua
-SUBDIR=        man5 man8
+SUBDIR=        man5 man7 man8
 
 .if !defined(__MINIX) # XXX FIXME
 .if ${MKRUMP} != "no"
index a13659777bad5a7823d8d7eddac680cac639b70a..f76957755f3130e9aad82d45b0ba732cf98f8030 100644 (file)
@@ -8,7 +8,7 @@ MAN=    \
        \
        \
        \
-       \
+       locale.alias.5 \
        \
        \
        \
diff --git a/share/man/man7/Makefile b/share/man/man7/Makefile
new file mode 100644 (file)
index 0000000..eb96f70
--- /dev/null
@@ -0,0 +1,30 @@
+#      $NetBSD: Makefile,v 1.31 2014/12/02 03:51:48 msaitoh Exp $
+#      @(#)Makefile    8.1 (Berkeley) 6/5/93
+
+.include <bsd.init.mk>
+
+# missing: eqnchar.7 man.7 ms.7 term.7
+
+# MINIX:
+MAN=   \
+       nls.7 \
+       \
+       
+
+.if !defined(__MINIX)
+CLEANFILES=    tests.7
+.if ${MKKYUA} != "no"
+tests.7: tests.kyua.7
+       rm -f ${.TARGET} && cp ${.ALLSRC} ${.TARGET}
+.else
+tests.7: tests.atf.7
+       rm -f ${.TARGET} && cp ${.ALLSRC} ${.TARGET}
+.endif
+
+MLINKS+=c.7 c78.7 \
+       c.7 c89.7 \
+       c.7 c90.7 \
+       c.7 c99.7
+.endif # !defined(__MINIX)
+
+.include <bsd.man.mk>