diff options
author | simonb <simonb> | 2001-10-30 06:32:20 +0000 |
---|---|---|
committer | simonb <simonb> | 2001-10-30 06:32:20 +0000 |
commit | 0f560c5439e7dd0b086f57857c6bcd5141b15f6d (patch) | |
tree | 3f1b4647dbbac090bba2fdf6ac37ac3ae0685383 /print | |
parent | 8b8ecadb5c5f6b63410e06f21a6462cb678fb2bb (diff) | |
download | pkgsrc-0f560c5439e7dd0b086f57857c6bcd5141b15f6d.tar.gz |
Update to xpdf 0.93. Noteworthy changes include:
- PDF 1.4 (128-bit) decryption.
- FreeType 2 support.
- Embed TrueType fonts in PostScript output.
- Mouse wheel support.
- Text output for Simplified Chinese.
Lots more in the CHANGES file.
Diffstat (limited to 'print')
-rw-r--r-- | print/xpdf/Makefile | 4 | ||||
-rw-r--r-- | print/xpdf/distinfo | 8 | ||||
-rw-r--r-- | print/xpdf/patches/patch-aa | 20 |
3 files changed, 18 insertions, 14 deletions
diff --git a/print/xpdf/Makefile b/print/xpdf/Makefile index 36f576855f3..57201b0c208 100644 --- a/print/xpdf/Makefile +++ b/print/xpdf/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2001/10/24 22:11:06 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2001/10/30 06:32:20 simonb Exp $ # -DISTNAME= xpdf-0.92 +DISTNAME= xpdf-0.93 CATEGORIES= print MASTER_SITES= ftp://ftp.foolabs.com/pub/xpdf/ \ ${MASTER_SITE_SUNSITE:=apps/graphics/viewers/X/} diff --git a/print/xpdf/distinfo b/print/xpdf/distinfo index 6bd2a66fc79..1e52bf7fd1e 100644 --- a/print/xpdf/distinfo +++ b/print/xpdf/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2001/10/04 11:58:37 wiz Exp $ +$NetBSD: distinfo,v 1.2 2001/10/30 06:32:20 simonb Exp $ -SHA1 (xpdf-0.92.tgz) = a3c1f2ffa9dffa64284106b00d10cf61c5ce22ce -Size (xpdf-0.92.tgz) = 917813 bytes -SHA1 (patch-aa) = dbac2c341499df0ab4c1e3e9c072eb14a5d78fed +SHA1 (xpdf-0.93.tgz) = a5762fec0e352a1610c9f0cd8e081ded92246773 +Size (xpdf-0.93.tgz) = 1001491 bytes +SHA1 (patch-aa) = 633e0574525af90d8ce70be39dece403a564007b diff --git a/print/xpdf/patches/patch-aa b/print/xpdf/patches/patch-aa index d27d501229e..68f02af94a0 100644 --- a/print/xpdf/patches/patch-aa +++ b/print/xpdf/patches/patch-aa @@ -1,22 +1,26 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/10/04 11:58:37 wiz Exp $ +$NetBSD: patch-aa,v 1.2 2001/10/30 06:32:21 simonb Exp $ Avoid a toolchain bug on mipsel noted in NetBSD-1.4.2/pmax ---- xpdf/Makefile.in.orig Tue Aug 15 01:01:52 2000 -+++ xpdf/Makefile.in Fri Oct 6 10:27:43 2000 -@@ -19,4 +19,7 @@ - CXXFLAGS = @CXXFLAGS@ @DEFS@ @OPTIONS@ -I$(GOOSRCDIR) -I$(LTKSRCDIR) -I$(srcdir) @X_CFLAGS@ @Xpm_CFLAGS@ @t1_CFLAGS@ @freetype_CFLAGS@ +--- xpdf/Makefile.in.orig Sat Oct 27 03:52:54 2001 ++++ xpdf/Makefile.in Tue Oct 30 17:23:05 2001 +@@ -20,6 +20,9 @@ + + CXXFLAGS = @CXXFLAGS@ @DEFS@ @OPTIONS@ -I$(GOOSRCDIR) -I$(LTKSRCDIR) -I$(srcdir) @X_CFLAGS@ @Xpm_CFLAGS@ @t1_CFLAGS@ @freetype_CFLAGS@ @freetype2_CFLAGS@ -DSYSTEM_XPDFRC=\"$(sysconfdir)/xpdfrc\" +CXXFLAGS_NOOPT!= ${ECHO} ${CXXFLAGS} | ${SED} 's/-O[0-9]*//g' + + LDFLAGS = @LDFLAGS@ -@@ -258,4 +261,7 @@ - config.h Params.h TextOutputDev.h OutputDev.h XOutputDev.h T1Font.h \ - SFont.h TTFont.h XOutputFontInfo.h + XLIBS = @Xpm_LIBS@ @t1_LIBS@ @freetype_LIBS@ @freetype2_LIBS@ @X_PRE_LIBS@ @X_LIBS@ -lX11 @X_EXTRA_LIBS@ +@@ -268,6 +271,9 @@ + Link.h GfxState.h Function.h GfxFont.h FontEncoding.h FontFile.h \ + Error.h config.h Params.h TextOutputDev.h OutputDev.h XOutputDev.h \ + T1Font.h SFont.h TTFont.h XOutputFontInfo.h +.if (${MACHINE_ARCH} == "mipsel") + ${CXX} ${CXXFLAGS_NOOPT} -c XOutputDev.cc +.endif XRef.o: ./XRef.cc ../goo/gmem.h Object.h ../goo/gtypes.h \ ../goo/GString.h Array.h Dict.h Stream.h Lexer.h Parser.h Decrypt.h \ + Error.h config.h XRef.h |