mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
Update to 1.05
PR: 37819 Submitted by: maintainer
This commit is contained in:
parent
e4c6499c58
commit
2a3b3265ab
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=59741
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= Prima
|
||||
PORTVERSION= 1.03
|
||||
PORTVERSION= 1.05
|
||||
CATEGORIES= x11-toolkits perl5 graphics
|
||||
MASTER_SITES= http://www.prima.eu.org/download/
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
@ -1 +1 @@
|
||||
MD5 (Prima-1.03.tar.gz) = f63d7f9db9ca3b1327b3e0e2e6a956fb
|
||||
MD5 (Prima-1.05.tar.gz) = 6b83388f9d3435cf04c0403477b2b1d0
|
||||
|
@ -6,7 +6,22 @@ The toolkit contains a rich set of standard widgets and has emphasis on
|
||||
2D image processing tasks. A Perl program using PRIMA looks and behaves
|
||||
identically on X, Win32 and OS/2 PM.
|
||||
|
||||
The toolkit includes a visual builder.
|
||||
The toolkit includes a visual builder ( VB ) and a graphic pod viewer
|
||||
utility ( podview ). The examples are installed into perl site in
|
||||
Prima/examples directory.
|
||||
|
||||
A 'hello world' code is as simple as follows:
|
||||
|
||||
use Prima qw(Application Buttons);
|
||||
Prima::Window-> create(
|
||||
text => 'Hello world!',
|
||||
size => [ 200, 200],
|
||||
)-> insert( Button =>
|
||||
centered => 1,
|
||||
text => 'Hello world!',
|
||||
onClick => sub { $::application-> close },
|
||||
);
|
||||
run Prima;
|
||||
|
||||
WWW: http://prima.eu.org/
|
||||
|
||||
|
@ -10,14 +10,16 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Const.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/DetailedList.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/DockManager.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Docks.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Drawable.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Edit.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/EditDialog.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/ExtLists.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/FileDialog.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/FontDialog.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/FrameSet.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Gencls.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Header.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/HelpViewer.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/HelpViewer.fm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/ImageDialog.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/ImageViewer.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/IniFile.pm
|
||||
@ -30,8 +32,8 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/MDI.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Make.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/MsgBox.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Notebooks.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Object.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Outlines.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/PodView.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/PrintDialog.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/ScrollBar.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/ScrollWidget.pm
|
||||
@ -41,6 +43,7 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/StdBitmap.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/StdDlg.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Stress.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Terminals.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/TextView.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Utils.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Widgets.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/sysimage.gif
|
||||
@ -130,6 +133,7 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/editor
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/extlist
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/eyes
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/f_fill
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/frames
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/fontdlg
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/generic
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/grip
|
||||
@ -151,15 +155,14 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/pitch
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/pointers
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/print
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/ps_setup
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/socket
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/rot
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/rtc
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/scrollbar
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/sheet
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/socket
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/transparent
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/examples/triangle
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/apricot.h
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/dbmalloc.h
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/gbm.h
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/guts.h
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/img.h
|
||||
@ -185,15 +188,26 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/generic/Widget.h
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/generic/Window.h
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/generic/config.h
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/unix/guts.h
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/gp-problems.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/image-load.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/codecs.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/internals.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/gencls.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/gp-problems.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/codecs.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/image-load.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/internals.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Clipboard.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Drawable.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/File.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Image.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Menu.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Object.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Printer.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Timer.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Widget.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/Window.pod
|
||||
bin/gencls
|
||||
bin/tmlink
|
||||
bin/VB
|
||||
bin/cfgmaint
|
||||
bin/podview
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/unix
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE/generic
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Prima/CORE
|
||||
|
Loading…
Reference in New Issue
Block a user