summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2009-08-16 09:31:38 +0000
committerTorsten Veller <tove@gentoo.org>2009-08-16 09:31:38 +0000
commit0f7b21f3536f8de6ca416dee5be1140689275731 (patch)
treee7bbe17a4656a4c0044a885d3f4e8ba932b780a9 /dev-perl/ExtUtils-F77
parentRemove unused patch (diff)
downloadgentoo-2-0f7b21f3536f8de6ca416dee5be1140689275731.tar.gz
gentoo-2-0f7b21f3536f8de6ca416dee5be1140689275731.tar.bz2
gentoo-2-0f7b21f3536f8de6ca416dee5be1140689275731.zip
Remove unused patch
(Portage version: 2.2_rc38/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/ExtUtils-F77')
-rw-r--r--dev-perl/ExtUtils-F77/ChangeLog8
-rw-r--r--dev-perl/ExtUtils-F77/files/perl-ExtUtils-F77-1.15-alt-g77.patch50
2 files changed, 6 insertions, 52 deletions
diff --git a/dev-perl/ExtUtils-F77/ChangeLog b/dev-perl/ExtUtils-F77/ChangeLog
index 04de031caccc..82d430adf3aa 100644
--- a/dev-perl/ExtUtils-F77/ChangeLog
+++ b/dev-perl/ExtUtils-F77/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-perl/ExtUtils-F77
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-F77/ChangeLog,v 1.37 2008/09/30 12:47:46 tove Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-F77/ChangeLog,v 1.38 2009/08/16 09:31:37 tove Exp $
+
+ 16 Aug 2009; Torsten Veller <tove@gentoo.org>
+ -files/perl-ExtUtils-F77-1.15-alt-g77.patch:
+ Remove unused patch
30 Sep 2008; Torsten Veller <tove@gentoo.org> -ExtUtils-F77-1.15.ebuild,
-ExtUtils-F77-1.15-r1.ebuild, ExtUtils-F77-1.16.ebuild:
diff --git a/dev-perl/ExtUtils-F77/files/perl-ExtUtils-F77-1.15-alt-g77.patch b/dev-perl/ExtUtils-F77/files/perl-ExtUtils-F77-1.15-alt-g77.patch
deleted file mode 100644
index 0cd323fe7004..000000000000
--- a/dev-perl/ExtUtils-F77/files/perl-ExtUtils-F77-1.15-alt-g77.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-diff -Naurp ExtUtils-F77-1.15.old/F77.pm ExtUtils-F77-1.15/F77.pm
---- ExtUtils-F77-1.15.old/F77.pm 2005-02-03 10:12:49.000000000 -0500
-+++ ExtUtils-F77-1.15/F77.pm 2007-04-16 12:28:35.000000000 -0400
-@@ -169,31 +169,32 @@ $F77config{Solaris}{DEFAULT} = 'F77';
-
- ### Generic GNU-77 or F2C system ###
-
-+$F77config{Generic}{G77}{Compiler} = find_in_path('g77','f77','fort77','gfortran');
- $F77config{Generic}{G77}{Link} = sub {
-- my @libs = ('g2c', 'f2c');
-+foreach my $ext qw(so a) {
-+ my @libs = ('gfortran', 'g2c', 'f2c');
- my ($dir, $lib, $test);
- foreach $test (@libs) {
-- $dir = `g77 -print-file-name=lib$test.a`;
-+ $dir = `$F77config{Generic}{G77}{Compiler} -print-file-name=lib$test.$ext`;
- chomp $dir;
- # Note that -print-file-name returns just the library name
- # if it cant be found - make sure that we only accept the
- # directory if it returns a proper path (or matches a /)
-- if (defined $dir && $dir ne "lib$test.a") {
-+ if (defined $dir && $dir ne "lib$test.$ext") {
- $lib = $test; # Found an existing library
- last;
- }
- }
-
- if( defined $dir && defined $lib) {
-- $dir =~ s,/lib$lib.a$,,;
-+ $dir =~ s,/lib$lib.$ext$,,;
- } else {
- $dir = "/usr/local/lib";
- $lib = "f2c";
- }
- return( "-L$dir -L/usr/lib -l$lib -lm" );
--};
-+}};
- $F77config{Generic}{G77}{Trail_} = 1;
--$F77config{Generic}{G77}{Compiler} = find_in_path('g77','f77','fort77');
- $F77config{Generic}{G77}{Cflags} = '-O';
- $F77config{Generic}{DEFAULT} = 'G77';
- $F77config{Generic}{F2c} = $F77config{Generic}{G77};
-@@ -219,6 +220,7 @@ $F77config{Cygwin}{DEFAULT} = 'G77';
- $F77config{Linux}{G77} = $F77config{Generic}{G77};
- $F77config{Linux}{F2c} = $F77config{Generic}{G77};
- $F77config{Linux}{DEFAULT} = 'G77';
-+$F77config{Linux}{G77}{Cflags} = $Config{optimize};
-
- ### DEC OSF/1 ###
-