pkgsrc/devel/p5-Inline/Makefile

28 lines
756 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.18 2010/08/21 16:33:56 seb Exp $
#
Updating devel/p5-Inline from 0.45 to 0.46 as proposed by PR pkg/42794, but replaced the modified patch by EU::MM environment variable. pkgsrc changes: - Add license definition - Adjust dependencies (Digest::MD5 2.09 is in Perl core since 5.7.3) - Replace patch for C/Makefile.PL by environment variable controlling MM::EU prompt() function Upstream changes: version: 0.46 date: Fri Feb 12 2010 Same as 0.45_02 (plus some minor doc alterations in Inline.pod). version: 0.45_02 date: Fri Feb 5 2010 Changes to Inline.pm, denter.pm, and Inline.pod relating to "fixing" untainting (to the extent that untainting of -T inline scripts works as documented). Many thanks to Patrick LeBoutillier. Also added C/t/08core.t (which contains -T on the shebang line) as a basic test of untainting. (RT ticket 13084) version: 0.45_01 date: Thurs Jan 28 2010 C/C.pod - document that *fully qualified* paths for LIBS, INC, TYPEMAPS and MYEXTLIB are needed. (RT ticket 5207) Inline.pm - remove "defined" from "defined %main::Inline::Config::" as that usage causes a deprecation warning with perl-5.11 and later. (RT ticket 53227) Inline.pm - fix sub push_overrides (RT ticket 49669) This change responsible for "Subroutine Inline::C::get_parser redefined" warnings that can occur during build stage under certain circumstances. denter.pm - local()ise $_ (in four places) (RT ticket 16801) Inline.pod - doc correction (thanks Alejandro Ochoa). C/Makefile.PL - accommodate 'ccache cc' (RT ticket 40140) - accommodate ActivePerl-5.10.1 and later (RT ticket 49419) C/Cookbook.pod - typo fixes (thanks Brad Barber) - Change "NAME" from "C Cookbook ..." to "Inline::C-Cookbook ...". (RT ticket 45417)
2010-02-15 16:47:18 +01:00
DISTNAME= Inline-0.46
2007-02-22 20:18:13 +01:00
PKGNAME= p5-${DISTNAME}
PKGREVISION= 1
SVR4_PKGNAME= p5inl
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Inline/}
MAINTAINER= pkgsrc-users@NetBSD.org
2007-02-22 20:18:13 +01:00
HOMEPAGE= http://search.cpan.org/dist/Inline/
COMMENT= Perl5 module for writing Perl subroutines in other languages
Updating devel/p5-Inline from 0.45 to 0.46 as proposed by PR pkg/42794, but replaced the modified patch by EU::MM environment variable. pkgsrc changes: - Add license definition - Adjust dependencies (Digest::MD5 2.09 is in Perl core since 5.7.3) - Replace patch for C/Makefile.PL by environment variable controlling MM::EU prompt() function Upstream changes: version: 0.46 date: Fri Feb 12 2010 Same as 0.45_02 (plus some minor doc alterations in Inline.pod). version: 0.45_02 date: Fri Feb 5 2010 Changes to Inline.pm, denter.pm, and Inline.pod relating to "fixing" untainting (to the extent that untainting of -T inline scripts works as documented). Many thanks to Patrick LeBoutillier. Also added C/t/08core.t (which contains -T on the shebang line) as a basic test of untainting. (RT ticket 13084) version: 0.45_01 date: Thurs Jan 28 2010 C/C.pod - document that *fully qualified* paths for LIBS, INC, TYPEMAPS and MYEXTLIB are needed. (RT ticket 5207) Inline.pm - remove "defined" from "defined %main::Inline::Config::" as that usage causes a deprecation warning with perl-5.11 and later. (RT ticket 53227) Inline.pm - fix sub push_overrides (RT ticket 49669) This change responsible for "Subroutine Inline::C::get_parser redefined" warnings that can occur during build stage under certain circumstances. denter.pm - local()ise $_ (in four places) (RT ticket 16801) Inline.pod - doc correction (thanks Alejandro Ochoa). C/Makefile.PL - accommodate 'ccache cc' (RT ticket 40140) - accommodate ActivePerl-5.10.1 and later (RT ticket 49419) C/Cookbook.pod - typo fixes (thanks Brad Barber) - Change "NAME" from "C Cookbook ..." to "Inline::C-Cookbook ...". (RT ticket 45417)
2010-02-15 16:47:18 +01:00
LICENSE= ${PERL5_LICENSE}
Updating devel/p5-Inline from 0.45 to 0.46 as proposed by PR pkg/42794, but replaced the modified patch by EU::MM environment variable. pkgsrc changes: - Add license definition - Adjust dependencies (Digest::MD5 2.09 is in Perl core since 5.7.3) - Replace patch for C/Makefile.PL by environment variable controlling MM::EU prompt() function Upstream changes: version: 0.46 date: Fri Feb 12 2010 Same as 0.45_02 (plus some minor doc alterations in Inline.pod). version: 0.45_02 date: Fri Feb 5 2010 Changes to Inline.pm, denter.pm, and Inline.pod relating to "fixing" untainting (to the extent that untainting of -T inline scripts works as documented). Many thanks to Patrick LeBoutillier. Also added C/t/08core.t (which contains -T on the shebang line) as a basic test of untainting. (RT ticket 13084) version: 0.45_01 date: Thurs Jan 28 2010 C/C.pod - document that *fully qualified* paths for LIBS, INC, TYPEMAPS and MYEXTLIB are needed. (RT ticket 5207) Inline.pm - remove "defined" from "defined %main::Inline::Config::" as that usage causes a deprecation warning with perl-5.11 and later. (RT ticket 53227) Inline.pm - fix sub push_overrides (RT ticket 49669) This change responsible for "Subroutine Inline::C::get_parser redefined" warnings that can occur during build stage under certain circumstances. denter.pm - local()ise $_ (in four places) (RT ticket 16801) Inline.pod - doc correction (thanks Alejandro Ochoa). C/Makefile.PL - accommodate 'ccache cc' (RT ticket 40140) - accommodate ActivePerl-5.10.1 and later (RT ticket 49419) C/Cookbook.pod - typo fixes (thanks Brad Barber) - Change "NAME" from "C Cookbook ..." to "Inline::C-Cookbook ...". (RT ticket 45417)
2010-02-15 16:47:18 +01:00
DEPENDS+= {perl>=5.7.3,p5-Digest-MD5>=2.09}:../../security/p5-Digest-MD5
DEPENDS+= p5-Parse-RecDescent>=1.80:../../devel/p5-Parse-RecDescent
Updating devel/p5-Inline from 0.45 to 0.46 as proposed by PR pkg/42794, but replaced the modified patch by EU::MM environment variable. pkgsrc changes: - Add license definition - Adjust dependencies (Digest::MD5 2.09 is in Perl core since 5.7.3) - Replace patch for C/Makefile.PL by environment variable controlling MM::EU prompt() function Upstream changes: version: 0.46 date: Fri Feb 12 2010 Same as 0.45_02 (plus some minor doc alterations in Inline.pod). version: 0.45_02 date: Fri Feb 5 2010 Changes to Inline.pm, denter.pm, and Inline.pod relating to "fixing" untainting (to the extent that untainting of -T inline scripts works as documented). Many thanks to Patrick LeBoutillier. Also added C/t/08core.t (which contains -T on the shebang line) as a basic test of untainting. (RT ticket 13084) version: 0.45_01 date: Thurs Jan 28 2010 C/C.pod - document that *fully qualified* paths for LIBS, INC, TYPEMAPS and MYEXTLIB are needed. (RT ticket 5207) Inline.pm - remove "defined" from "defined %main::Inline::Config::" as that usage causes a deprecation warning with perl-5.11 and later. (RT ticket 53227) Inline.pm - fix sub push_overrides (RT ticket 49669) This change responsible for "Subroutine Inline::C::get_parser redefined" warnings that can occur during build stage under certain circumstances. denter.pm - local()ise $_ (in four places) (RT ticket 16801) Inline.pod - doc correction (thanks Alejandro Ochoa). C/Makefile.PL - accommodate 'ccache cc' (RT ticket 40140) - accommodate ActivePerl-5.10.1 and later (RT ticket 49419) C/Cookbook.pod - typo fixes (thanks Brad Barber) - Change "NAME" from "C Cookbook ..." to "Inline::C-Cookbook ...". (RT ticket 45417)
2010-02-15 16:47:18 +01:00
MAKE_ENV+= PERL_MM_USE_DEFAULT=1
2004-01-05 23:16:24 +01:00
PKG_INSTALLATION_TYPES= overwrite pkgviews
2008-06-12 04:14:13 +02:00
PKG_DESTDIR_SUPPORT= user-destdir
2004-01-05 23:16:24 +01:00
PERL5_PACKLIST= auto/Inline/.packlist
2002-10-21 01:35:09 +02:00
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"