Wed Mar 23 10:09:45 2011 UTC ()
Changes 1.14:
This release changes raw PostScript processing to avoid the
non-rendering PostScript specials created by hyperref. A command-line
switch to turn off raw PostScript rendering has been added. Finally, a
few bugs has been fixed, such as correct decoding of the -T switch, a
CRLF bug when reading configuration files in Windows, and a few bugs
associated to subprocesses.


(adam)
diff -r1.15 -r1.16 pkgsrc/graphics/dvipng/Makefile
diff -r1.4 -r1.5 pkgsrc/graphics/dvipng/distinfo
diff -r0 -r1.1 pkgsrc/graphics/dvipng/patches/patch-special.c

cvs diff -r1.15 -r1.16 pkgsrc/graphics/dvipng/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/dvipng/Makefile 2011/01/13 13:37:59 1.15
+++ pkgsrc/graphics/dvipng/Makefile 2011/03/23 10:09:44 1.16
@@ -1,25 +1,25 @@ @@ -1,25 +1,25 @@
1# $NetBSD: Makefile,v 1.15 2011/01/13 13:37:59 wiz Exp $ 1# $NetBSD: Makefile,v 1.16 2011/03/23 10:09:44 adam Exp $
2 2
3DISTNAME= dvipng-1.13 3DISTNAME= dvipng-1.14
4PKGREVISION= 1 
5CATEGORIES= graphics 4CATEGORIES= graphics
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dvipng/} 5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dvipng/} \
 6 http://download.savannah.gnu.org/releases/dvipng/
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://savannah.nongnu.org/projects/dvipng/ 9HOMEPAGE= http://savannah.nongnu.org/projects/dvipng/
10COMMENT= Convert TeX DVI files to PNG or GIF 10COMMENT= Convert TeX DVI files to PNG or GIF
11LICENSE= gnu-lgpl-v3 11LICENSE= gnu-lgpl-v3
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15GNU_CONFIGURE= yes 15GNU_CONFIGURE= yes
16 16
17BUILD_TARGET= dvipng 17BUILD_TARGET= dvipng
18INSTALL_TARGET= install-dvigif 18INSTALL_TARGET= install-dvigif
19 19
20.include "../../fonts/t1lib/buildlink3.mk" 20.include "../../fonts/t1lib/buildlink3.mk"
21.include "../../graphics/gd/buildlink3.mk" 21.include "../../graphics/gd/buildlink3.mk"
22.include "../../graphics/freetype2/buildlink3.mk" 22.include "../../graphics/freetype2/buildlink3.mk"
23.include "../../graphics/png/buildlink3.mk" 23.include "../../graphics/png/buildlink3.mk"
24.include "../../print/kpathsea/buildlink3.mk" 24.include "../../print/kpathsea/buildlink3.mk"
25.include "../../mk/bsd.pkg.mk" 25.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/graphics/dvipng/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/dvipng/distinfo 2010/09/13 04:28:21 1.4
+++ pkgsrc/graphics/dvipng/distinfo 2011/03/23 10:09:44 1.5
@@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
1$NetBSD: distinfo,v 1.4 2010/09/13 04:28:21 minskim Exp $ 1$NetBSD: distinfo,v 1.5 2011/03/23 10:09:44 adam Exp $
2 2
3SHA1 (dvipng-1.13.tar.gz) = 626568203e3f799c99da0f3e31edecb13ce202b6 3SHA1 (dvipng-1.14.tar.gz) = 778c7be5378eddf23200e47d92096ffe543528b6
4RMD160 (dvipng-1.13.tar.gz) = c615840bbc3f51cb81973e88484bc0838db1382d 4RMD160 (dvipng-1.14.tar.gz) = df1ac7709c7a2c81dd28bfc5cfbaf69a35ba6f64
5Size (dvipng-1.13.tar.gz) = 169309 bytes 5Size (dvipng-1.14.tar.gz) = 173686 bytes
 6SHA1 (patch-special.c) = 9704c7e9a2483b8a246c1136343a90cd4ddd2f9b

File Added: pkgsrc/graphics/dvipng/patches/Attic/patch-special.c
$NetBSD: patch-special.c,v 1.1 2011/03/23 10:09:45 adam Exp $

Fix #include

--- special.c.orig	2011-03-23 09:08:08.000000000 +0000
+++ special.c
@@ -26,7 +26,7 @@
 
 #ifndef MIKTEX
 #ifndef WIN32
-#include <wait.h>
+#include <sys/wait.h>
 #else /* WIN32 */
 #include <fcntl.h>
 #include <io.h>