diff options
author | jfitz <jfitz@FreeBSD.org> | 1997-06-27 01:52:15 +0000 |
---|---|---|
committer | jfitz <jfitz@FreeBSD.org> | 1997-06-27 01:52:15 +0000 |
commit | 3d979ae126dd11a1c9f40bb6a41610e9ec0c9601 (patch) | |
tree | c5f6d8f850dda65a59d17da0f220f883530767aa /devel/p5-Proc-Simple | |
parent | c25d3f6d9fc114a167e38c2ba2cfbb850eaf0f9c (diff) | |
download | FreeBSD-ports-3d979ae126dd11a1c9f40bb6a41610e9ec0c9601.zip FreeBSD-ports-3d979ae126dd11a1c9f40bb6a41610e9ec0c9601.tar.gz |
Import of a perl5 OO module for handling of child processes
Diffstat (limited to 'devel/p5-Proc-Simple')
-rw-r--r-- | devel/p5-Proc-Simple/Makefile | 25 | ||||
-rw-r--r-- | devel/p5-Proc-Simple/distinfo | 1 | ||||
-rw-r--r-- | devel/p5-Proc-Simple/pkg-comment | 1 | ||||
-rw-r--r-- | devel/p5-Proc-Simple/pkg-descr | 17 | ||||
-rw-r--r-- | devel/p5-Proc-Simple/pkg-plist | 4 |
5 files changed, 48 insertions, 0 deletions
diff --git a/devel/p5-Proc-Simple/Makefile b/devel/p5-Proc-Simple/Makefile new file mode 100644 index 0000000..2d7776c --- /dev/null +++ b/devel/p5-Proc-Simple/Makefile @@ -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> diff --git a/devel/p5-Proc-Simple/distinfo b/devel/p5-Proc-Simple/distinfo new file mode 100644 index 0000000..9601822 --- /dev/null +++ b/devel/p5-Proc-Simple/distinfo @@ -0,0 +1 @@ +MD5 (Proc-Simple-1.12.tar.gz) = ac3bcc6675eb9095ce1a8133ff363675 diff --git a/devel/p5-Proc-Simple/pkg-comment b/devel/p5-Proc-Simple/pkg-comment new file mode 100644 index 0000000..34c16e5 --- /dev/null +++ b/devel/p5-Proc-Simple/pkg-comment @@ -0,0 +1 @@ +perl5 module to launch and control background processes diff --git a/devel/p5-Proc-Simple/pkg-descr b/devel/p5-Proc-Simple/pkg-descr new file mode 100644 index 0000000..91d81ec --- /dev/null +++ b/devel/p5-Proc-Simple/pkg-descr @@ -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); }); + diff --git a/devel/p5-Proc-Simple/pkg-plist b/devel/p5-Proc-Simple/pkg-plist new file mode 100644 index 0000000..99d7c04 --- /dev/null +++ b/devel/p5-Proc-Simple/pkg-plist @@ -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 |