diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-03-17 23:51:46 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-03-17 23:51:46 +0100 |
commit | fb3308414d3e7ffda6d3b50514bef8e869086028 (patch) | |
tree | 69fc0e609055585111fa02345098b262a274bb6d /dev-perl/PDL/files | |
parent | Revert "media-gfx/graphviz: Remove old", see bug 609772 (diff) | |
download | gentoo-fb3308414d3e7ffda6d3b50514bef8e869086028.tar.gz gentoo-fb3308414d3e7ffda6d3b50514bef8e869086028.tar.bz2 gentoo-fb3308414d3e7ffda6d3b50514bef8e869086028.zip |
dev-perl/PDL: Remove old
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-perl/PDL/files')
-rw-r--r-- | dev-perl/PDL/files/PDL-2.4.11-fortran.patch | 22 | ||||
-rw-r--r-- | dev-perl/PDL/files/PDL-2.4.11-shared-fftw.patch | 11 | ||||
-rw-r--r-- | dev-perl/PDL/files/PDL-2.4.11-shared-hdf.patch | 36 | ||||
-rw-r--r-- | dev-perl/PDL/files/PDL-2.4.2-makemakerfix.patch | 20 |
4 files changed, 0 insertions, 89 deletions
diff --git a/dev-perl/PDL/files/PDL-2.4.11-fortran.patch b/dev-perl/PDL/files/PDL-2.4.11-fortran.patch deleted file mode 100644 index 5cd08d7f59e4..000000000000 --- a/dev-perl/PDL/files/PDL-2.4.11-fortran.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- Lib/Minuit/Makefile.PL -+++ Lib/Minuit/Makefile.PL -@@ -149,7 +149,7 @@ - (" - - minuitlib/$_\$(OBJ_EXT): minuitlib/$_.f -- $mycompiler -c $hack_64bit -o minuitlib/$_\$(OBJ_EXT) $mycflags minuitlib/$_.f -+ \$(FC) \$(FFLAGS) -fPIC -c -o minuitlib/$_\$(OBJ_EXT) $mycflags minuitlib/$_.f - " )} @minuitfiles; - - if (!defined($PDL::Config{MINUIT_LIB})){ ---- Lib/Slatec/Makefile.PL -+++ Lib/Slatec/Makefile.PL -@@ -136,7 +136,7 @@ - (" - - slatec/$_\$(OBJ_EXT): slatec/$_.f -- $mycompiler -c $hack_64bit -o slatec/$_\$(OBJ_EXT) $mycflags slatec/$_.f -+ \$(FC) \$(FFLAGS) -c -fPIC -o slatec/$_\$(OBJ_EXT) $mycflags slatec/$_.f - " )} @slatecfiles; - - } diff --git a/dev-perl/PDL/files/PDL-2.4.11-shared-fftw.patch b/dev-perl/PDL/files/PDL-2.4.11-shared-fftw.patch deleted file mode 100644 index 859a3ff0dd3d..000000000000 --- a/dev-perl/PDL/files/PDL-2.4.11-shared-fftw.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Lib/FFTW/Makefile.PL.orig 2012-08-28 17:10:15.000000000 +0100 -+++ Lib/FFTW/Makefile.PL 2012-08-28 17:19:35.000000000 +0100 -@@ -152,7 +152,7 @@ - # make a list of libs from the libstring - my @libs = split ' ',$double_lib; - grep s/\-l//g, @libs; -- grep $_ = "lib$_.a", @libs; -+ grep $_ = "lib$_.$Config{so}", @libs; - my %libs; - my $lib; - foreach $libdir(@libdirs){ diff --git a/dev-perl/PDL/files/PDL-2.4.11-shared-hdf.patch b/dev-perl/PDL/files/PDL-2.4.11-shared-hdf.patch deleted file mode 100644 index 3cf22a31ce72..000000000000 --- a/dev-perl/PDL/files/PDL-2.4.11-shared-hdf.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- IO/HDF/Makefile.PL.orig 2012-06-16 18:43:24.000000000 +0100 -+++ IO/HDF/Makefile.PL 2012-06-16 18:44:51.000000000 +0100 -@@ -63,20 +63,20 @@ - # Look for the libs: - foreach my $libdir ( @HDF_lib_locations ) - { -- if (-e "$libdir/libdfalt.a" && !$found_df) -+ if (-e "$libdir/libdfalt.$Config{so}" && !$found_df) - { - $found_df = 1; - $hdf_lib_path = $libdir; - $hdf_libs = '-lmfhdfalt -ldfalt'; -- print "Found libdfalt.a at $libdir/libdfalt.a\n"; -+ print "Found libdfalt.$Config{so} at $libdir/libdfalt.$Config{so}\n"; - } - -- if (-e "$libdir/libdf.a" && !$found_df) -+ if (-e "$libdir/libdf.$Config{so}" && !$found_df) - { - $found_df = 1; - $hdf_lib_path = $libdir; - $hdf_libs = '-lmfhdf -ldf'; -- print "Found libdf.a at $libdir/libdf.a\n"; -+ print "Found libdf.$Config{so} at $libdir/libdf.$Config{so}\n"; - } - - # Look for the szip library, which HDF >= 4.2r0 needs, but older versions don't! -@@ -90,7 +90,7 @@ - - unless( defined( $hdf_lib_path ) ) - { -- $msg .= "Cannot find hdf library, libdf.a.\n" -+ $msg .= "Cannot find hdf library, libdf.$Config{so}.\n" - . "Please add the correct library path to Makefile.PL or install HDF\n"; - - } diff --git a/dev-perl/PDL/files/PDL-2.4.2-makemakerfix.patch b/dev-perl/PDL/files/PDL-2.4.2-makemakerfix.patch deleted file mode 100644 index 6cf2c4009a68..000000000000 --- a/dev-perl/PDL/files/PDL-2.4.2-makemakerfix.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- Demos/BAD2_demo.pm.PL 2006/04/20 07:42:24 1.1 -+++ Demos/BAD2_demo.pm.PL 2006/04/20 07:42:32 -@@ -3,6 +3,7 @@ - # - requires both bad-value support and PGPLOT - # - -+use blib; - use strict; - - use Config; ---- Demos/BAD_demo.pm.PL 2006/04/20 07:42:17 1.1 -+++ Demos/BAD_demo.pm.PL 2006/04/20 07:42:38 -@@ -3,6 +3,7 @@ - # - needed since we allow bad pixel handling to be switched off - # - -+use blib; - use strict; - - use Config; |