Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory 
sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv15059/10.4-pangocairo/unstable/main/finkinfo/graphics

Modified Files:
      Tag: pangocairo-branch
        fontforge-10.5.info fontforge.info netpbm10.info pdftk.info 
        qspider.info reportlab-py.info tgif.info tgif.patch 
        transfig.info xfig.info 
Added Files:
      Tag: pangocairo-branch
        pdftk.patch pypdf-py.info 
Log Message:
sync


Index: tgif.patch
===================================================================
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/tgif.patch,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -d -r1.1 -r1.1.2.1
--- tgif.patch  24 Sep 2006 13:20:39 -0000      1.1
+++ tgif.patch  23 Apr 2008 07:48:52 -0000      1.1.2.1
@@ -40,3 +40,37 @@
  "Content-Transfer-Encoding: 8-bit\n"
  
  #: ../../menuinfo.c:71
+diff -Naur tgif-QPL-4.1.45.orig/convxim.c tgif-QPL-4.1.45/convxim.c
+--- tgif-QPL-4.1.45.orig/convxim.c     2006-06-14 07:29:57.000000000 +0900
++++ tgif-QPL-4.1.45/convxim.c  2008-04-03 04:07:49.000000000 +0900
+@@ -183,6 +183,7 @@
+     char      buf[80];
+     XIMStyles *    styles=NULL;
+     Bool      style_flag;
++    int         style_attr;
+     int       i;
+     XPoint spot;
+     XRectangle s_rect;
+@@ -242,9 +243,12 @@
+       if (overthespot) {
+         for(i = 0; i < (int)(styles->count_styles); i ++){
+           if(styles->supported_styles[i] ==
+-             (XIMPreeditPosition | XIMStatusArea)){
++             (XIMPreeditPosition | XIMStatusArea)
++             || (styles->supported_styles[i] ==
++                 (XIMPreeditPosition | XIMStatusNothing))){
+             style_flag = True;
+             style_type = OVERTHESPOT;
++            style_attr = styles->supported_styles[i];
+             Msg(TgLoadString(STID_OVERTHESPOT_CONV));
+           }
+         }
+@@ -290,7 +294,7 @@
+                                       XNFontSet, XIMfs,
+                                       NULL);
+       ic = XCreateIC(im,
+-              XNInputStyle , XIMPreeditPosition | XIMStatusArea,
++              XNInputStyle , style_attr,
+               XNClientWindow, win,
+               XNFocusWindow, win,
+               XNPreeditAttributes, preedit_attr,

--- NEW FILE: pdftk.patch ---
Index: pdftk-1.41/java_libs/com/lowagie/text/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/text/Makefile 2007-11-08 
14:03:26.800010177 +0100
+++ pdftk-1.41/java_libs/com/lowagie/text/Makefile      2007-11-08 
14:03:29.072639728 +0100
@@ -25,14 +25,15 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
 
 all : $(library) $(headers)
 
+$(classes): $(sources)
+
 $(library) : $(objects)
        $(AR) $(ARFLAGS) $(library) $(objects);
 
Index: pdftk-1.41/java_libs/com/lowagie/text/xml/xmp/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/text/xml/xmp/Makefile 2007-11-08 
14:03:26.820015719 +0100
+++ pdftk-1.41/java_libs/com/lowagie/text/xml/xmp/Makefile      2007-11-08 
14:03:29.092645270 +0100
@@ -25,8 +25,7 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
Index: pdftk-1.41/java_libs/com/lowagie/text/pdf/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/text/pdf/Makefile     2007-11-08 
14:03:26.832019044 +0100
+++ pdftk-1.41/java_libs/com/lowagie/text/pdf/Makefile  2007-11-08 
14:03:29.092645270 +0100
@@ -25,8 +25,7 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
@@ -37,4 +36,4 @@
        $(AR) $(ARFLAGS) $(library) $(objects);
 
 clean :
-       $(RM) $(RMFLAGS) *.o *.h *.class *.a
+       $(RM) $(RMFLAGS) *.o *.h *.class *.a hyphenation/*.class
Index: pdftk-1.41/java_libs/com/lowagie/text/pdf/fonts/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/text/pdf/fonts/Makefile       
2007-11-08 14:03:26.852024586 +0100
+++ pdftk-1.41/java_libs/com/lowagie/text/pdf/fonts/Makefile    2007-11-08 
14:03:29.092645270 +0100
@@ -34,8 +34,7 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
Index: pdftk-1.41/java_libs/com/lowagie/text/pdf/codec/postscript/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/text/pdf/codec/postscript/Makefile    
2007-11-08 14:03:26.868029019 +0100
+++ pdftk-1.41/java_libs/com/lowagie/text/pdf/codec/postscript/Makefile 
2007-11-08 14:03:29.092645270 +0100
@@ -25,8 +25,7 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
Index: pdftk-1.41/java_libs/com/lowagie/text/pdf/codec/wmf/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/text/pdf/codec/wmf/Makefile   
2007-11-08 14:03:26.908040103 +0100
+++ pdftk-1.41/java_libs/com/lowagie/text/pdf/codec/wmf/Makefile        
2007-11-08 14:03:29.092645270 +0100
@@ -25,8 +25,7 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
Index: pdftk-1.41/java_libs/com/lowagie/text/pdf/codec/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/text/pdf/codec/Makefile       
2007-11-08 14:03:26.928045645 +0100
+++ pdftk-1.41/java_libs/com/lowagie/text/pdf/codec/Makefile    2007-11-08 
14:03:29.100647487 +0100
@@ -25,8 +25,7 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
Index: pdftk-1.41/java_libs/com/lowagie/text/markup/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/text/markup/Makefile  2007-11-08 
14:03:26.948051187 +0100
+++ pdftk-1.41/java_libs/com/lowagie/text/markup/Makefile       2007-11-08 
14:03:29.100647487 +0100
@@ -25,8 +25,7 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
Index: pdftk-1.41/java_libs/com/lowagie/bc/asn1/Makefile
===================================================================
--- pdftk-1.41.orig/java_libs/com/lowagie/bc/asn1/Makefile      2007-11-08 
14:03:26.972057837 +0100
+++ pdftk-1.41/java_libs/com/lowagie/bc/asn1/Makefile   2007-11-08 
14:03:29.100647487 +0100
@@ -25,8 +25,7 @@
 # the "$*" automatic variable, here
 #
 %.h : %.class
-       $(GCJH) --classpath="." $*;
-       $(RM) $<
+       $(GCJH) --classpath="$(java_libs_root):." $*
 
 ##
 # targets
Index: pdftk-1.41/pdftk/Makefile.Base
===================================================================
--- pdftk-1.41.orig/pdftk/Makefile.Base 2007-11-08 14:03:42.008223078 +0100
+++ pdftk-1.41/pdftk/Makefile.Base      2007-11-08 14:03:50.490572824 +0100
@@ -73,4 +73,4 @@
 
 clean:
        $(MAKE) -C $(java_libs_root) clean
-       rm -vf *.o
+       rm -vf *.o pdftk
Index: pdftk/pdftk/Makefile.Base
===================================================================
--- pdftk.orig/pdftk/Makefile.Base      2007-11-14 13:26:12.343555702 +0100
+++ pdftk/pdftk/Makefile.Base   2007-11-14 13:26:12.363561247 +0100
@@ -31,18 +31,6 @@
 afms= $(wildcard $(java_libs_root)/com/lowagie/text/pdf/fonts/*.afm)
 afm_objects= $(patsubst %.afm, %.o, $(afms))
 
-# older versions of libgcj might not have the MD5 algorithm,
-# so I added it here; these *_local java files were grabbed from
-# libgcj CVS on March 7, 2004; diffed September 5, 2006 w/ gcc 4.1.1
-#
-# gnu/gcj/convert/Input_UnicodeBig.java was grabbed March 26, 2004; diffed 
September 5, 2006 w/ gcc 4.1.1
-#
-libgcj_local_libs = \
-$(java_libs_root)/java_local/security/security.a \
-$(java_libs_root)/gnu_local/java/security/provider/provider.a \
-$(java_libs_root)/gnu_local/java/security/security.a \
-$(java_libs_root)/gnu/gcj/convert/convert.a
-
 # this must already be set according to your platform Makefile;
 # we're just appending to it, here
 #
Index: pdftk/java_libs/com/lowagie/text/pdf/PdfEncryption.java
===================================================================
--- pdftk.orig/java_libs/com/lowagie/text/pdf/PdfEncryption.java        
2007-11-14 13:24:35.736779184 +0100
+++ pdftk/java_libs/com/lowagie/text/pdf/PdfEncryption.java     2007-11-14 
13:26:12.363561247 +0100
@@ -50,7 +50,7 @@
 
 package com.lowagie.text.pdf;
 
-import java_local.security.MessageDigest; // ssteward
+import java.security.MessageDigest;
 import com.lowagie.text.ExceptionConverter;
 
 /**
Index: pdftk/java_libs/Makefile
===================================================================
--- pdftk.orig/java_libs/Makefile       2007-11-14 13:26:12.343555702 +0100
+++ pdftk/java_libs/Makefile    2007-11-14 13:26:56.971925474 +0100
@@ -11,15 +11,9 @@
 java_libs_root= $(CURDIR)
 
 # append gcj flags
-export GCJFLAGS+= --encoding=UTF-8 --classpath="$(java_libs_root)"
+export GCJFLAGS+= -w --encoding=UTF-8 --classpath="$(java_libs_root)"
 
-all : libgcj_local itext
-
-libgcj_local :
-       $(MAKE) -C "$(java_libs_root)/gnu_local/java/security";
-       $(MAKE) -C "$(java_libs_root)/gnu_local/java/security/provider";
-       $(MAKE) -C "$(java_libs_root)/gnu/gcj/convert";
-       $(MAKE) -C "$(java_libs_root)/java_local/security";
+all : itext
 
 itext :
        $(MAKE) -C "$(java_libs_root)/com/lowagie/text";
@@ -35,13 +29,7 @@
        $(MAKE) -C "$(java_libs_root)/com/lowagie/bc/asn1";
        $(MAKE) -C "$(java_libs_root)/com/lowagie/text/pdf/codec/postscript";
 
-clean : libgcj_local_clean itext_clean
-
-libgcj_local_clean :
-       $(MAKE) -iC "$(java_libs_root)/gnu_local/java/security" clean;
-       $(MAKE) -iC "$(java_libs_root)/gnu_local/java/security/provider" clean;
-       $(MAKE) -iC "$(java_libs_root)/gnu/gcj/convert" clean;
-       $(MAKE) -iC "$(java_libs_root)/java_local/security" clean;
+clean : itext_clean
 
 itext_clean :
        $(MAKE) -iC "$(java_libs_root)/com/lowagie/text" clean;
build_with_gcc-4.2
no_embedded_libs
--- pdftk-1.41/pdftk/Makefile.MacOSX    2006-09-21 19:37:16.000000000 +0200
+++ pdftk-1.41-patched/pdftk/Makefile.MacOSX    2008-03-28 10:58:07.000000000 
+0100
@@ -15,9 +15,9 @@
 # for an article on building GCJ on OS X, see:
 # http://users.bestweb.net/~john3g/gcj_osx/gcj_on_osx.html
 #
-TOOLPATH= /usr/local/gcj/bin/
+TOOLPATH= /sw/bin/
 VERSUFF=
-CXX= $(TOOLPATH)g++$(VERSUFF)
+CXX= $(TOOLPATH)g++-4$(VERSUFF)
 export GCJ= $(TOOLPATH)gcj$(VERSUFF)
 export GCJH= $(TOOLPATH)gcjh$(VERSUFF)
 export AR= ar

--- NEW FILE: pypdf-py.info ---
Info2: <<

Package: pypdf-py%type_pkg[python]
Version: 1.10
Revision: 1
Description: Pure-Python library built as a PDF toolkit
DescDetail: <<
This module is capable of:

    * extracting document information (title, author, ...),
    * splitting documents page by page,
    * merging documents page by page,
    * cropping pages,
    * merging multiple pages into a single page,
    * encrypting and decrypting PDF files.

By being Pure-Python, it should run on any Python platform without any 
dependencies on external libraries. It can also work entirely on StringIO 
objects rather than file streams, allowing for PDF manipulation in memory.
<<
Source: http://pybrary.net/pyPdf/pyPdf-%v.tar.gz
Source-MD5: e15eca1a3ed4d5c0d86370784e552a92
Type: python (2.5)
Depends: python%type_pkg[python]
BuildDepends: setuptools-py%type_pkg[python] (>= 0.6c5-1)
CompileScript: <<
  #!/bin/bash -ev
  %p/bin/python%type_raw[python] setup.py build
<<
InstallScript: <<
  %p/bin/python%type_raw[python] setup.py install --root %d
<<
DocFiles: CHANGELOG  PKG-INFO  README
License: BSD
Homepage: http://pybrary.net/pyPdf/
Maintainer: Bobby H. Braswell <[EMAIL PROTECTED]>

# Info2
<<

Index: pdftk.info
===================================================================
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/pdftk.info,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- pdftk.info  11 Dec 2007 17:35:51 -0000      1.1.2.2
+++ pdftk.info  23 Apr 2008 07:48:51 -0000      1.1.2.3
@@ -1,17 +1,14 @@
 Package: pdftk
-Version: 1.12
-Revision: 3
+Version: 1.41
+Revision: 1
 
 BuildDepends: gcc42, libwmf, libjasper.1
 Depends: gcc42-shlibs, libwmf-shlibs, libjasper.1-shlibs
 
 Source: http://www.pdfhacks.com/pdftk/%n-%v.tar.gz
-Source-MD5: 509d21706bbff59c00e063ea16855163
+Source-MD5: d8057a3ae8c3af7dfc7ea110f481ad7a
 
-PatchScript: <<
-perl -pi.bak -e "s,/usr/local/gcj/bin/,%p/lib/gcc4.2/bin/,g" 
pdftk/Makefile.MacOSX
-perl -pi.bak -e "s,//SID ,,g" 
java_libs/com/lowagie/text/pdf/codec/PngImage.java
-<<
+Patch: %n.patch
 
 CompileScript: <<
   cd pdftk; make -f Makefile.MacOSX
@@ -48,13 +45,10 @@
 <<
 
 DescPort: <<
-in java_libs/com/lowagie/text/pdf/codec/PngImage.java, uncommented this line:
-//SID import com.lowagie.text.ImgRaw;
-in pdftk/Makefile.OSX, set path to gnu gcc4.2
-used debian/ man and html docu
+in pdftk/Makefile.OSX, set path to gnu gcc4.2 and use g++-4
+use man and html docu from debian/
 <<
 
 License: GPL
 Homepage: http://www.accesspdf.com/pdftk
 Maintainer: Matthias Ringwald <[EMAIL PROTECTED]>
-

Index: xfig.info
===================================================================
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/xfig.info,v
retrieving revision 1.6.2.3
retrieving revision 1.6.2.4
diff -u -d -r1.6.2.3 -r1.6.2.4
--- xfig.info   19 Mar 2008 18:55:37 -0000      1.6.2.3
+++ xfig.info   23 Apr 2008 07:48:52 -0000      1.6.2.4
@@ -1,7 +1,7 @@
 Package: xfig
 Version: 3.2.5
 Revision: 1010
-BuildDepends: libjpeg (>= 6b-3), libpng3, libtiff, xaw3d (>= 1.5-11), x11-dev, 
fink (>= 0.24.12)
+BuildDepends: libjpeg (>= 6b-3), libpng3, libtiff, xaw3d (>= 1.5-11), x11-dev, 
fink (>= 0.24.12), xmkmf (>= 1.0.2-2)
 Depends: x11, xaw3d-shlibs (>= 1.5-11), libjpeg-bin, app-defaults, 
x-ghostscript-fonts, transfig-graphicx (>= 3.2.5-1008) | transfig-epsfig (>= 
3.2.5-1008), libjpeg-shlibs, libpng3-shlibs, x11-shlibs
 Source: http://www.xfig.org/software/%n/%v/%n.%v.full.tar.gz
 Source-MD5: fae0c67a3951bd41c057deb63b6aa47a
@@ -14,10 +14,14 @@
  chmod 644 CHANGES FIGAPPS LATEX.AND.XFIG README
 <<
 CompileScript: <<
+#!/bin/sh -ev
+ export PATH=%p/lib/xmkmf/bin:$PATH 
  xmkmf
  make PREFIX=%p
 <<
 InstallScript: <<
+#!/bin/sh -ev
+ export PATH=%p/lib/xmkmf/bin:$PATH 
  make install PREFIX=%p DESTDIR=%d INSTALLFLAGS=-c
  make install.all PREFIX=%p DESTDIR=%d MANDIR=%p/share/man/man1 
DOCDIR=%p/share/doc/xfig INSTALLFLAGS=-c
  rm -Rf %d/usr

Index: transfig.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/transfig.info,v
retrieving revision 1.10.2.2
retrieving revision 1.10.2.3
diff -u -d -r1.10.2.2 -r1.10.2.3
--- transfig.info       29 May 2007 20:21:40 -0000      1.10.2.2
+++ transfig.info       23 Apr 2008 07:48:52 -0000      1.10.2.3
@@ -4,7 +4,7 @@
 Revision: 1008
 Type: epsfig (-epsfig -graphicx)
 Depends: x11, libjpeg-bin, libpng3-shlibs, libtiff-bin, netpbm-bin (>= 
10.12-3), x11-shlibs
-BuildDepends: libpng3, x11-dev, fink (>= 0.24.12)
+BuildDepends: libpng3, x11-dev, fink (>= 0.24.12), xmkmf (>= 1.0.2-2)
 Conflicts: transfig-epsfig, transfig-graphicx
 Replaces: transfig, transfig-epsfig, transfig-graphicx
 Provides: transfig
@@ -20,11 +20,15 @@
  fi
 <<
 CompileScript: <<
+#!/bin/sh -ev
+ export PATH=%p/lib/xmkmf/bin:$PATH 
  xmkmf
  make Makefiles
  make PREFIX=%p
 <<
 InstallScript: <<
+#!/bin/sh -ev
+ export PATH=%p/lib/xmkmf/bin:$PATH 
  make install PREFIX=%p DESTDIR=%d BINDIR=%p/bin INSTALLFLAGS=-c
  make install.man PREFIX=%p DESTDIR=%d MANPATH=%p/share/man 
DOCDIR=%p/share/doc/transfig INSTALLFLAGS=-c
 <<

Index: netpbm10.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/netpbm10.info,v
retrieving revision 1.2.2.3
retrieving revision 1.2.2.4
diff -u -d -r1.2.2.3 -r1.2.2.4
--- netpbm10.info       5 Mar 2008 03:33:29 -0000       1.2.2.3
+++ netpbm10.info       23 Apr 2008 07:48:51 -0000      1.2.2.4
@@ -1,13 +1,13 @@
 Package: netpbm10
-Version: 10.26.39
-Revision: 4
+Version: 10.26.53
+Revision: 1
 BuildDepends: libjpeg, libpng3, libtiff, fink (>= 0.24.12-1)
 Depends: %N-shlibs (= %v-%r)
 Replaces: netpbm
 Conflicts: netpbm
 BuildDependsOnly: True
 Source: mirror:sourceforge:netpbm/netpbm-%v.tgz
-Source-MD5: bada0d4cbff1113ae14e3a8456c1d41a
+Source-MD5: 33b7145f323b3f2907eed3b6688a0d50
 NoSetMAKEFLAGS: true
 NoSetLDFLAGS: true
 SetLIBRARY_PATH: %p/lib

Index: fontforge.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/fontforge.info,v
retrieving revision 1.10.2.12
retrieving revision 1.10.2.13
diff -u -d -r1.10.2.12 -r1.10.2.13
--- fontforge.info      5 Mar 2008 03:33:29 -0000       1.10.2.12
+++ fontforge.info      23 Apr 2008 07:48:51 -0000      1.10.2.13
@@ -1,6 +1,6 @@
 Info2: <<
 Package: fontforge
-Version: 20080302
+Version: 20080330
 Revision: 1
 Type: python (2.3)
 Distribution: 10.4
@@ -36,10 +36,10 @@
 Maintainer: Daniel Johnson <[EMAIL PROTECTED]>
 
 Source: mirror:sourceforge:%n/%n_full-%v.tar.bz2
-Source-MD5: 9b1e527648301f79f43becd4c0087a0a
+Source-MD5: f1283d157327779cd864442107a8329d
 SourceDirectory: %n-%v
 Source2: mirror:sourceforge:%n/%n_htdocs-%v.tar.bz2
-Source2-MD5: dfe77acaa6c0c3140baa9dc499af9066
+Source2-MD5: 96072e2376ed941f868b4561a5921be3
 Source2ExtractDir: %n-%v/htdocs
 
 Depends: <<

Index: tgif.info
===================================================================
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/tgif.info,v
retrieving revision 1.5.2.1
retrieving revision 1.5.2.2
diff -u -d -r1.5.2.1 -r1.5.2.2
--- tgif.info   28 Dec 2006 17:50:19 -0000      1.5.2.1
+++ tgif.info   23 Apr 2008 07:48:52 -0000      1.5.2.2
@@ -1,12 +1,12 @@
 Package: tgif
 Version: 4.1.45
-Revision: 2
+Revision: 3
 Source: ftp://bourbon.usc.edu/pub/%n/%n-QPL-%v.tar.gz
 Source-MD5: 5c1eba8291385c630b8099fa9b042455
 BuildDepends: x11-dev, gettext-tools, gettext-bin, libgettext3-dev, fink (>= 
0.24.12)
 Depends: x11, rman, app-defaults, netpbm-bin, libgettext3-shlibs
 PatchFile: %n.patch
-PatchFile-MD5: 818cf82712ecec1fee23656f6b09cd9a
+PatchFile-MD5: c548d62fd9e786b2358897e8f4f36733
 PatchScript: <<
 sed 's|@PREFIX@|%p|g' %{PatchFile} | patch -p1
 rm -f Tgif.tmpl
@@ -14,7 +14,7 @@
 <<
 CompileScript: <<
  xmkmf
- make
+ make TGIFDIR=%p/share/tgif
  cd po; xmkmf ; make Makefile Makefiles depend all
 <<
 InstallScript: <<

Index: qspider.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/qspider.info,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- qspider.info        5 Mar 2008 03:33:30 -0000       1.1.2.3
+++ qspider.info        23 Apr 2008 07:48:52 -0000      1.1.2.4
@@ -1,8 +1,8 @@
 Package: qspider
-Version: 0.23.8
+Version: 0.23.9
 Revision: 1002
-Source: http://www.qspider.org/repos/%n/Ver_%v/QSpider_Source_Ver_0_23_8.zip
-Source-MD5: 44882ce8db43cd33ba2ba35dcdb05fbf
+Source: http://www.qspider.org/repos/%n/Ver_%v/QSpider_Source_Ver_0_23_9.zip
+Source-MD5: 2eb798515dd59276591fd98ec2b9d07e
 SourceDirectory: QSpider
 Source2: http://www.gnu.org/licenses/gpl.txt
 Source2-MD5: 751419260aa954499f7abaabaa882bbe

Index: reportlab-py.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/reportlab-py.info,v
retrieving revision 1.3.2.2
retrieving revision 1.3.2.3
diff -u -d -r1.3.2.2 -r1.3.2.3
--- reportlab-py.info   19 Jul 2007 22:23:28 -0000      1.3.2.2
+++ reportlab-py.info   23 Apr 2008 07:48:52 -0000      1.3.2.3
@@ -5,7 +5,7 @@
 Distribution: (%type_pkg[python] = 23) 10.3, (%type_pkg[python] = 23) 10.4
 Type: python (2.3 2.4 2.5)
 Description: PDF creation library for Python
-Source: http://reportlab.org/ftp/ReportLab_2_1.tgz
+Source: http://www.reportlab.org/ftp/ReportLab_2_1.tgz
 Source-MD5: d6eefe9e6e06aaa1315462045c9726ba
 SourceDirectory: reportlab_2_1/reportlab
 DocFiles: README MANIFEST.in changes license.txt
@@ -53,6 +53,6 @@
     Previous maintainer: Stuart Bishop <[EMAIL PROTECTED]>
 <<
 DescPort: This package installs the extensions into Python
-Homepage: http://reportlab.org/rl_toolkit.html
+Homepage: http://www.reportlab.org/rl_toolkit.html
 Maintainer: Koen van der Drift <[EMAIL PROTECTED]>
 <<

Index: fontforge-10.5.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/fontforge-10.5.info,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -d -r1.1.2.4 -r1.1.2.5
--- fontforge-10.5.info 5 Mar 2008 03:33:29 -0000       1.1.2.4
+++ fontforge-10.5.info 23 Apr 2008 07:48:51 -0000      1.1.2.5
@@ -1,6 +1,6 @@
 Info2: <<
 Package: fontforge
-Version: 20080302
+Version: 20080330
 Revision: 101
 Type: python (2.5)
 Distribution: 10.5
@@ -36,10 +36,10 @@
 Maintainer: Daniel Johnson <[EMAIL PROTECTED]>
 
 Source: mirror:sourceforge:%n/%n_full-%v.tar.bz2
-Source-MD5: 9b1e527648301f79f43becd4c0087a0a
+Source-MD5: f1283d157327779cd864442107a8329d
 SourceDirectory: %n-%v
 Source2: mirror:sourceforge:%n/%n_htdocs-%v.tar.bz2
-Source2-MD5: dfe77acaa6c0c3140baa9dc499af9066
+Source2-MD5: 96072e2376ed941f868b4561a5921be3
 Source2ExtractDir: %n-%v/htdocs
 
 Depends: <<


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to