Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/games
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23173

Modified Files:
        eboard.info eboard.patch 
Log Message:
dep cleanups: lots of GNOME modernization, direct specs, etc. And libpng 
ugprade from upstream bug report


Index: eboard.info
===================================================================
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/games/eboard.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- eboard.info 21 Aug 2012 08:46:26 -0000      1.2
+++ eboard.info 6 Aug 2013 10:26:41 -0000       1.3
@@ -1,18 +1,20 @@
 Package: eboard
 Version: 1.1.1
-Revision: 2
+Revision: 3
 Maintainer: Matthias Neeracher <neerac...@mac.com>
-Depends: gtk+2-shlibs (>= 2.18.9-6), chess, expect
-BuildDepends: atk1 (>= 1.28.0-2), cairo (>= 1.8.10-1), fontconfig2-dev, 
freetype219 (>= 2.4.4-2), libiconv-dev, gtk+2-dev (>= 2.18.9-6), libpng14, 
glib2-dev (>= 2.22.4-5), pixman (>= 0.22.2-1), pango1-xft2-ft219-dev (>= 
1.24.5-7), x11-dev, glitz, fink (>= 0.24.12)
+Depends: atk1-shlibs (>= 1.28.0-1), cairo-shlibs (>= 1.12.8-1), 
fontconfig2-shlibs (>= 2.10.0-1), freetype219-shlibs (>= 2.4.11-1), 
glib2-shlibs (>= 2.22.0-1), gtk+2-shlibs (>= 2.18.0-1), libpng16-shlibs, 
pango1-xft2-ft219-shlibs (>= 1.24.5-4), chess, expect
+BuildDepends: atk1 (>= 1.28.0-1), cairo (>= 1.12.8-1), fontconfig2-dev (>= 
2.10.0-1), freetype219  (>= 2.4.11-1), gtk+2-dev (>= 2.18.0-1), libpng16, 
glib2-dev (>= 2.22.0-1), pango1-xft2-ft219-dev (>= 1.24.5-4), x11-dev, 
pkgconfig, fink-package-precedence
 Source: mirror:sourceforge:%n/%n-%v.tar.bz2
 Source-MD5: 03dcdaa2bc85218b1b18c4bee276fea7
 PatchFile: %n.patch
-PatchFile-MD5: 38bf784a33afc23d5066938bbabad66d
+PatchFile-MD5: 6cc2cab7c60f54cbf7ec23fd7cedc178
 GCC: 4.0
+ConfigureParams: --extra-flags=-MD
 CompileScript: <<
 #!/bin/sh -ev
-export 
PKG_CONFIG_PATH="%p/lib/glib-2.0/pkgconfig-strict:%p/lib/fontconfig2/lib/pkgconfig:$PKG_CONFIG_PATH"
+export PKG_CONFIG_PATH="%p/lib/glib-2.0/pkgconfig-strict:$PKG_CONFIG_PATH"
 %{default_script}
+fink-package-precedence --depfile-ext='\.d' .
 <<
 InstallScript: make install bindir=%i/bin mandir=%i/share/man 
datadir=%i/share/eboard
 DocFiles: README AUTHORS COPYING TODO Documentation/*
@@ -21,5 +23,12 @@
 Eboard allows you to play chess either against a computer, against a human,
 or through an internet chess server.
 <<
+DescPackaging: <<
+       dmacks: gnome dep cleanups (including specifying all directly
+       used ones).
+
+       dmacks: added patch for newer libpng, from
+       http://sourceforge.net/p/eboard/bugs/133/
+<<
 License: GPL
 Homepage: http://www.bergo.eng.br/eboard/

Index: eboard.patch
===================================================================
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/games/eboard.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- eboard.patch        23 Jul 2011 13:01:40 -0000      1.1
+++ eboard.patch        6 Aug 2013 10:26:41 -0000       1.2
@@ -1,3 +1,20 @@
+diff -ru eboard-1.1.1-orig/cimg.cc eboard-1.1.1/cimg.cc
+--- eboard-1.1.1-orig/cimg.cc  2008-02-22 10:51:22.000000000 -0500
++++ eboard-1.1.1/cimg.cc       2013-08-06 06:18:35.000000000 -0400
+@@ -94,11 +94,11 @@
+       ct == PNG_COLOR_TYPE_GRAY_ALPHA)
+     png_set_gray_to_rgb(pngp);
+ 
+-  alloc(pngp->width,pngp->height);
++  alloc(png_get_image_width(pngp, infp),png_get_image_height(pngp, infp));
+   if (!ok) { fclose(f); return; }
+   ok = 0;
+ 
+-  for(i=0;i<pngp->height;i++) {
++  for(i=0;i<png_get_image_height(pngp, infp);i++) {
+     png_read_row(pngp, (png_bytep) (&data[i*rowlen]), NULL);
+   }
+ 
 diff -ru eboard-1.1.1-orig/configure eboard-1.1.1/configure
 --- eboard-1.1.1-orig/configure        2011-07-23 14:22:32.000000000 +0200
 +++ eboard-1.1.1/configure     2011-07-23 14:30:55.000000000 +0200
@@ -10,8 +27,6 @@
  my @ldflags     = ("-lpthread");
  my @libs        = ();
  my $configh     = "config.h";
-Only in eboard-1.1.1: configure.orig
-Only in eboard-1.1.1: configure.rej
 diff -ru eboard-1.1.1-orig/sound.cc eboard-1.1.1/sound.cc
 --- eboard-1.1.1-orig/sound.cc 2011-07-23 14:22:32.000000000 +0200
 +++ eboard-1.1.1/sound.cc      2011-07-23 14:58:25.000000000 +0200


------------------------------------------------------------------------------
Get your SQL database under version control now!
Version control is standard for application code, but databases havent 
caught up. So what steps can you take to put your SQL databases under 
version control? Why should you start doing it? Read more to find out.
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to