Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21629/10.4/unstable/main/finkinfo/text

Modified Files:
        latex2html-ja.info 
Added Files:
        latex2html-ja.patch 
Log Message:
Fixed the problem that underline appears in images of mathematical expression.

--- NEW FILE: latex2html-ja.patch ---
diff -Naur latex2html-2002-2-1.orig/config/install.pl 
latex2html-2002-2-1/config/install.pl
--- latex2html-2002-2-1.orig/config/install.pl  2002-11-29 20:49:01.000000000 
+0900
+++ latex2html-2002-2-1/config/install.pl       2006-04-02 22:46:31.000000000 
+0900
@@ -294,12 +294,12 @@
 my $iconrx = join('|', @icon_types);
 
 my $dest1 = "$cfg{'SHLIBDIR'}${dd}icons";
-if((-d $dest1 && !-w _) || (-d $cfg{'SHLIBDIR'} && !-w _)) {
+if((-d "$ENV{'DESTDIR'}$dest1" && !-w _) || (-d 
"$ENV{'DESTDIR'}$cfg{'SHLIBDIR'}" && !-w _)) {
   print STDERR "Error: Cannot install icons in '$dest1': No write 
permission.\n";
   $dest1 = '';
 }
 my $dest2 = $cfg{'ICONSTORAGE'} || '';
-if(-d $dest2 && !-w $dest2) {
+if(-d "$ENV{'DESTDIR'}$dest2" && !-w _) {
   print STDERR "Error: Cannot install icons in '$dest2': No write 
permission.\n";
   $dest2 = '';
 }
diff -Naur latex2html-2002-2-1.orig/prefs.pm latex2html-2002-2-1/prefs.pm
--- latex2html-2002-2-1.orig/prefs.pm   2006-04-02 21:04:18.000000000 +0900
+++ latex2html-2002-2-1/prefs.pm        2006-04-02 21:04:55.000000000 +0900
@@ -220,7 +220,7 @@
 # $prefs{'DVIPSOPT'} = ' -E';  # create encapsulated (EPS) images
 # $prefs{'DVIPSOPT'} = ' -Ppdf'; # use Type 1 fonts, as for PDF
 # $prefs{'DVIPSOPT'} = ' -Pcmz -Pamz'; # use CM and AMS Type 1 fonts
-$prefs{'DVIPSOPT'} = ' -Ppdf';
+$prefs{'DVIPSOPT'} = ' ';
 
 # set this to 1 if you want dvips to create special fonts for better
 # image generation. You need to set the following two items to correct
diff -Naur latex2html-2002-2-1.orig/pstoimg.pin latex2html-2002-2-1/pstoimg.pin
--- latex2html-2002-2-1.orig/pstoimg.pin        2004-01-03 15:14:59.000000000 
+0900
+++ latex2html-2002-2-1/pstoimg.pin     2006-04-02 21:20:50.000000000 +0900
@@ -330,7 +330,7 @@
 #-
 #if @IMAGE_TYPES@ =~ /gif/i
 # GIF support
-my $PPMTOGIF = '@PPMTOGIF@';
+my $PPMTOGIF = '@PPMTOGIF@ -nolzw';
 #if @GIFTRANS@
 my $GIFTRANS = '@GIFTRANS@';
 #fi
diff -Naur latex2html-2002-2-1.orig/styles/japanese.perl 
latex2html-2002-2-1/styles/japanese.perl
--- latex2html-2002-2-1.orig/styles/japanese.perl       2006-04-02 
21:04:18.000000000 +0900
+++ latex2html-2002-2-1/styles/japanese.perl    2006-04-02 21:04:44.000000000 
+0900
@@ -20,14 +20,42 @@
     $lof_title = "¿ÞÌܼ¡";
     $lot_title = "ɽÌܼ¡";
     $idx_title = "º÷°ú";
-    $bib_title = "»²¹Íʸ¸¥";
+    $ref_title = "»²¹Íʸ¸¥";
+    $bib_title = "ʸ¸¥ÌÜÏ¿";
     $abs_title = "³µÍ×";
+    $app_title = "Êä°ä";
+    $pre_title = "Preface";
+    $foot_title = "µÓÃí";
+    $thm_title = "ÄêÍý";
     $fig_name  = "¿Þ";
     $tab_name  = "ɽ";
+    $prf_name = "¾ÚÌÀ";
+    $date_name = "ÆüÉÕ";
+    $page_name = "¥Ú¡¼¥¸";
+  #  Sectioning-level titles
+    $part_name = "Part";
+    $chapter_name = "¾Ï";
+    $section_name = "Àá";
+    $subsection_name = "Àá";
+    $subsubsection_name = "Àá";
+    $paragraph_name = "Àá";
+  #  Misc. strings
+    $child_name = "Subsections";
     $info_title = "¤³¤Îʸ½ñ¤Ë¤Ä¤¤¤Æ..."; 
+    $also_name = "see also";
+    $see_name = "see";
+  #  names in navigation panels
+    $next_name = "¼¡¤Ø";
+    $up_name = "¾å¤Ø";
+    $prev_name = "Ìá¤ë";
+  #  field names in email headers
+    $encl_name = "encl";
+    $headto_name = "To";
+    $cc_name = "cc";
     @Month = ('', '1·î', '2·î', '3·î', '4·î', '5·î',
               '6·î', '7·î', '8·î', '9·î', '10·î',
               '11·î', '12·î');
+    $GENERIC_WORDS = "and|the|of|for|by|a|an|to";
 #    @Month = ('', 'ËÓ·î', 'Ç¡·î', 'ÌïÀ¸', '±¬·î', '»©·î',
 #              '¿å̵·î', 'ʸ·î', 'ÍÕ·î', 'Ĺ·î', '¿À̵·î',
 #              'Áú·î', '»ÕÁö');
@@ -83,6 +111,12 @@
         sprintf("Ê¿À®%sǯ%s%dÆü", $y, @Month[$m+1], $d);
 }
 
+sub japanese_today {
+    local($today) = &get_date();
+    $today =~ s|(\d+)/0?(\d+)/|$2 $Month[$1] |;
+    join('',$today,$_[0]);
+}
+
 &japanese_titles;
 $default_language = 'japanese';
 $TITLES_LANGUAGE = 'japanese';

Index: latex2html-ja.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/text/latex2html-ja.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- latex2html-ja.info  6 Mar 2006 19:28:44 -0000       1.2
+++ latex2html-ja.info  4 Apr 2006 23:07:55 -0000       1.3
@@ -1,7 +1,8 @@
 Package: latex2html-ja
 Version: 2002-2-1
-Revision: 6
-Depends: ptex3-base, netpbm-bin
+Revision: 7
+Depends: ptex3-base, netpbm-bin, system-perl
+BuildDepends: fink (>= 0.24.12)
 Conflicts: latex2html
 Replaces: latex2html
 Provides: latex2html
@@ -11,9 +12,17 @@
 Source-MD5: a79cda0648c8721ab6df5020cd11e220
 Source2: 
http://takeno.iee.niit.ac.jp/~shige/TeX/latex2html/data/l2h-2002-2-1+jp2.0.patch.gz
 Source2-MD5: d9410f69e046604c8c109ba6bb774e51
-ConfigureParams: --with-texpath=%p/etc/texmf.local/tex/latex/html 
--with-mktexlsr=/bin/ls
-PatchScript: zcat ../l2h-2002-2-1+jp2.0.patch.gz | patch -p1 -F3
-InstallScript: make install DESTDIR=%d
+PatchFile: %n.patch
+PatchFile-MD5: e2ecc5655b712a331cbfe6797b3a751d
+PatchScript: <<
+ zcat ../l2h-2002-2-1+jp2.0.patch.gz | patch -p1 -F3
+ patch -p1 < %{PatchFile}
+<<
+ConfigureParams: --with-texpath=%p/etc/texmf.local/tex/latex/html 
--with-mktexlsr=/bin/ls --with-perl=/usr/bin/perl
+InstallScript: <<
+ make install DESTDIR=%d
+ rm %i/etc/texmf.local/tex/latex/html/{latin9.def,url.sty}
+<<
 DocFiles: BUGS Changes FAQ INSTALL LICENSE MANIFEST README* TODO
 License: OSI-Approved
 PostInstScript: <<



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Fink-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to