diff options
author | James FitzGibbon <jfitz@FreeBSD.org> | 1997-06-27 01:52:15 +0000 |
---|---|---|
committer | James FitzGibbon <jfitz@FreeBSD.org> | 1997-06-27 01:52:15 +0000 |
commit | 0892424656a01d0b60febdf52e4f15966a5aac43 (patch) | |
tree | 7d58cc59d7a41265d99cc3a0e871e838be3f3598 | |
parent | 54b08b6885e2ef365bf3bc992ab02938c14a07a4 (diff) | |
download | ports-0892424656a01d0b60febdf52e4f15966a5aac43.tar.gz ports-0892424656a01d0b60febdf52e4f15966a5aac43.zip |
Notes
-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 000000000000..2d7776cab97e --- /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 000000000000..960182253455 --- /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 000000000000..34c16e5b6f78 --- /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 000000000000..91d81eca5f06 --- /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 000000000000..99d7c04b213e --- /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 |