summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMakoto Matsushita <matusita@FreeBSD.org>2006-07-02 11:29:21 +0000
committerMakoto Matsushita <matusita@FreeBSD.org>2006-07-02 11:29:21 +0000
commit953feb66c3fb4239eb6b1b4fb0f6495d29192beb (patch)
tree6a0b4d372d69bdda3b11981da1c8d697cf1eb966
parentUpdate to 2.0.3 (diff)
Fix a bug that dvipdfmx confuses 'wh' and 'bk' of tpic special.
As you know from Obtained from: line below, this fix is already in the original dvipdfmx code. Submitted by: Tsuyoshi Ito, tsuyoshiito at nifty dotcom. Obtained from: http://cvs.ktug.or.kr/viewcvs/dvipdfmx/src/spc_tpic.c.diff?r2=1.3&r1=1.2&diff_format=u
Notes
Notes: svn path=/head/; revision=166755
-rw-r--r--print/dvipdfmx/Makefile2
-rw-r--r--print/dvipdfmx/files/patch-src-spc_tpic.c26
2 files changed, 27 insertions, 1 deletions
diff --git a/print/dvipdfmx/Makefile b/print/dvipdfmx/Makefile
index f70cf52988cf..3d53e5df0b34 100644
--- a/print/dvipdfmx/Makefile
+++ b/print/dvipdfmx/Makefile
@@ -7,7 +7,7 @@
PORTNAME= dvipdfmx
PORTVERSION= 20050831
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= print
MASTER_SITES= http://project.ktug.or.kr/dvipdfmx/snapshot/current/
DIST_SUBDIR= dvipdfmx
diff --git a/print/dvipdfmx/files/patch-src-spc_tpic.c b/print/dvipdfmx/files/patch-src-spc_tpic.c
new file mode 100644
index 000000000000..c5dbf408e3df
--- /dev/null
+++ b/print/dvipdfmx/files/patch-src-spc_tpic.c
@@ -0,0 +1,26 @@
+--- src/spc_tpic.c 2005/07/30 11:44:18 1.2
++++ src/spc_tpic.c 2005/10/14 04:55:00 1.3
+@@ -1,4 +1,4 @@
+-/* $Header: /home/cvsroot/dvipdfmx/src/spc_tpic.c,v 1.2 2005/07/30 11:44:18 hirata Exp $
++/* $Header: /home/cvsroot/dvipdfmx/src/spc_tpic.c,v 1.3 2005/10/14 04:55:00 chofchof Exp $
+
+ This is dvipdfmx, an eXtended version of dvipdfm by Mark A. Wicks.
+
+@@ -743,7 +743,7 @@
+ ASSERT(spe && ap && tp);
+
+ tp->fill_shape = 1;
+- tp->fill_color = 1.0;
++ tp->fill_color = 0.0;
+
+ return 0;
+ }
+@@ -757,7 +757,7 @@
+ ASSERT(spe && ap && tp);
+
+ tp->fill_shape = 1;
+- tp->fill_color = 0.0;
++ tp->fill_color = 1.0;
+
+ return 0;
+ }