diff options
author | Steve Wills <swills@FreeBSD.org> | 2011-12-15 17:59:19 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2011-12-15 17:59:19 +0000 |
commit | 9f1a49a6bde3507b615ddb0b1c49b4717e701c63 (patch) | |
tree | 4cd0ca65cf7ee4a98666c64f73240fbfaf6b3cb1 /devel/p5-Inline | |
parent | 91346dafb94f3ee0f2c291f60e8bd91b207f834e (diff) |
Notes
Diffstat (limited to 'devel/p5-Inline')
-rw-r--r-- | devel/p5-Inline/Makefile | 2 | ||||
-rw-r--r-- | devel/p5-Inline/files/patch-C__Makefile.PL | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/devel/p5-Inline/Makefile b/devel/p5-Inline/Makefile index 6966089c3def..2573b110194e 100644 --- a/devel/p5-Inline/Makefile +++ b/devel/p5-Inline/Makefile @@ -18,7 +18,7 @@ COMMENT= Write Perl subroutines in other programming languages BUILD_DEPENDS= p5-Parse-RecDescent>=1.800:${PORTSDIR}/devel/p5-Parse-RecDescent RUN_DEPENDS:= ${BUILD_DEPENDS} -IS_INTERACTIVE= Asks about an optional component +TEST_DEPENDS= p5-Test-Warn>=0:${PORTSDIR}/devel/p5-Test-Warn PERL_CONFIGURE= yes diff --git a/devel/p5-Inline/files/patch-C__Makefile.PL b/devel/p5-Inline/files/patch-C__Makefile.PL new file mode 100644 index 000000000000..a9913a130b6c --- /dev/null +++ b/devel/p5-Inline/files/patch-C__Makefile.PL @@ -0,0 +1,15 @@ +--- ./C/Makefile.PL.orig 2011-12-11 11:11:56.192084758 -0500 ++++ ./C/Makefile.PL 2011-12-11 11:13:06.814083971 -0500 +@@ -68,10 +68,10 @@ + # ' + } + +-my $answer = ''; ++my $answer = 'y'; + my $default = $found ? "y" : "n"; + while (1) { +- $answer = prompt ('Do you want to install Inline::C?', $default); ++ #$answer = prompt ('Do you want to install Inline::C?', $default); + last if $answer =~ /^(y|yes|n|no)$/i; + } + |