diff options
author | swills <swills@FreeBSD.org> | 2011-06-19 01:45:20 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2011-06-19 01:45:20 +0800 |
commit | d369df885dffbeebe7932457ea06c0c7384290cd (patch) | |
tree | 1b8e558787a060b98efcc369fc207181983c3cb3 | |
parent | df01adb9e556ddfe3484734c8d869523451a1a5b (diff) | |
download | freebsd-ports-gnome-d369df885dffbeebe7932457ea06c0c7384290cd.tar.gz freebsd-ports-gnome-d369df885dffbeebe7932457ea06c0c7384290cd.tar.zst freebsd-ports-gnome-d369df885dffbeebe7932457ea06c0c7384290cd.zip |
POpen4 provides the Rubyist a single API across platforms for
executing a command in a child process with handles on stdout,
stderr, stdin streams as well as access to the process ID and exit status.
WWW: http://rubygems.org/gems/popen4
PR: ports/157950
Submitted by: rpsfa at rit.edu
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-popen4/Makefile | 24 | ||||
-rw-r--r-- | devel/rubygem-popen4/distinfo | 2 | ||||
-rw-r--r-- | devel/rubygem-popen4/pkg-descr | 5 |
4 files changed, 32 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 7a43612d78b5..d8e6874aa300 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3292,6 +3292,7 @@ SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform SUBDIR += rubygem-polyglot + SUBDIR += rubygem-popen4 SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-rake SUBDIR += rubygem-rapt diff --git a/devel/rubygem-popen4/Makefile b/devel/rubygem-popen4/Makefile new file mode 100644 index 000000000000..15a518cc2200 --- /dev/null +++ b/devel/rubygem-popen4/Makefile @@ -0,0 +1,24 @@ +# Ports collection makefile for: rubygem-popen4 +# Date created: 2011-06-16 +# Whom: rpsfa@rit.edu +# +# $FreeBSD$ + +PORTNAME= popen4 +PORTVERSION= 0.1.4 +CATEGORIES= devel rubygems +MASTER_SITES= RG +DISTNAME= ${GEM_NAME} + +MAINTAINER= rpsfa@rit.edu +COMMENT= A cross platform API for managing child processes + +RUN_DEPENDS= rubygem-open4>=0.4.0:${PORTSDIR}/devel/rubygem-open4 \ + rubygem-platform>=0.4.0:${PORTSDIR}/devel/rubygem-platform + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes +GEM_NAME= POpen4-${PORTVERSION} + +.include <bsd.port.mk> diff --git a/devel/rubygem-popen4/distinfo b/devel/rubygem-popen4/distinfo new file mode 100644 index 000000000000..a7e652fd82cb --- /dev/null +++ b/devel/rubygem-popen4/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/POpen4-0.1.4.gem) = b88be992108297b240299d4a8cd1f25d9bea6871d35d2e0c94edfe0a259e3432 +SIZE (rubygem/POpen4-0.1.4.gem) = 7680 diff --git a/devel/rubygem-popen4/pkg-descr b/devel/rubygem-popen4/pkg-descr new file mode 100644 index 000000000000..8aac78db3e9b --- /dev/null +++ b/devel/rubygem-popen4/pkg-descr @@ -0,0 +1,5 @@ +POpen4 provides the Rubyist a single API across platforms for +executing a command in a child process with handles on stdout, +stderr, stdin streams as well as access to the process ID and exit status. + +WWW: http://rubygems.org/gems/popen4 |