Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Update build system for mdocml-1.10.9.



details:   https://anonhg.NetBSD.org/src/rev/e7bbaa3ff664
branches:  trunk
changeset: 760772:e7bbaa3ff664
user:      joerg <joerg%NetBSD.org@localhost>
date:      Wed Jan 12 23:02:21 2011 +0000

description:
Update build system for mdocml-1.10.9.

diffstat:

 distrib/sets/lists/text/mi               |   5 ++++-
 external/bsd/mdocml/bin/mandoc/Makefile  |   4 ++--
 external/bsd/mdocml/lib/libman/Makefile  |   4 ++--
 external/bsd/mdocml/lib/libmdoc/Makefile |   4 ++--
 external/bsd/mdocml/lib/libroff/Makefile |   6 ++++--
 external/bsd/mdocml/man/Makefile         |  14 ++++++++++----
 6 files changed, 24 insertions(+), 13 deletions(-)

diffs (131 lines):

diff -r d7d33eb9d3c5 -r e7bbaa3ff664 distrib/sets/lists/text/mi
--- a/distrib/sets/lists/text/mi        Wed Jan 12 23:00:51 2011 +0000
+++ b/distrib/sets/lists/text/mi        Wed Jan 12 23:02:21 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.39 2010/06/16 18:10:57 joerg Exp $
+# $NetBSD: mi,v 1.40 2011/01/12 23:02:21 joerg Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -465,6 +465,7 @@
 ./usr/share/man/cat7/mandoc_man.0              text-mdocml-catman      .cat
 ./usr/share/man/cat7/mandoc_mdoc.0             text-mdocml-catman      .cat
 ./usr/share/man/cat7/mandoc_roff.0             text-mdocml-catman      .cat
+./usr/share/man/cat7/mandoc_tbl.0              text-mdocml-catman      .cat
 ./usr/share/man/cat7/manuals.0                 text-obsolete           obsolete
 ./usr/share/man/cat7/mdoc.samples.0            text-groff-catman       .cat,groff
 ./usr/share/man/cat7/me.0                      text-groff-catman       .cat
@@ -522,6 +523,7 @@
 ./usr/share/man/html7/mandoc_man.html          text-mdocml-htmlman     html
 ./usr/share/man/html7/mandoc_mdoc.html         text-mdocml-htmlman     html
 ./usr/share/man/html7/mandoc_roff.html         text-mdocml-htmlman     html
+./usr/share/man/html7/mandoc_tbl.html          text-mdocml-htmlman     html
 ./usr/share/man/html7/manuals.html             text-obsolete           obsolete
 ./usr/share/man/html7/mdoc.samples.html                text-groff-htmlman      html,groff
 ./usr/share/man/html7/me.html                  text-groff-htmlman      html
@@ -582,6 +584,7 @@
 ./usr/share/man/man7/mandoc_man.7              text-mdocml-man         .man
 ./usr/share/man/man7/mandoc_mdoc.7             text-mdocml-man         .man
 ./usr/share/man/man7/mandoc_roff.7             text-mdocml-man         .man
+./usr/share/man/man7/mandoc_tbl.7              text-mdocml-man         .man
 ./usr/share/man/man7/manuals.7                 text-obsolete           obsolete
 ./usr/share/man/man7/mdoc.samples.7            text-groff-man          .man,groff
 ./usr/share/man/man7/me.7                      text-groff-man          .man
diff -r d7d33eb9d3c5 -r e7bbaa3ff664 external/bsd/mdocml/bin/mandoc/Makefile
--- a/external/bsd/mdocml/bin/mandoc/Makefile   Wed Jan 12 23:00:51 2011 +0000
+++ b/external/bsd/mdocml/bin/mandoc/Makefile   Wed Jan 12 23:02:21 2011 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.3 2010/06/24 17:20:19 joerg Exp $
+# $NetBSD: Makefile,v 1.4 2011/01/12 23:02:21 joerg Exp $
 
 .include <bsd.own.mk>
 
 PROG=          mandoc
 
 SRCS=          main.c mdoc_term.c chars.c term.c term_ascii.c term_ps.c \
-               tree.c compat.c \
+               tbl_term.c tbl_html.c tree.c compat.c \
                man_term.c html.c mdoc_html.c man_html.c out.c
 
 .ifndef HOSTPROG
diff -r d7d33eb9d3c5 -r e7bbaa3ff664 external/bsd/mdocml/lib/libman/Makefile
--- a/external/bsd/mdocml/lib/libman/Makefile   Wed Jan 12 23:00:51 2011 +0000
+++ b/external/bsd/mdocml/lib/libman/Makefile   Wed Jan 12 23:02:21 2011 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.1 2009/10/21 18:04:52 joerg Exp $
+# $NetBSD: Makefile,v 1.2 2011/01/12 23:02:22 joerg Exp $
 
 LIBISPRIVATE=  yes
 
 LIB=           man
 SRCS=          man_macro.c man.c man_hash.c man_validate.c \
-               man_action.c mandoc.c man_argv.c
+               mandoc.c man_argv.c
 MAN=           mdoc.3
 
 .include <bsd.lib.mk>
diff -r d7d33eb9d3c5 -r e7bbaa3ff664 external/bsd/mdocml/lib/libmdoc/Makefile
--- a/external/bsd/mdocml/lib/libmdoc/Makefile  Wed Jan 12 23:00:51 2011 +0000
+++ b/external/bsd/mdocml/lib/libmdoc/Makefile  Wed Jan 12 23:02:21 2011 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.1 2009/10/21 18:04:52 joerg Exp $
+# $NetBSD: Makefile,v 1.2 2011/01/12 23:02:22 joerg Exp $
 
 LIBISPRIVATE=  yes
 
 LIB=           mdoc
 SRCS=          mdoc_macro.c mdoc.c mdoc_hash.c mdoc_strings.c \
-               mdoc_argv.c mdoc_validate.c mdoc_action.c lib.c att.c \
+               mdoc_argv.c mdoc_validate.c lib.c att.c \
                arch.c vol.c msec.c st.c mandoc.c
 MAN=           man.3
 
diff -r d7d33eb9d3c5 -r e7bbaa3ff664 external/bsd/mdocml/lib/libroff/Makefile
--- a/external/bsd/mdocml/lib/libroff/Makefile  Wed Jan 12 23:00:51 2011 +0000
+++ b/external/bsd/mdocml/lib/libroff/Makefile  Wed Jan 12 23:02:21 2011 +0000
@@ -1,9 +1,11 @@
-# $NetBSD: Makefile,v 1.1 2010/06/01 21:32:40 joerg Exp $
+# $NetBSD: Makefile,v 1.2 2011/01/12 23:02:22 joerg Exp $
 
 LIBISPRIVATE=  yes
 
 LIB=           roff
-SRCS=          roff.c
+SRCS=          roff.c tbl.c tbl_opts.c tbl_layout.c tbl_data.c
 MAN=
 
+COPTS.tbl_layout.c=    -Wno-shadow
+
 .include <bsd.lib.mk>
diff -r d7d33eb9d3c5 -r e7bbaa3ff664 external/bsd/mdocml/man/Makefile
--- a/external/bsd/mdocml/man/Makefile  Wed Jan 12 23:00:51 2011 +0000
+++ b/external/bsd/mdocml/man/Makefile  Wed Jan 12 23:02:21 2011 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2010/07/26 17:25:31 joerg Exp $
+# $NetBSD: Makefile,v 1.6 2011/01/12 23:02:22 joerg Exp $
 
-MAN=           mandoc_man.7 mandoc_char.7 mandoc_mdoc.7 mandoc_roff.7
+MAN=   mandoc_man.7 mandoc_char.7 mandoc_mdoc.7 mandoc_roff.7 mandoc_tbl.7
 
 .include <bsd.init.mk>
 
@@ -19,11 +19,17 @@
        rm -f ${.TARGET}
        ${TOOL_CAT} ${DISTDIR}/roff.7 > ${.TARGET}
 
-CLEANFILES+=   mandoc_man.7 mandoc_mdoc.7 mandoc_roff.7
+mandoc_tbl.7: ${DISTDIR}/tbl.7
+       ${_MKTARGET_CREATE}
+       rm -f ${.TARGET}
+       ${TOOL_CAT} ${DISTDIR}/tbl.7 > ${.TARGET}
+
+CLEANFILES+=   mandoc_man.7 mandoc_mdoc.7 mandoc_roff.7 mandoc_tbl.7
 
 .if (${MKHTML} != "no") && (${MKMAN} != "no")
-FILES=         ${DISTDIR}/style.css
+FILES=         ${DISTDIR}/example.style.css
 FILESDIR=      /usr/share/man
+FILESNAME=     style.css
 .endif
 
 .include <bsd.man.mk>



Home | Main Index | Thread Index | Old Index