Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv30221/stable/main/finkinfo/libs/perlmods

Modified Files:
        opengl-pm.info opengl-pm.patch 
Log Message:
new version


Index: opengl-pm.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/opengl-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- opengl-pm.info      10 Jan 2012 04:43:34 -0000      1.1
+++ opengl-pm.info      17 Jul 2012 07:44:30 -0000      1.2
@@ -1,6 +1,6 @@
 Info2: <<
 Package: opengl-pm%type_pkg[perl]
-Version: 0.62
+Version: 0.66
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
 Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
@@ -22,11 +22,11 @@
 <<
 
 Source: mirror:cpan:authors/id/C/CH/CHM/OpenGL-%v.tar.gz
-Source-MD5: 905407fa94ca0fc9c1e0ae7c140a4272
+Source-MD5: bdfbffb31f03acbfb6d0123ceb159436
 SourceDirectory: OpenGL-%v
 PatchScript: sed -e 's,@PREFIX@,%p,g' %{PatchFile} | patch -p1
 PatchFile: opengl-pm.patch
-PatchFile-MD5: 4b7a09dd253fbce2ea3ef154e69a5106
+PatchFile-MD5: 092c08025bda164125cb00ef0b6b60b6
 
 SetCFLAGS: -I/usr/X11/include -I/usr/X11R6/include
 SetLDFLAGS: -L/usr/X11/lib -L/usr/X11R6/lib

Index: opengl-pm.patch
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/opengl-pm.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- opengl-pm.patch     10 Jan 2012 04:43:34 -0000      1.1
+++ opengl-pm.patch     17 Jul 2012 07:44:30 -0000      1.2
@@ -1,7 +1,7 @@
-diff -Nurd OpenGL-0.62/Makefile.PL OpenGL-0.62-new/Makefile.PL
---- OpenGL-0.62/Makefile.PL    2009-12-10 19:10:00.000000000 -0500
-+++ OpenGL-0.62-new/Makefile.PL        2010-06-01 14:09:22.000000000 -0400
-@@ -116,6 +116,7 @@
+diff -Nurd -x'*~' OpenGL-0.66.orig/Makefile.PL OpenGL-0.66/Makefile.PL
+--- OpenGL-0.66.orig/Makefile.PL       2011-07-11 13:08:34.000000000 -0400
++++ OpenGL-0.66/Makefile.PL    2012-07-17 03:41:47.000000000 -0400
+@@ -118,6 +118,7 @@
  # Look for available libs
  our @libdirs = qw
  {
@@ -9,16 +9,16 @@
    -L/usr/lib
    -L/usr/X11R6/lib
    -L/usr/local/lib
-@@ -197,7 +198,7 @@
+@@ -200,7 +201,7 @@
        }
        elsif ($interface eq 'AGL')
        {
 -        if ($^O ne 'darwin' || !$found_libs->{GLUT})
 +        if (0)
          {
-           "AGL interface requires GLUT.framework\n";
+           print "AGL interface requires GLUT.framework\n";
            next;
-@@ -320,7 +321,7 @@
+@@ -323,7 +324,7 @@
      die "No suitable OpenGL+GLUT interface found for CYGWIN\n";
    }
  }
@@ -27,7 +27,7 @@
  {
    $interface_lib = 'AGL';
  }
-@@ -456,9 +457,9 @@
+@@ -443,9 +444,9 @@
  {
    my @includes = qw
    {
@@ -38,8 +38,8 @@
 +    -I@PREFIX@/include
      -I/usr/openwin/include
      -I/opt/csw/include
-   };
-@@ -640,7 +641,7 @@
+     -I/usr/local/freeglut/include
+@@ -645,7 +646,7 @@
    my $libs;
  
    # Mac OS X
@@ -48,7 +48,7 @@
    {
  
      $found->{GL} = 'OpenGL.framework';
-@@ -770,7 +771,7 @@
+@@ -775,7 +776,7 @@
    my $exc_file = 'gl_exclude.h';
    unlink($exc_file) if (-e $exc_file);
    my $glv_file = 'utils/glversion.txt';
@@ -57,7 +57,7 @@
  
    # Only run the rest if GLUT is installed
    print "Testing GLUT version\n" if ($verbose);
-@@ -808,7 +809,7 @@
+@@ -813,7 +814,7 @@
      $make_ver = '&nmake -f makefile.mak ' . (length($def) ? "GLUT_DEF=$def " 
: "");
      print "MSWin32 glversion: '$make_ver'\n" if $verbose>1;
    }
@@ -66,7 +66,7 @@
    {
      $make_ver = ";make -f Makefile.macosx " .  (length($lib) ? "GLUT_LIB=$lib 
" : "") . (length($def) ? "GLUT_DEF=$def " : "");
      print "MacOSX glversion: '$make_ver'\n" if $verbose>1;
-@@ -825,8 +826,8 @@
+@@ -830,8 +831,8 @@
    }
    my $exec = 'cd utils'."$make_ver clean".$make_ver;
    print "glversion: $exec\n" if ($verbose);
@@ -77,9 +77,9 @@
  
  
    # Parse glversion.txt file
-diff -Nurd OpenGL-0.62/gl_util.h OpenGL-0.62-new/gl_util.h
---- OpenGL-0.62/gl_util.h      2009-09-22 11:36:44.000000000 -0400
-+++ OpenGL-0.62-new/gl_util.h  2010-06-01 14:15:27.000000000 -0400
+diff -Nurd -x'*~' OpenGL-0.66.orig/gl_util.h OpenGL-0.66/gl_util.h
+--- OpenGL-0.66.orig/gl_util.h 2011-07-05 09:35:55.000000000 -0400
++++ OpenGL-0.66/gl_util.h      2012-07-17 03:41:47.000000000 -0400
 @@ -287,12 +287,14 @@
  GLAPI void APIENTRY glUniformMatrix3x4fv (GLint, GLsizei, GLboolean, const 
GLfloat *);
  GLAPI void APIENTRY glUniformMatrix4x3fv (GLint, GLsizei, GLboolean, const 
GLfloat *);
@@ -95,9 +95,9 @@
  #ifdef GL_GLEXT_PROCS
  static PFNGLUNIFORMMATRIX2X3FVPROC glUniformMatrix2x3fv = NULL;
  static PFNGLUNIFORMMATRIX3X2FVPROC glUniformMatrix3x2fv = NULL;
-diff -Nurd OpenGL-0.62/utils/glversion.txt OpenGL-0.62-new/utils/glversion.txt
---- OpenGL-0.62/utils/glversion.txt    1969-12-31 19:00:00.000000000 -0500
-+++ OpenGL-0.62-new/utils/glversion.txt        2010-06-01 14:10:30.000000000 
-0400
+diff -Nurd -x'*~' OpenGL-0.66.orig/utils/glversion.txt 
OpenGL-0.66/utils/glversion.txt
+--- OpenGL-0.66.orig/utils/glversion.txt       1969-12-31 19:00:00.000000000 
-0500
++++ OpenGL-0.66/utils/glversion.txt    2012-07-17 03:41:47.000000000 -0400
 @@ -0,0 +1,5 @@
 +GLUT=-1
 +VERSION=1.1 NVIDIA-1.4.18


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to