diff options
author | Sergey Skvortsov <skv@FreeBSD.org> | 2004-07-19 06:51:03 +0000 |
---|---|---|
committer | Sergey Skvortsov <skv@FreeBSD.org> | 2004-07-19 06:51:03 +0000 |
commit | b9a9bac44197991fc0c2393dbe4b3ee869344bd2 (patch) | |
tree | 45e70c057d1d622870b58374cd76243b00c3590f /converters | |
parent | 5ff54b1bbde085ecf3d95cbe4d4cba0a98092e60 (diff) | |
download | ports-b9a9bac44197991fc0c2393dbe4b3ee869344bd2.tar.gz ports-b9a9bac44197991fc0c2393dbe4b3ee869344bd2.zip |
Notes
Diffstat (limited to 'converters')
-rw-r--r-- | converters/p5-Text-Iconv/Makefile | 2 | ||||
-rw-r--r-- | converters/p5-Text-Iconv/distinfo | 4 | ||||
-rw-r--r-- | converters/p5-Text-Iconv/files/patch-Makefile.PL | 35 |
3 files changed, 38 insertions, 3 deletions
diff --git a/converters/p5-Text-Iconv/Makefile b/converters/p5-Text-Iconv/Makefile index 091e98204f80..f7e8b337a8a3 100644 --- a/converters/p5-Text-Iconv/Makefile +++ b/converters/p5-Text-Iconv/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Text-Iconv -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= converters perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Text diff --git a/converters/p5-Text-Iconv/distinfo b/converters/p5-Text-Iconv/distinfo index 67afd7ae60d1..4fddb4aa0862 100644 --- a/converters/p5-Text-Iconv/distinfo +++ b/converters/p5-Text-Iconv/distinfo @@ -1,2 +1,2 @@ -MD5 (Text-Iconv-1.3.tar.gz) = d876d42a758c9b7fdf3e47d9a306f941 -SIZE (Text-Iconv-1.3.tar.gz) = 7870 +MD5 (Text-Iconv-1.4.tar.gz) = 3e9306e9262ff13bb9ba29a251c5094a +SIZE (Text-Iconv-1.4.tar.gz) = 8986 diff --git a/converters/p5-Text-Iconv/files/patch-Makefile.PL b/converters/p5-Text-Iconv/files/patch-Makefile.PL new file mode 100644 index 000000000000..62d198202aea --- /dev/null +++ b/converters/p5-Text-Iconv/files/patch-Makefile.PL @@ -0,0 +1,35 @@ +--- Makefile.PL.orig Sun Jul 18 02:16:55 2004 ++++ Makefile.PL Mon Jul 19 10:51:54 2004 +@@ -21,7 +21,7 @@ + + if ($key eq 'LIBS' || $key eq 'INC') + { +- delete $ARGV[$i]; ++ undef $ARGV[$i]; + } + + $i++; +@@ -38,7 +38,7 @@ + + print 'Checking for iconv ... '; + +-if (linktest($config{LIBS}, $config{INC})) ++if (1) + { + $ok = 1; + print "ok (iconv apparently in libc)\n"; +@@ -86,13 +86,13 @@ + (ABSTRACT_FROM => 'Iconv.pm', # retrieve abstract from module + AUTHOR => 'Michael Piotrowski <mxp@dynalabs.de>') : ()), + 'LIBS' => $config{LIBS}, +- 'DEFINE' => "@DEFINE", + 'INC' => $config{INC}, + 'dist' => {COMPRESS => 'gzip', SUFFIX => 'gz'}, + ); + + ############################################################################### + ++__END__ + sub linktest + { + my $libs = shift; |