diff options
author | skv <skv@FreeBSD.org> | 2003-10-18 20:28:24 +0800 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2003-10-18 20:28:24 +0800 |
commit | 7609ffc546db852600cd0b0f0be176dd3de51f95 (patch) | |
tree | 6348b96aa8ce7da6d3544ca739e9ea4efd415e79 /devel/p5-ExtUtils-Depends | |
parent | 9193c023ef858ff4f2ba6269d85a211ccd18040f (diff) | |
download | freebsd-ports-gnome-7609ffc546db852600cd0b0f0be176dd3de51f95.tar.gz freebsd-ports-gnome-7609ffc546db852600cd0b0f0be176dd3de51f95.tar.zst freebsd-ports-gnome-7609ffc546db852600cd0b0f0be176dd3de51f95.zip |
Add p5-ExtUtils-Depends 0.102,
easily build XS extensions that
depend on XS extensions.
Diffstat (limited to 'devel/p5-ExtUtils-Depends')
-rw-r--r-- | devel/p5-ExtUtils-Depends/Makefile | 22 | ||||
-rw-r--r-- | devel/p5-ExtUtils-Depends/distinfo | 1 | ||||
-rw-r--r-- | devel/p5-ExtUtils-Depends/pkg-descr | 16 | ||||
-rw-r--r-- | devel/p5-ExtUtils-Depends/pkg-plist | 5 |
4 files changed, 44 insertions, 0 deletions
diff --git a/devel/p5-ExtUtils-Depends/Makefile b/devel/p5-ExtUtils-Depends/Makefile new file mode 100644 index 000000000000..198ba79c68ad --- /dev/null +++ b/devel/p5-ExtUtils-Depends/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: ExtUtils-Depends +# Date created: 18 October 2003 +# Whom: Sergey Skvortsov <skv@protey.ru> +# +# $FreeBSD$ +# + +PORTNAME= ExtUtils-Depends +PORTVERSION= 0.102 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= ExtUtils +PKGNAMEPREFIX= p5- + +MAINTAINER= skv@FreeBSD.org +COMMENT= Easily build XS extensions that depend on XS extensions + +PERL_CONFIGURE= yes + +MAN3= ExtUtils::Depends.3 + +.include <bsd.port.mk> diff --git a/devel/p5-ExtUtils-Depends/distinfo b/devel/p5-ExtUtils-Depends/distinfo new file mode 100644 index 000000000000..9c3871d513e9 --- /dev/null +++ b/devel/p5-ExtUtils-Depends/distinfo @@ -0,0 +1 @@ +MD5 (ExtUtils-Depends-0.102.tar.gz) = 1f966c1bd5bab35b0eb9172a5db1f9a3 diff --git a/devel/p5-ExtUtils-Depends/pkg-descr b/devel/p5-ExtUtils-Depends/pkg-descr new file mode 100644 index 000000000000..8d427cb08a6f --- /dev/null +++ b/devel/p5-ExtUtils-Depends/pkg-descr @@ -0,0 +1,16 @@ +This module tries to make it easy to build Perl extensions that use +functions and typemaps provided by other perl extensions. This means +that a perl extension is treated like a shared library that provides +also a C and an XS interface besides the perl one. This works as long +as the base extension is loaded with the RTLD_GLOBAL flag (usually done +with a + + sub dl_load_flags {0x01} + +in the main .pm file) if you need to use functions defined in the +module. + +WWW: http://search.cpan.org/dist/ExtUtils-Depends/ + +-- Sergey Skvortsov +skv@FreeBSD.org diff --git a/devel/p5-ExtUtils-Depends/pkg-plist b/devel/p5-ExtUtils-Depends/pkg-plist new file mode 100644 index 000000000000..5d81f0c16e7f --- /dev/null +++ b/devel/p5-ExtUtils-Depends/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils/Depends/.packlist +%%SITE_PERL%%/ExtUtils/Depends.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils/Depends +@unexec rmdir %D/%%SITE_PERL%%/ExtUtils 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils 2>/dev/null || true |