diff options
author | bapt <bapt@FreeBSD.org> | 2015-04-28 05:21:03 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-04-28 05:21:03 +0800 |
commit | 9cdcbf3ccf8b4316f623545d9bb0a475c83575d6 (patch) | |
tree | e6f362f4abe54ea8496f11a4e45799ed6da5bc92 /textproc | |
parent | 3b72b7344279f86d56ec4bc7747c5f39ce644e0d (diff) | |
download | freebsd-ports-gnome-9cdcbf3ccf8b4316f623545d9bb0a475c83575d6.tar.gz freebsd-ports-gnome-9cdcbf3ccf8b4316f623545d9bb0a475c83575d6.tar.zst freebsd-ports-gnome-9cdcbf3ccf8b4316f623545d9bb0a475c83575d6.zip |
Update to 1.13.2
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/mdocml/Makefile | 3 | ||||
-rw-r--r-- | textproc/mdocml/distinfo | 4 | ||||
-rw-r--r-- | textproc/mdocml/files/patch-mdoc_macro.c | 33 | ||||
-rw-r--r-- | textproc/mdocml/files/patch-msec.in | 8 |
4 files changed, 8 insertions, 40 deletions
diff --git a/textproc/mdocml/Makefile b/textproc/mdocml/Makefile index c4d485065764..763915d9e005 100644 --- a/textproc/mdocml/Makefile +++ b/textproc/mdocml/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mdocml -PORTVERSION= 1.13.1 +PORTVERSION= 1.13.2 CATEGORIES= textproc MASTER_SITES= http://mdocml.bsd.lv/snapshots/ \ ${MASTER_SITE_LOCAL} @@ -15,6 +15,7 @@ LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 EXAMPLESDIR= ${PREFIX}/share/examples/mandoc +HAS_CONFIGURE= yes CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/textproc/mdocml/distinfo b/textproc/mdocml/distinfo index 6c953819768a..2eede1808eae 100644 --- a/textproc/mdocml/distinfo +++ b/textproc/mdocml/distinfo @@ -1,2 +1,2 @@ -SHA256 (mdocml-1.13.1.tar.gz) = 7a18e728dc8555b1095bf7edbf086e1d6afb5508c06a7baecfd0b0e448648bf9 -SIZE (mdocml-1.13.1.tar.gz) = 317389 +SHA256 (mdocml-1.13.2.tar.gz) = 9074755da96e8afbf9634d7ffa29c1decda2f642e13d9d844f26cd1e06d9716b +SIZE (mdocml-1.13.2.tar.gz) = 348464 diff --git a/textproc/mdocml/files/patch-mdoc_macro.c b/textproc/mdocml/files/patch-mdoc_macro.c deleted file mode 100644 index 9f9619e41542..000000000000 --- a/textproc/mdocml/files/patch-mdoc_macro.c +++ /dev/null @@ -1,33 +0,0 @@ -Log Message: ------------ -If a stray .It follows .El, we are no longer in the list, -even though the list is still the last processed macro. -This fixes a regression introduced in mdoc_macro.c rev. 1.138: -Ulrich Spoerlein <uqs at FreeBSD> reports that various of their -kernel manuals trigger assertions. - -Modified Files: --------------- - mdocml: - mdoc_macro.c - -Revision Data -------------- -Index: mdoc_macro.c -=================================================================== -RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_macro.c,v -retrieving revision 1.140 -retrieving revision 1.141 -diff -Lmdoc_macro.c -Lmdoc_macro.c -u -p -r1.140 -r1.141 ---- mdoc_macro.c -+++ mdoc_macro.c -@@ -1041,7 +1041,8 @@ blk_full(MACRO_PROT_ARGS) - - if (tok == MDOC_It) { - for (n = mdoc->last; n; n = n->parent) -- if (n->tok == MDOC_Bl) -+ if (n->tok == MDOC_Bl && -+ ! (n->flags & MDOC_VALID)) - break; - if (n == NULL) { - mandoc_vmsg(MANDOCERR_IT_STRAY, mdoc->parse, diff --git a/textproc/mdocml/files/patch-msec.in b/textproc/mdocml/files/patch-msec.in index 39d47f58566b..01eefe0a67bf 100644 --- a/textproc/mdocml/files/patch-msec.in +++ b/textproc/mdocml/files/patch-msec.in @@ -1,5 +1,5 @@ ---- msec.in.orig 2009-07-20 22:05:54.000000000 +0200 -+++ msec.in 2009-07-20 22:07:03.000000000 +0200 +--- msec.in.orig 2014-12-13 14:06:34 UTC ++++ msec.in @@ -22,16 +22,16 @@ * Be sure to escape strings. */ @@ -10,8 +10,8 @@ +LINE("1", "FreeBSD General Commands Manual") +LINE("2", "FreeBSD System Calls Manual") +LINE("3", "FreeBSD Library Functions Manual") - LINE("3p", "Perl Library Functions Manual") --LINE("4", "Kernel Interfaces Manual") + LINE("3p", "Perl Library Manual") +-LINE("4", "Device Drivers Manual") -LINE("5", "File Formats Manual") -LINE("6", "Games Manual") -LINE("7", "Miscellaneous Information Manual") |