diff options
author | matusita <matusita@FreeBSD.org> | 2004-02-09 00:29:16 +0800 |
---|---|---|
committer | matusita <matusita@FreeBSD.org> | 2004-02-09 00:29:16 +0800 |
commit | 6320bd900e7555a5b351f6f2ea1b89c617837fd3 (patch) | |
tree | e96665e9f03b71ccffba6163d5e2c0fba962f0da /print/dvipdfmx/files | |
parent | 1609b4d6f9b8dc0b0a1b7887f78fa191bcf0b3a9 (diff) | |
download | freebsd-ports-gnome-6320bd900e7555a5b351f6f2ea1b89c617837fd3.tar.gz freebsd-ports-gnome-6320bd900e7555a5b351f6f2ea1b89c617837fd3.tar.zst freebsd-ports-gnome-6320bd900e7555a5b351f6f2ea1b89c617837fd3.zip |
Add two patches:
- Vendor-supplied critical bugfix on using TrueType fonts
with Identity-H CMap.
- Handle embedded PS files using "epsbox.sty".
Contents changed so bump PORTREVISION. Also take MAINTAINERship.
Reviewed by: kuriyama
Diffstat (limited to 'print/dvipdfmx/files')
-rw-r--r-- | print/dvipdfmx/files/patch-psspecial.c-epsbox.sty | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/print/dvipdfmx/files/patch-psspecial.c-epsbox.sty b/print/dvipdfmx/files/patch-psspecial.c-epsbox.sty new file mode 100644 index 000000000000..b003e259f0a1 --- /dev/null +++ b/print/dvipdfmx/files/patch-psspecial.c-epsbox.sty @@ -0,0 +1,105 @@ +Origin: http://www.matsusaka-u.ac.jp/~okumura/texfaq/qa/23745.html + +This patch enables to handle dvifile using epsbox.sty. The epsbox.sty +embeds EPS files with "postscriptbox" directive, but original dvipdfmx +doesn't know what postscriptbox is, showing "Unrecognized special ignored" +and exit abnormally. + +Note that following 8bit strings are Japanese EUC characters. Actually +this file is a Web bulletinboard message; there is "name" field, but +it only says "noda"-san (no email address or contact information are there), +I cannot contact to the person posted this. If there's something wrong, +please contact to matusita@FreeBSD.org, current MAINTAINER of this port. + +--- contents below -- +<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP"> +<title>23745</title> +<link rel="stylesheet" type="text/css" href="style.css"> +<body> +<h2>Re: dvipdfm・・・</h2> +<pre> +名前: 野田 +日時: 2003-11-24 00:36:45 +IPアドレス: 218.47.0.* +<hr> +<a href="20624.html">>>20624</a> + +だいぶ前の話な上に元質問者の方は既に解決済みのようですが… + +古いソースから作成したDVIファイルをPDF化するのに,epsbox.styに対応する +必要に迫られたため,dvipdfmx用のepsbox.sty対応パッチを作成しました. + +別解ということで,投稿しておきます. + +diff -ur dvipdfmx-20031110.orig/src/psspecial.c dvipdfmx-20031110/src/psspecial.c +--- dvipdfmx-20031110.orig/src/psspecial.c 2002-10-30 11:27:16.000000000 +0900 ++++ dvipdfmx-20031110/src/psspecial.c 2003-11-14 09:56:59.000000000 +0900 +@@ -260,6 +260,53 @@ + result = 1; /* Likewise */ + do_raw_ps_special (&start, end, 1, + block_pending?pending_x:x_user, block_pending?pending_y:y_user); ++ } else if (!strncmp (start, "postscriptbox", strlen("postscriptbox"))) { ++ char filename[256]; ++ double width, height; ++ ++ if (sscanf (start+13, "{%lfpt}{%lfpt}{%256[^}]}", ++ &width, &height, filename) == 3) { ++ struct xform_info *p = new_xform_info(); ++ ++ p -> width = width*72/72.27; ++ p -> height = height*72/72.27; ++ ++ { ++ FILE *image_file; ++ char *kpse_file_name; ++ char buf[256], *pos; ++ if ((kpse_file_name = kpse_find_pict (filename)) && ++ (image_file = MFOPEN (kpse_file_name, FOPEN_R_MODE))) { ++ while (fgets (buf, 256, image_file)) { ++ if ((pos = strstr(buf, "%%BoundingBox:" )) != NULL){ ++ double llx, lly, urx, ury; ++ ++ while (*pos++ != ':' ); ++ if (sscanf (pos, "%lf %lf %lf %lf", ++ &llx, &lly, &urx, &ury) == 4) { ++ p -> u_llx = llx; ++ p -> u_lly = lly; ++ p -> u_urx = urx; ++ p -> u_ury = ury; ++ p -> user_bbox = 1; ++ break; ++ } ++ } ++ } ++ MFCLOSE (image_file); ++ } ++ } ++ ++ if(p -> user_bbox && validate_image_xform_info (p)) { ++ pdf_obj *embeded; ++ embeded = embed_image (filename, p, x_user, y_user, NULL); ++ if (embeded) ++ pdf_release_obj (embeded); ++ result = 1; ++ } ++ ++ release_xform_info (p); ++ } + } + return result; + } + +</pre> +<hr> +<p>この書き込みへの返事: +<form action="webbbs.cgi" method="post"> +お名前 <input type="text" name="name" size="20"><br> +題名 <input type="text" name="subject" size="40" value="Re: dvipdfm・・・"><br> +メッセージ(タグは <a href="...">...</a> だけ使えます)<br> +<textarea name="message" rows="6" cols="80"> +<a href="23745.html">>>23745</a> +</textarea> +<br> +<input type="submit" value="送る"> +<input type="reset" value="リセット"> +</form> |