Index: head/textproc/par/Makefile =================================================================== --- head/textproc/par/Makefile (revision 559928) +++ head/textproc/par/Makefile (revision 559929) @@ -1,28 +1,27 @@ # Created by: Mark R V Murray # $FreeBSD$ PORTNAME= par -PORTVERSION= 1.52 -PORTREVISION= 1 +PORTVERSION= 1.53.0 PKGNAMESUFFIX= _format CATEGORIES= textproc MASTER_SITES= http://www.nicemice.net/par/ -DISTNAME= Par${PORTVERSION:S|.||} +DISTNAME= Par-${PORTVERSION} MAINTAINER= markm@FreeBSD.org COMMENT= Paragraph reformatter for email CONFLICTS= quake-par-[0-9]* ALL_TARGET= # PLIST_FILES= bin/par \ man/man1/par.1.gz do-configure: (cd ${WRKSRC}; ${CP} protoMakefile Makefile) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/par ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/par.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include Index: head/textproc/par/distinfo =================================================================== --- head/textproc/par/distinfo (revision 559928) +++ head/textproc/par/distinfo (revision 559929) @@ -1,2 +1,3 @@ -SHA256 (Par152.tar.gz) = 33dcdae905f4b4267b4dc1f3efb032d79705ca8d2122e17efdecfd8162067082 -SIZE (Par152.tar.gz) = 47999 +TIMESTAMP = 1609587143 +SHA256 (Par-1.53.0.tar.gz) = c809c620eb82b589553ac54b9898c8da55196d262339d13c046f2be44ac47804 +SIZE (Par-1.53.0.tar.gz) = 52209 Index: head/textproc/par/files/patch-reformat.c =================================================================== --- head/textproc/par/files/patch-reformat.c (revision 559928) +++ head/textproc/par/files/patch-reformat.c (nonexistent) @@ -1,11 +0,0 @@ ---- ./reformat.c.orig 2014-02-10 21:14:43.000000000 +0000 -+++ ./reformat.c 2014-02-10 21:17:35.000000000 +0000 -@@ -335,7 +335,7 @@ - for (end = *line; *end; ++end); - if (end - *line < affix) { - sprintf(errmsg, -- "Line %d shorter than + = %d + %d = %d\n", -+ "Line %zd shorter than + = %d + %d = %d\n", - line - inlines + 1, prefix, suffix, affix); - goto rfcleanup; - } Property changes on: head/textproc/par/files/patch-reformat.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/textproc/par/files/patch-par.c =================================================================== --- head/textproc/par/files/patch-par.c (revision 559928) +++ head/textproc/par/files/patch-par.c (nonexistent) @@ -1,12 +0,0 @@ ---- ./par.c.orig 2001-04-02 05:25:57.000000000 +0100 -+++ ./par.c 2014-02-10 21:14:29.000000000 +0000 -@@ -403,7 +403,8 @@ - } - continue; - } -- if (isspace(c)) ch = ' '; -+ // Exclude non-breaking space from the class of space chars -+ if (isspace(c) && isascii(c)) ch = ' '; - else blank = 0; - additem(cbuf, &ch, errmsg); - if (*errmsg) goto rlcleanup; Property changes on: head/textproc/par/files/patch-par.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/textproc/par/files/patch-protoMakefile =================================================================== --- head/textproc/par/files/patch-protoMakefile (revision 559928) +++ head/textproc/par/files/patch-protoMakefile (revision 559929) @@ -1,11 +1,13 @@ ---- ./protoMakefile.orig 2001-03-09 00:53:25.000000000 +0000 -+++ ./protoMakefile 2014-02-10 21:14:29.000000000 +0000 -@@ -47,7 +47,7 @@ +--- protoMakefile.orig 2020-03-14 21:01:24 UTC ++++ protoMakefile +@@ -45,8 +45,8 @@ # Example (for Solaris 2.x with SPARCompiler C): # CC = cc -c -O -s -Xc -DDONTFREE --CC = cc -c -+CC = cc -c ${CFLAGS} +-CPPFLAGS = +-CFLAGS = ++#CPPFLAGS = ++#CFLAGS = + CC = cc $(CPPFLAGS) $(CFLAGS) -c # Define LINK1 and LINK2 so that the command - #