diff options
author | sno <sno> | 2010-01-16 18:32:32 +0000 |
---|---|---|
committer | sno <sno> | 2010-01-16 18:32:32 +0000 |
commit | e9cdb51dff3b7e67327ae6c8c8140b83af150fdf (patch) | |
tree | 5664d4d90ac6325b9d53ff9a518ce015989699b9 /editors | |
parent | 7a73ff2506b3d202c46b5d5953aec2ec953b4422 (diff) | |
download | pkgsrc-e9cdb51dff3b7e67327ae6c8c8140b83af150fdf.tar.gz |
Importing editors/p5-Padre-Plugin-Vi v0.22
Once installed and enabled the user is in full vi-emulation mode, which
was partially implemented.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/p5-Padre-Plugin-Vi/DESCR | 2 | ||||
-rw-r--r-- | editors/p5-Padre-Plugin-Vi/Makefile | 25 | ||||
-rw-r--r-- | editors/p5-Padre-Plugin-Vi/distinfo | 6 | ||||
-rw-r--r-- | editors/p5-Padre-Plugin-Vi/patches/patch-aa | 13 |
4 files changed, 46 insertions, 0 deletions
diff --git a/editors/p5-Padre-Plugin-Vi/DESCR b/editors/p5-Padre-Plugin-Vi/DESCR new file mode 100644 index 00000000000..cf100f65db8 --- /dev/null +++ b/editors/p5-Padre-Plugin-Vi/DESCR @@ -0,0 +1,2 @@ +Once installed and enabled the user is in full vi-emulation mode, which +was partially implemented. diff --git a/editors/p5-Padre-Plugin-Vi/Makefile b/editors/p5-Padre-Plugin-Vi/Makefile new file mode 100644 index 00000000000..a1db5a2d95c --- /dev/null +++ b/editors/p5-Padre-Plugin-Vi/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1.1.1 2010/01/16 18:32:32 sno Exp $ +# + +DISTNAME= Padre-Plugin-Vi-0.22 +PKGNAME= p5-${DISTNAME} +CATEGORIES= editors perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Padre/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://search.cpan.org/dist/Padre-Plugin-Vi/ +COMMENT= Padre plugin proving a vi keyboard +LICENSE= ${PERL5_LICENSE} + +PKG_DESTDIR_SUPPORT= user-destdir + +DEPENDS+= p5-Padre>=0.25:../../editors/p5-Padre + +PERL5_PACKLIST= auto/Padre/Plugin/Vi/.packlist +PERL5_MODULE_TYPE= Module::Install::Bundled + +pre-configure: + cd ${WRKSRC} && find `pwd` -name "*.orig" -type f | xargs rm + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/editors/p5-Padre-Plugin-Vi/distinfo b/editors/p5-Padre-Plugin-Vi/distinfo new file mode 100644 index 00000000000..5b231c0233b --- /dev/null +++ b/editors/p5-Padre-Plugin-Vi/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2010/01/16 18:32:32 sno Exp $ + +SHA1 (Padre-Plugin-Vi-0.22.tar.gz) = f47c59fe84a0836133ca05eef212782637ca8408 +RMD160 (Padre-Plugin-Vi-0.22.tar.gz) = 2ed81c5432a0a021501e43fabd04961e129de710 +Size (Padre-Plugin-Vi-0.22.tar.gz) = 25170 bytes +SHA1 (patch-aa) = 28a1a7403a94e8fcc8cadb90aafc9a98e487b8d6 diff --git a/editors/p5-Padre-Plugin-Vi/patches/patch-aa b/editors/p5-Padre-Plugin-Vi/patches/patch-aa new file mode 100644 index 00000000000..02d3044e266 --- /dev/null +++ b/editors/p5-Padre-Plugin-Vi/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2010/01/16 18:32:32 sno Exp $ + +--- lib/Padre/Plugin/Vi.pm.orig 2009-06-22 08:05:41.000000000 +0000 ++++ lib/Padre/Plugin/Vi.pm +@@ -307,7 +307,7 @@ sub about { + $about->SetCopyright( _T("Copyright 2008 Gabor Szabo") ); + + # Only Unix/GTK native about box supports websites +- if (Padre::Util::WXGTK) { ++ if (Padre::Constant::WXGTK) { + $about->SetWebSite("http://padre.perlide.org/"); + } + |