diff options
Diffstat (limited to 'devel/p5-Alien-SDL')
-rw-r--r-- | devel/p5-Alien-SDL/Makefile | 3 | ||||
-rw-r--r-- | devel/p5-Alien-SDL/distinfo | 5 | ||||
-rw-r--r-- | devel/p5-Alien-SDL/files/patch-Build.PL | 37 |
3 files changed, 41 insertions, 4 deletions
diff --git a/devel/p5-Alien-SDL/Makefile b/devel/p5-Alien-SDL/Makefile index cf543faadec6..a5b381c31411 100644 --- a/devel/p5-Alien-SDL/Makefile +++ b/devel/p5-Alien-SDL/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= Alien-SDL -PORTVERSION= 1.440 -PORTREVISION= 7 +PORTVERSION= 1.446 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/devel/p5-Alien-SDL/distinfo b/devel/p5-Alien-SDL/distinfo index 1b4c54f19169..ea1f994e46cb 100644 --- a/devel/p5-Alien-SDL/distinfo +++ b/devel/p5-Alien-SDL/distinfo @@ -1,2 +1,3 @@ -SHA256 (Alien-SDL-1.440.tar.gz) = cc25c9319d2db984b049eed5559582b2a6e0072af9b48d621a7772a1dcd18961 -SIZE (Alien-SDL-1.440.tar.gz) = 346309 +TIMESTAMP = 1517047926 +SHA256 (Alien-SDL-1.446.tar.gz) = c9aa2c9dc3c63d89773c7d7203f2a46d1b924d0c72d9f801af147a3dc8bc512a +SIZE (Alien-SDL-1.446.tar.gz) = 350448 diff --git a/devel/p5-Alien-SDL/files/patch-Build.PL b/devel/p5-Alien-SDL/files/patch-Build.PL new file mode 100644 index 000000000000..de4464655b0b --- /dev/null +++ b/devel/p5-Alien-SDL/files/patch-Build.PL @@ -0,0 +1,37 @@ +--- Build.PL.orig 2015-02-21 19:53:18 UTC ++++ Build.PL +@@ -7,10 +7,6 @@ use Config; + use My::Utility qw(check_config_script check_prebuilt_binaries check_prereqs_libs check_prereqs_tools $source_packs + check_perl_buildlibs); + +-use Getopt::Long; +-my ( $ans, $travis ) = 0; +-GetOptions( "travis" => \$travis ); +- + print "Welcome to Alien::SDL module installation\n"; + print "-----------------------------------------\n"; + print "checking operating system... $^O\n"; +@@ -215,23 +211,6 @@ else { + + $prompt_string .= "[" . $i++ . "] " . $c->{title} . "\n"; + } +- +- # select option '1' for travis +- if ( defined $travis and $travis == 1 ) { +- $ans = 1; +- } +- +-# or prompt user for build option +- else { +- $prompt_string .= "\nWhat way do you wanna go?"; +- $ans = $build->prompt( $prompt_string, $recommended_candidate ); +- } +- +- if($ans > 0 && $ans < scalar(@candidates)) { +- $choice = $candidates[$ans - 1]; +- } +- +- $| = 0; + } # end else search and prompt for build method + + #### store build params into 'notes' |