mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
Import of a perl5 OO module for handling of child processes
This commit is contained in:
parent
54b08b6885
commit
0892424656
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=7084
25
devel/p5-Proc-Simple/Makefile
Normal file
25
devel/p5-Proc-Simple/Makefile
Normal file
@ -0,0 +1,25 @@
|
||||
# New ports collection makefile for: p5-Proc-Simple
|
||||
# Version required: 1.12
|
||||
# Date created: June 26th 1997
|
||||
# Whom: James FitzGibbon <jfitz@FreeBSD.ORG>
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= Proc-Simple-1.12
|
||||
PKGNAME= p5-Proc-Simple-1.12
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Proc
|
||||
|
||||
MAINTAINER= jfitz@FreeBSD.ORG
|
||||
|
||||
USE_PERL5= YES
|
||||
|
||||
MANPREFIX= ${PREFIX}/lib/perl5
|
||||
MAN3= Proc::Simple.3
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${PREFIX}/bin/perl Makefile.PL
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/p5-Proc-Simple/distinfo
Normal file
1
devel/p5-Proc-Simple/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (Proc-Simple-1.12.tar.gz) = ac3bcc6675eb9095ce1a8133ff363675
|
1
devel/p5-Proc-Simple/pkg-comment
Normal file
1
devel/p5-Proc-Simple/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
perl5 module to launch and control background processes
|
17
devel/p5-Proc-Simple/pkg-descr
Normal file
17
devel/p5-Proc-Simple/pkg-descr
Normal file
@ -0,0 +1,17 @@
|
||||
The Proc::Simple package provides objects that model real-
|
||||
life processes from a user's point of view. A new process
|
||||
object is created by
|
||||
|
||||
$myproc = Proc::Simple->new();
|
||||
|
||||
Either shell-like command lines or references to perl
|
||||
subroutines can be specified for launching a process in
|
||||
background. A 10-second sleep process, for example, can
|
||||
be started via the shell as
|
||||
|
||||
$myproc->start("sleep 10");
|
||||
|
||||
or, as a perl subroutine, with
|
||||
|
||||
$myproc->start(sub { sleep(10); });
|
||||
|
4
devel/p5-Proc-Simple/pkg-plist
Normal file
4
devel/p5-Proc-Simple/pkg-plist
Normal file
@ -0,0 +1,4 @@
|
||||
lib/perl5/man/man3/Proc::Simple.3.gz
|
||||
lib/perl5/site_perl/Proc/Simple.pm
|
||||
lib/perl5/site_perl/i386-freebsd/auto/Proc/Simple/.packlist
|
||||
@dirrm lib/perl5/site_perl/i386-freebsd/auto/Proc/Simple
|
Loading…
Reference in New Issue
Block a user