- Update to 0.32
- Add IGNORE if Perl without thread support is installed. PR: 133086 Submitted by: Cezary Morga <cm@therek.net> (maintainer)
This commit is contained in:
parent
e8c624f273
commit
9917e7ffaa
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=231374
3 changed files with 37 additions and 16 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= Padre
|
||||
PORTVERSION= 0.29
|
||||
PORTVERSION= 0.32
|
||||
CATEGORIES= editors perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= ../by-authors/id/S/SZ/SZABGAB
|
||||
|
@ -41,7 +41,6 @@ BUILD_DEPENDS= ${SITE_PERL}/App/Ack.pm:${PORTSDIR}/textproc/p5-ack \
|
|||
${SITE_PERL}/Pod/Simple.pm:${PORTSDIR}/textproc/p5-Pod-Simple \
|
||||
${SITE_PERL}/Pod/Simple/XHTML.pm:${PORTSDIR}/textproc/p5-Pod-Simple \
|
||||
${SITE_PERL}/Probe/Perl.pm:${PORTSDIR}/sysutils/p5-Probe-Perl \
|
||||
${SITE_PERL}/Test/Compile.pm:${PORTSDIR}/devel/p5-Test-Compile \
|
||||
${SITE_PERL}/Test/Exception.pm:${PORTSDIR}/devel/p5-Test-Exception \
|
||||
${SITE_PERL}/Test/Most.pm:${PORTSDIR}/devel/p5-Test-Most \
|
||||
${SITE_PERL}/Test/NoWarnings.pm:${PORTSDIR}/devel/p5-Test-NoWarnings \
|
||||
|
@ -69,7 +68,14 @@ PERL_CONFIGURE= yes
|
|||
USE_PERL5= 5.8.5+
|
||||
USE_GETTEXT= yes
|
||||
|
||||
PERL_THREADS= ${PERL} -V::usethreads
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if exists(${PERL})
|
||||
PERL_THREADS!= ${PERL} -V::usethreads
|
||||
.if ${PERL_THREADS}!="'define';"
|
||||
IGNORE= needs a threaded Perl, build with WITH_THREADS=yes flag and try again
|
||||
.endif
|
||||
.endif
|
||||
|
||||
MAN3= Padre.3 \
|
||||
Padre::Autosave.3 \
|
||||
|
@ -81,6 +87,7 @@ MAN3= Padre.3 \
|
|||
Padre::DB::Bookmark.3 \
|
||||
Padre::DB::History.3 \
|
||||
Padre::DB::HostConfig.3 \
|
||||
Padre::DB::LastPositionInFile.3 \
|
||||
Padre::DB::Plugin.3 \
|
||||
Padre::DB::Session.3 \
|
||||
Padre::DB::Snippets.3 \
|
||||
|
@ -92,11 +99,13 @@ MAN3= Padre.3 \
|
|||
Padre::Manual::Hacking.3 \
|
||||
Padre::Plugin.3 \
|
||||
Padre::Plugin::Devel.3 \
|
||||
Padre::Plugin::Perl5.3 \
|
||||
Padre::Plugin::PopularityContest.3 \
|
||||
Padre::PluginBuilder.3 \
|
||||
Padre::PluginManager.3 \
|
||||
Padre::Pod2HTML.3 \
|
||||
Padre::Task.3 \
|
||||
Padre::Task::HTTPClient.3 \
|
||||
Padre::Task::Outline.3 \
|
||||
Padre::Task::Outline::Perl.3 \
|
||||
Padre::Task::PPI.3 \
|
||||
|
@ -108,7 +117,9 @@ MAN3= Padre.3 \
|
|||
Padre::TaskManager.3 \
|
||||
Padre::Util.3 \
|
||||
Padre::Wx::App.3 \
|
||||
Padre::Wx::CPAN.3 \
|
||||
Padre::Wx::Dialog.3 \
|
||||
Padre::Wx::Dialog::PluginManager3.3 \
|
||||
Padre::Wx::DocBrowser.3 \
|
||||
Padre::Wx::HtmlWindow.3 \
|
||||
Padre::Wx::Main.3 \
|
||||
|
@ -117,16 +128,7 @@ MAN3= Padre.3 \
|
|||
Wx::Perl::Dialog::Simple.3 \
|
||||
Wx::Perl::Dialog::SingleChoice.3
|
||||
|
||||
pre-configure:
|
||||
@if [ "$$(${PERL_THREADS})" = "'undef';" ]; then \
|
||||
${ECHO_MSG}; \
|
||||
${ECHO_MSG} "===> ${PKGNAME} requires Perl with thread support built-in!"; \
|
||||
${ECHO_MSG} " Please, recompile Perl with WITH_THREADS=yes flag and try again."; \
|
||||
${ECHO_MSG}; \
|
||||
exit 2; \
|
||||
fi
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|use File::Spec.*$$||' ${WRKSRC}/lib/Padre/Config/Human.pm
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (Padre-0.29.tar.gz) = a5c3d9a587f31d9b45f4eeb52c2fdf10
|
||||
SHA256 (Padre-0.29.tar.gz) = ac34bbd71432d29554a1b4043b7210102bbe340424ef9c74e8e70522a673b8dc
|
||||
SIZE (Padre-0.29.tar.gz) = 452556
|
||||
MD5 (Padre-0.32.tar.gz) = fe5999b413637bab2c80ffa46819d068
|
||||
SHA256 (Padre-0.32.tar.gz) = b1bbc51cc104ceb26480c30b4a80ed30a0145b8befbafbdf2324e9d712e60a4d
|
||||
SIZE (Padre-0.32.tar.gz) = 471218
|
||||
|
|
|
@ -2,10 +2,12 @@ bin/padre
|
|||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Padre/.packlist
|
||||
%%SITE_PERL%%/Padre.pm
|
||||
%%SITE_PERL%%/Padre/Autosave.pm
|
||||
%%SITE_PERL%%/Padre/CPAN.pm
|
||||
%%SITE_PERL%%/Padre/Config.pm
|
||||
%%SITE_PERL%%/Padre/Config/Constants.pm
|
||||
%%SITE_PERL%%/Padre/Config/Host.pm
|
||||
%%SITE_PERL%%/Padre/Config/Human.pm
|
||||
%%SITE_PERL%%/Padre/Config/Human.pm.bak
|
||||
%%SITE_PERL%%/Padre/Config/Patch.pm
|
||||
%%SITE_PERL%%/Padre/Config/Project.pm
|
||||
%%SITE_PERL%%/Padre/Config/Setting.pm
|
||||
|
@ -14,6 +16,7 @@ bin/padre
|
|||
%%SITE_PERL%%/Padre/DB/Bookmark.pm
|
||||
%%SITE_PERL%%/Padre/DB/History.pm
|
||||
%%SITE_PERL%%/Padre/DB/HostConfig.pm
|
||||
%%SITE_PERL%%/Padre/DB/LastPositionInFile.pm
|
||||
%%SITE_PERL%%/Padre/DB/Patch.pm
|
||||
%%SITE_PERL%%/Padre/DB/Plugin.pm
|
||||
%%SITE_PERL%%/Padre/DB/Session.pod
|
||||
|
@ -32,6 +35,7 @@ bin/padre
|
|||
%%SITE_PERL%%/Padre/Plugin.pm
|
||||
%%SITE_PERL%%/Padre/Plugin/Devel.pm
|
||||
%%SITE_PERL%%/Padre/Plugin/My.pm
|
||||
%%SITE_PERL%%/Padre/Plugin/Perl5.pm
|
||||
%%SITE_PERL%%/Padre/Plugin/PopularityContest.pm
|
||||
%%SITE_PERL%%/Padre/PluginBuilder.pm
|
||||
%%SITE_PERL%%/Padre/PluginHandle.pm
|
||||
|
@ -42,9 +46,11 @@ bin/padre
|
|||
%%SITE_PERL%%/Padre/Project/Perl.pm
|
||||
%%SITE_PERL%%/Padre/SingleInstance.pm
|
||||
%%SITE_PERL%%/Padre/Task.pm
|
||||
%%SITE_PERL%%/Padre/Task/Debug/Crashing.pm
|
||||
%%SITE_PERL%%/Padre/Task/DocBrowser.pm
|
||||
%%SITE_PERL%%/Padre/Task/ErrorParser.pm
|
||||
%%SITE_PERL%%/Padre/Task/Examples/WxEvent.pm
|
||||
%%SITE_PERL%%/Padre/Task/HTTPClient.pm
|
||||
%%SITE_PERL%%/Padre/Task/Outline.pm
|
||||
%%SITE_PERL%%/Padre/Task/Outline/Perl.pm
|
||||
%%SITE_PERL%%/Padre/Task/PPI.pm
|
||||
|
@ -60,6 +66,8 @@ bin/padre
|
|||
%%SITE_PERL%%/Padre/Wx/App.pm
|
||||
%%SITE_PERL%%/Padre/Wx/AuiManager.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Bottom.pm
|
||||
%%SITE_PERL%%/Padre/Wx/CPAN.pm
|
||||
%%SITE_PERL%%/Padre/Wx/CPAN/Listview.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog/Bookmarks.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog/Find.pm
|
||||
|
@ -67,6 +75,7 @@ bin/padre
|
|||
%%SITE_PERL%%/Padre/Wx/Dialog/ModuleStart.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog/PluginManager.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog/PluginManager2.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog/PluginManager3.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog/Preferences.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog/Search.pm
|
||||
%%SITE_PERL%%/Padre/Wx/Dialog/Snippets.pm
|
||||
|
@ -124,6 +133,12 @@ bin/padre
|
|||
%%SITE_PERL%%/auto/share/dist/Padre/icons/gnome218/README.txt
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/actions/x-document-close.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-fallback-icon.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-plugin-crashed.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-plugin-disabled.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-plugin-enabled.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-plugin-error.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-plugin-incompatible.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-plugin.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-syntax-error.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-syntax-warning.png
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/icons/padre/16x16/status/padre-tasks-idle.png
|
||||
|
@ -161,6 +176,7 @@ bin/padre
|
|||
%%SITE_PERL%%/auto/share/dist/Padre/styles/night.yml
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/styles/notepad.yml
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/styles/ultraedit.yml
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/templates/template.p6
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/templates/template.pl
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/templates/template.pm
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/templates/template.t
|
||||
|
@ -170,6 +186,7 @@ bin/padre
|
|||
%%SITE_PERL%%/auto/share/dist/Padre/timeline/migrate-4.pl
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/timeline/migrate-5.pl
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/timeline/migrate-6.pl
|
||||
%%SITE_PERL%%/auto/share/dist/Padre/timeline/migrate-7.pl
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Padre
|
||||
@dirrmtry %%SITE_PERL%%/auto/share/dist/Padre/timeline
|
||||
@dirrmtry %%SITE_PERL%%/auto/share/dist/Padre/templates
|
||||
|
@ -190,11 +207,13 @@ bin/padre
|
|||
@dirrmtry %%SITE_PERL%%/Padre/Wx/Menu
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Wx/History
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Wx/Dialog
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Wx/CPAN
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Wx
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Task/SyntaxChecker
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Task/PPI
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Task/Outline
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Task/Examples
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Task/Debug
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Task
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Project
|
||||
@dirrmtry %%SITE_PERL%%/Padre/Plugin
|
||||
|
|
Loading…
Reference in a new issue