summaryrefslogtreecommitdiff
path: root/www/htmldoc
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2002-12-07 18:53:13 +0000
committerdrochner <drochner@pkgsrc.org>2002-12-07 18:53:13 +0000
commit95a1dc8c6803894a003f337433a7bda7a06bebd6 (patch)
treeb1b07f6b6bf847b18cf57f73ae4b9e0896668f4e /www/htmldoc
parentdc57ef4408813b59b771b6d143904aecc2d7e282 (diff)
downloadpkgsrc-95a1dc8c6803894a003f337433a7bda7a06bebd6.tar.gz
update to 1.8.23
changes: HTMLDOC now supports a full alpha channel in PNG files. HTMLDOC now reports an error when a table, image, or section of text overflows into an adjacent table cell or off the right edge of the page. The NEW SHEET page comment now breaks on N-up boundaries when N is greater than 1. bugfixes
Diffstat (limited to 'www/htmldoc')
-rw-r--r--www/htmldoc/Makefile.common4
-rw-r--r--www/htmldoc/distinfo7
-rw-r--r--www/htmldoc/patches/patch-aa40
3 files changed, 5 insertions, 46 deletions
diff --git a/www/htmldoc/Makefile.common b/www/htmldoc/Makefile.common
index 337d6b85d9e..c744884513e 100644
--- a/www/htmldoc/Makefile.common
+++ b/www/htmldoc/Makefile.common
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.common,v 1.4 2002/10/03 15:33:20 wiz Exp $
+# $NetBSD: Makefile.common,v 1.5 2002/12/07 18:53:13 drochner Exp $
#
-HTMLDOC_VERSION= 1.8.22
+HTMLDOC_VERSION= 1.8.23
DISTNAME= htmldoc-${HTMLDOC_VERSION}-source
WRKSRC= ${WRKDIR}/htmldoc-${HTMLDOC_VERSION}
CATEGORIES= www
diff --git a/www/htmldoc/distinfo b/www/htmldoc/distinfo
index 2c6695d682b..7a337cabb69 100644
--- a/www/htmldoc/distinfo
+++ b/www/htmldoc/distinfo
@@ -1,5 +1,4 @@
-$NetBSD: distinfo,v 1.5 2002/09/29 14:20:04 wiz Exp $
+$NetBSD: distinfo,v 1.6 2002/12/07 18:53:13 drochner Exp $
-SHA1 (htmldoc-1.8.22-source.tar.bz2) = 73493e3d921ab8419593b7a85d342d7f08e5ae38
-Size (htmldoc-1.8.22-source.tar.bz2) = 2335516 bytes
-SHA1 (patch-aa) = 8b42b0e3bfa16dc816284895d8d24a5401732202
+SHA1 (htmldoc-1.8.23-source.tar.bz2) = 4bcb4d472862197a35da9f25cc1e6634a9dcac9f
+Size (htmldoc-1.8.23-source.tar.bz2) = 2329977 bytes
diff --git a/www/htmldoc/patches/patch-aa b/www/htmldoc/patches/patch-aa
deleted file mode 100644
index 9304078fc9e..00000000000
--- a/www/htmldoc/patches/patch-aa
+++ /dev/null
@@ -1,40 +0,0 @@
-$NetBSD: patch-aa,v 1.5 2002/09/29 14:20:04 wiz Exp $
-
---- htmldoc/html.cxx.orig Thu Jun 13 20:44:09 2002
-+++ htmldoc/html.cxx
-@@ -154,6 +154,8 @@ html_export(tree_t *document, /* I - Doc
- {
- write_header(&out, (uchar *)"index.html", title, author, copyright,
- docnumber, NULL);
-+ if (out == NULL)
-+ return -1;
- write_title(out, title, author, copyright, docnumber);
-
- write_footer(&out, NULL);
-@@ -164,6 +166,9 @@ html_export(tree_t *document, /* I - Doc
- write_header(&out, (uchar *)"index.html", title, author, copyright,
- docnumber, NULL);
-
-+ if (out == NULL)
-+ return -1;
-+
- write_all(out, toc, 0);
- write_footer(&out, NULL);
-
-@@ -175,11 +180,16 @@ html_export(tree_t *document, /* I - Doc
- {
- write_header(&out, htmlGetVariable(document, (uchar *)"FILENAME"),
- title, author, copyright, docnumber, document);
-+ if (out == NULL)
-+ return -1;
- write_all(out, document->child, 0);
- write_footer(&out, document);
-
- document = document->next;
- }
-+
-+ if (out == NULL)
-+ return -1;
-
- if (!OutputFiles && out != stdout)
- {