CPAN distribution 0.23.0, because 0.23 seems to have files distributed, which doesn't belong there). pkgsrc changes: - Fixing for Padre-0.69 (Wx::perl::Dialog -> Padre::Wx::Dialog) - mark for unsafe using make-jobs Upstream changes: 0.23 2010.07.24 actually install the translations (RSN) compatibility to newer Padre versions (ZENOG) added MANIFEST.SKIP
32 lines
938 B
Text
32 lines
938 B
Text
$NetBSD: patch-ab,v 1.1 2010/08/20 19:15:28 sno Exp $
|
|
|
|
Patch to switch from Wx::Perl::Dialog (Padre-0.66) to Padre::Wx::Dialog
|
|
|
|
--- lib/Padre/Plugin/Vi/CommandLine.pm.orig 2010-08-20 19:07:14.000000000 +0000
|
|
+++ lib/Padre/Plugin/Vi/CommandLine.pm
|
|
@@ -3,11 +3,11 @@ package Padre::Plugin::Vi::CommandLine;
|
|
use warnings;
|
|
use strict;
|
|
|
|
-use Cwd ();
|
|
-use Wx::Perl::Dialog ();
|
|
-use Padre::Wx ();
|
|
-use File::Spec ();
|
|
-use File::Basename ();
|
|
+use Cwd ();
|
|
+use Padre::Wx::Dialog ();
|
|
+use Padre::Wx ();
|
|
+use File::Spec ();
|
|
+use File::Basename ();
|
|
|
|
use Padre::Plugin::Vi::TabCompletition qw(clear_tab handle_tab set_original_cwd);
|
|
|
|
@@ -66,7 +66,7 @@ sub dialog {
|
|
|
|
my $main = Padre->ide->wx->main;
|
|
if ( not $dialog ) {
|
|
- $dialog = Wx::Perl::Dialog->new(
|
|
+ $dialog = Padre::Wx::Dialog->new(
|
|
parent => $main->{notebook},
|
|
title => "Command Line",
|
|
layout => \@layout,
|