Author: ranger
Date: Wed Sep 13 17:52:57 2006
New Revision: 401

URL: 
<http://svn.finkproject.org/websvn/listing.php?sc=1&rev=401&repname=user%3a+ranger>
Log:
cleanup

Added:
    
trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.info
    
trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.patch
Removed:
    trunk/experimental/3rdparty/10.3/main/finkinfo/gnome/gtk+2.info
    trunk/experimental/3rdparty/10.3/main/finkinfo/gnome/gtk+2.patch
    trunk/experimental/3rdparty/10.3/main/finkinfo/gnome/pango1-xft2-ft219.info
    trunk/experimental/3rdparty/10.3/main/finkinfo/gnome/pango1-xft2-ft219.patch
    trunk/experimental/3rdparty/10.4/main/finkinfo/gnome/gtk+2.info
    trunk/experimental/3rdparty/10.4/main/finkinfo/gnome/gtk+2.patch
    trunk/experimental/3rdparty/10.4/main/finkinfo/gnome/pango1-xft2-ft219.info
    trunk/experimental/3rdparty/10.4/main/finkinfo/gnome/pango1-xft2-ft219.patch
    trunk/experimental/3rdparty/common/main/finkinfo/devel/intltool.info
    trunk/experimental/3rdparty/common/main/finkinfo/gnome/gtk+2.info
    trunk/experimental/3rdparty/common/main/finkinfo/gnome/gtk+2.patch
    
trunk/experimental/3rdparty/common/main/finkinfo/gnome/pango1-xft2-ft219.info
    
trunk/experimental/3rdparty/common/main/finkinfo/gnome/pango1-xft2-ft219.patch

Added: 
trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.info
URL: 
<http://svn.finkproject.org/websvn/filedetails.php?path=/trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.info&rev=401&repname=user%3a+ranger>
==============================================================================
--- 
trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.info 
(added)
+++ 
trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.info 
Wed Sep 13 17:52:57 2006
@@ -1,0 +1,25 @@
+Info2: <<
+Package: inline-pm%type_pkg[perl]
+Version: 0.44
+Revision: 1
+Replaces: inline-pm (<= 0.43-3), inline-pm560, inline-pm580
+Source: mirror:cpan:modules/by-module/Inline/Inline-%v.tar.gz
+Patch: inline-pm.patch
+Type: perl(5.8.1 5.8.6 5.8.8)
+UpdatePOD: true
+InstallScript: <<
+  %{default_script}
+  mv %i/share/man %i/lib/perl5/%type_raw[perl]
+<<
+DocFiles: Changes C/Changes:Changes.C 
lib/Inline/MakeMaker/Changes:Changes.Inline-MakeMaker 
modules/Math/Simple/Changes:Changes.Math-Simple MANIFEST README 
C/README:README.C
+Description: Embed other languages in perl subroutines
+DescPort: <<
+  dmacks fixed how perl interp is located
+<<
+Depends: perl%type_pkg[perl]-core, rec-descent-pm (>= 1.80-16)
+BuildDepends: perl%type_pkg[perl]-core, fink (>= 0.20.1-1)
+License: Artistic
+Maintainer: Jeffrey Whitaker <[EMAIL PROTECTED]>
+Homepage: http://search.cpan.org/dist/Inline
+Source-MD5: 840f47d9b6cef39e68370faf9dceab2c 
+<<

Added: 
trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.patch
URL: 
<http://svn.finkproject.org/websvn/filedetails.php?path=/trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.patch&rev=401&repname=user%3a+ranger>
==============================================================================
--- 
trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.patch 
(added)
+++ 
trunk/experimental/3rdparty/common/main/finkinfo/libs/perlmods/inline-pm.patch 
Wed Sep 13 17:52:57 2006
@@ -1,0 +1,53 @@
+diff -uNr Inline-0.44/C/C.pm Inline-0.44-new/C/C.pm
+--- Inline-0.44/C/C.pm 2002-10-18 15:05:48.000000000 -0400
++++ Inline-0.44-new/C/C.pm     2006-08-31 12:26:01.000000000 -0400
+@@ -695,10 +695,7 @@
+ 
+ sub makefile_pl {
+     my ($o) = @_;
+-    my $perl;
+-    -f ($perl = $Config::Config{perlpath})
+-      or ($perl = $^X)
+-      or croak "Can't locate your perl binary";
++    my $perl = sprintf "perl%vd", $^V;
+     $o->system_call("$perl Makefile.PL", 'out.Makefile_PL');
+     $o->fix_make;
+ }
+diff -uNr Inline-0.44/C/Makefile.PL Inline-0.44-new/C/Makefile.PL
+--- Inline-0.44/C/Makefile.PL  2002-10-28 13:26:08.000000000 -0500
++++ Inline-0.44-new/C/Makefile.PL      2006-08-31 12:27:11.000000000 -0400
+@@ -34,7 +34,7 @@
+ 
+ if ($found) {
+     print <<END;
+-I have located this compiler on your system:
++I have located this compiler on your system.
+ 
+ END
+ }
+@@ -55,12 +55,7 @@
+ # '
+ }
+ 
+-my $answer = '';
+-my $default = $found ? "y" : "n";
+-while (1) {
+-    $answer = prompt ('Do you want to install Inline::C?', $default); 
+-    last if $answer =~ /^(y|yes|n|no)$/i;
+-}
++my $answer = 'yes';
+ 
+ if ($answer =~ /^(y|yes)$/i) {
+     WriteMakefile(
+diff -uNr Inline-0.44/Inline.pm Inline-0.44-new/Inline.pm
+--- Inline-0.44/Inline.pm      2002-10-28 02:25:19.000000000 -0500
++++ Inline-0.44-new/Inline.pm  2006-08-31 12:27:52.000000000 -0400
+@@ -730,7 +730,7 @@
+     # That way the queried modules don't stay loaded.
+     if (defined $o) {
+       ($dir) = $dir =~ /(.*)/s if UNTAINT;
+-      my $perl = $Config{perlpath};
++      my $perl = sprintf "perl%vd", $^V;
+         $perl = $^X unless -f $perl;
+       ($perl) = $perl =~ /(.*)/s if UNTAINT;
+       local $ENV{PERL5LIB} if defined $ENV{PERL5LIB};


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to