diff options
author | vanilla <vanilla@FreeBSD.org> | 2001-04-03 06:10:05 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2001-04-03 06:10:05 +0800 |
commit | 4fce455776974fe59986cd70a7d2cabef5883cc0 (patch) | |
tree | 62dc13e7f0988569b72ee03b357d10cf620e94af /devel | |
parent | de23b058630e5ba3149e616720f97dc19e602a2a (diff) | |
download | freebsd-ports-gnome-4fce455776974fe59986cd70a7d2cabef5883cc0.tar.gz freebsd-ports-gnome-4fce455776974fe59986cd70a7d2cabef5883cc0.tar.zst freebsd-ports-gnome-4fce455776974fe59986cd70a7d2cabef5883cc0.zip |
p5-IPC-ShareLite is a simple interface to acess shared mem.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/Makefile | 22 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/distinfo | 1 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/files/patch-Configure | 38 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/files/patch-Makefile.PL | 10 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/pkg-comment | 1 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/pkg-descr | 4 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/pkg-plist | 6 |
8 files changed, 83 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index cd1dc7d7f79b..e7b8839dd62b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -282,6 +282,7 @@ SUBDIR += p5-IO-Stty SUBDIR += p5-IO-Tty SUBDIR += p5-IO-stringy + SUBDIR += p5-IPC-ShareLite SUBDIR += p5-IPC-Shareable SUBDIR += p5-Include SUBDIR += p5-Ioctl diff --git a/devel/p5-IPC-ShareLite/Makefile b/devel/p5-IPC-ShareLite/Makefile new file mode 100644 index 000000000000..d4c65bff32a4 --- /dev/null +++ b/devel/p5-IPC-ShareLite/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: p5-IPC-ShareLite +# Date created: April 03 2001 +# Whom: vanilla +# +# $FreeBSD$ +# + +PORTNAME= IPC-ShareLite +PORTVERSION= 0.08 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= IPC +PKGNAMEPREFIX= p5- + +MAINTAINER= ports@FreeBSD.org + +PERL_CONFIGURE= yes + +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} +MAN3= IPC::ShareLite.3 + +.include <bsd.port.mk> diff --git a/devel/p5-IPC-ShareLite/distinfo b/devel/p5-IPC-ShareLite/distinfo new file mode 100644 index 000000000000..3f2dd47386d9 --- /dev/null +++ b/devel/p5-IPC-ShareLite/distinfo @@ -0,0 +1 @@ +MD5 (IPC-ShareLite-0.08.tar.gz) = 2c908d8b733faa0426acb513e5319bf7 diff --git a/devel/p5-IPC-ShareLite/files/patch-Configure b/devel/p5-IPC-ShareLite/files/patch-Configure new file mode 100644 index 000000000000..6152d82c340f --- /dev/null +++ b/devel/p5-IPC-ShareLite/files/patch-Configure @@ -0,0 +1,38 @@ +--- Configure.orig Tue Apr 3 04:46:13 2001 ++++ Configure Tue Apr 3 04:50:15 2001 +@@ -3042,35 +3042,6 @@ + : preserve RCS keywords in files with variable substitution, grrr + Id='$Id' + +-: Finish up by extracting the .SH files +-case "$alldone" in +-exit) +- $rm -rf UU +- echo "Done." +- exit 0 +- ;; +-cont) +- ;; +-'') +- dflt='' +- nostick=true +- $cat <<EOM +- +-If you'd like to make any changes to the config.sh file before I begin +-to configure things, do it as a shell escape now (e.g. !vi config.sh). +- +-EOM +- rp="Press return or use a shell escape to edit config.sh:" +- . UU/myread +- nostick='' +- case "$ans" in +- '') ;; +- *) : in case they cannot read +- sh 1>&4 -c "$ans";; +- esac +- ;; +-esac +- + : if this fails, just run all the .SH files by hand + . ./config.sh + diff --git a/devel/p5-IPC-ShareLite/files/patch-Makefile.PL b/devel/p5-IPC-ShareLite/files/patch-Makefile.PL new file mode 100644 index 000000000000..aaec7d9eea36 --- /dev/null +++ b/devel/p5-IPC-ShareLite/files/patch-Makefile.PL @@ -0,0 +1,10 @@ +--- Makefile.PL.orig Tue Apr 3 04:45:01 2001 ++++ Makefile.PL Tue Apr 3 04:45:07 2001 +@@ -1,6 +1,6 @@ + use ExtUtils::MakeMaker; + +-system('./Configure'); ++system('./Configure -d'); + + # See lib/ExtUtils/MakeMaker.pm for details of how to influence + # the contents of the Makefile that is written. diff --git a/devel/p5-IPC-ShareLite/pkg-comment b/devel/p5-IPC-ShareLite/pkg-comment new file mode 100644 index 000000000000..57617be0af68 --- /dev/null +++ b/devel/p5-IPC-ShareLite/pkg-comment @@ -0,0 +1 @@ +A simple interface to access shared memory diff --git a/devel/p5-IPC-ShareLite/pkg-descr b/devel/p5-IPC-ShareLite/pkg-descr new file mode 100644 index 000000000000..f99ac623e59f --- /dev/null +++ b/devel/p5-IPC-ShareLite/pkg-descr @@ -0,0 +1,4 @@ +PC::ShareLite provides a simple interface to shared memory, allowing +data to be efficiently communicated between processes. Your operating +system must support SysV IPC (shared memory and semaphores) in order to +use this module. diff --git a/devel/p5-IPC-ShareLite/pkg-plist b/devel/p5-IPC-ShareLite/pkg-plist new file mode 100644 index 000000000000..83b4de930d83 --- /dev/null +++ b/devel/p5-IPC-ShareLite/pkg-plist @@ -0,0 +1,6 @@ +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/IPC/ShareLite.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite/.packlist +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite/ShareLite.bs +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite/ShareLite.so +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite/autosplit.ix +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite |