Add p5-Inline-C2XS 0.04, perl module to create an XS file from an Inline C file.
This commit is contained in:
parent
b2e0b4a449
commit
37a1049733
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=174380
9 changed files with 127 additions and 0 deletions
|
@ -1150,6 +1150,7 @@
|
|||
SUBDIR += p5-Include
|
||||
SUBDIR += p5-Inline
|
||||
SUBDIR += p5-Inline-ASM
|
||||
SUBDIR += p5-Inline-C2XS
|
||||
SUBDIR += p5-Inline-CPP
|
||||
SUBDIR += p5-Inline-Files
|
||||
SUBDIR += p5-Inline-Filters
|
||||
|
|
35
devel/p5-Inline-C2XS/Makefile
Normal file
35
devel/p5-Inline-C2XS/Makefile
Normal file
|
@ -0,0 +1,35 @@
|
|||
# New ports collection makefile for: Inline::C2XS
|
||||
# Date created: 3 Oct 2006
|
||||
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Inline-C2XS
|
||||
PORTVERSION= 0.04
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Inline
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= clsung@FreeBSD.org
|
||||
COMMENT= Perl module to create an XS file from an Inline C file
|
||||
|
||||
BUILD_DEPENDS= ${SITE_PERL}/Inline/C.pm:${PORTSDIR}/devel/p5-Inline
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Inline::C2XS.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500601
|
||||
do-patch:
|
||||
${PERL} -pi -e 's/^our (\W\w+);/use vars q($$1);/o;' \
|
||||
-e 's/^our\s+(\W\w+)(?!;)/use vars q($$1); $$1/o;' \
|
||||
-e 'undef $$_ if /^\s*(no|use) warnings/o;' \
|
||||
${WRKSRC}/C2XS.pm
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
devel/p5-Inline-C2XS/distinfo
Normal file
3
devel/p5-Inline-C2XS/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (Inline-C2XS-0.04.tar.gz) = 1a4609b22e59d095d422b5fc9dc35b26
|
||||
SHA256 (Inline-C2XS-0.04.tar.gz) = 285504c6e1d8333489ce8203554f707c5e642d2faf9000ca8f3edddf8d33fdbf
|
||||
SIZE (Inline-C2XS-0.04.tar.gz) = 6465
|
20
devel/p5-Inline-C2XS/pkg-descr
Normal file
20
devel/p5-Inline-C2XS/pkg-descr
Normal file
|
@ -0,0 +1,20 @@
|
|||
Inline::C2XS - create an XS file from an Inline C file.
|
||||
|
||||
The C file that Inline::C2XS needs to find would contain
|
||||
only the C code.
|
||||
|
||||
Inline::C2XS looks for the file in ./src directory - expecting that the
|
||||
filename will be the same as what appears after the final '::' in the
|
||||
module name (with a '.c' extension). ie if the module is called
|
||||
My::Next::Mod it looks for a file ./src/Mod.c, and creates a file
|
||||
named Mod.xs. Also created, is the file 'INLINE.h' - but only if that
|
||||
file is needed. The generated xs file (and INLINE.h) will be written
|
||||
to the cwd unless a third argument (specifying a valid directory) is
|
||||
provided to the c2xs() function.
|
||||
|
||||
The created XS file, when packaged with the '.pm' file, an
|
||||
appropriate 'Makefile.PL', and 'INLINE.h' (if it's needed),
|
||||
can be used to build the module in the usual way - without
|
||||
any dependence upon the Inline::C module.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Inline-C2XS/
|
5
devel/p5-Inline-C2XS/pkg-plist
Normal file
5
devel/p5-Inline-C2XS/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
|||
%%SITE_PERL%%/Inline/C2XS.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline/C2XS/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline/C2XS
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline
|
||||
@dirrmtry %%SITE_PERL%%/Inline
|
35
devel/p5-InlineX-C2XS/Makefile
Normal file
35
devel/p5-InlineX-C2XS/Makefile
Normal file
|
@ -0,0 +1,35 @@
|
|||
# New ports collection makefile for: Inline::C2XS
|
||||
# Date created: 3 Oct 2006
|
||||
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Inline-C2XS
|
||||
PORTVERSION= 0.04
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Inline
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= clsung@FreeBSD.org
|
||||
COMMENT= Perl module to create an XS file from an Inline C file
|
||||
|
||||
BUILD_DEPENDS= ${SITE_PERL}/Inline/C.pm:${PORTSDIR}/devel/p5-Inline
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Inline::C2XS.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500601
|
||||
do-patch:
|
||||
${PERL} -pi -e 's/^our (\W\w+);/use vars q($$1);/o;' \
|
||||
-e 's/^our\s+(\W\w+)(?!;)/use vars q($$1); $$1/o;' \
|
||||
-e 'undef $$_ if /^\s*(no|use) warnings/o;' \
|
||||
${WRKSRC}/C2XS.pm
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
devel/p5-InlineX-C2XS/distinfo
Normal file
3
devel/p5-InlineX-C2XS/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (Inline-C2XS-0.04.tar.gz) = 1a4609b22e59d095d422b5fc9dc35b26
|
||||
SHA256 (Inline-C2XS-0.04.tar.gz) = 285504c6e1d8333489ce8203554f707c5e642d2faf9000ca8f3edddf8d33fdbf
|
||||
SIZE (Inline-C2XS-0.04.tar.gz) = 6465
|
20
devel/p5-InlineX-C2XS/pkg-descr
Normal file
20
devel/p5-InlineX-C2XS/pkg-descr
Normal file
|
@ -0,0 +1,20 @@
|
|||
Inline::C2XS - create an XS file from an Inline C file.
|
||||
|
||||
The C file that Inline::C2XS needs to find would contain
|
||||
only the C code.
|
||||
|
||||
Inline::C2XS looks for the file in ./src directory - expecting that the
|
||||
filename will be the same as what appears after the final '::' in the
|
||||
module name (with a '.c' extension). ie if the module is called
|
||||
My::Next::Mod it looks for a file ./src/Mod.c, and creates a file
|
||||
named Mod.xs. Also created, is the file 'INLINE.h' - but only if that
|
||||
file is needed. The generated xs file (and INLINE.h) will be written
|
||||
to the cwd unless a third argument (specifying a valid directory) is
|
||||
provided to the c2xs() function.
|
||||
|
||||
The created XS file, when packaged with the '.pm' file, an
|
||||
appropriate 'Makefile.PL', and 'INLINE.h' (if it's needed),
|
||||
can be used to build the module in the usual way - without
|
||||
any dependence upon the Inline::C module.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Inline-C2XS/
|
5
devel/p5-InlineX-C2XS/pkg-plist
Normal file
5
devel/p5-InlineX-C2XS/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
|||
%%SITE_PERL%%/Inline/C2XS.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline/C2XS/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline/C2XS
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline
|
||||
@dirrmtry %%SITE_PERL%%/Inline
|
Loading…
Reference in a new issue