pkgsrc/security/p5-Crypt-SSLeay/Makefile

28 lines
695 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.18 2012/10/03 21:57:29 wiz Exp $
#
Upating security/p5-Crypt-SSLeay from 0.57nb4 to 0.58 Upstream changes: 0.58 2010-08-25 14:06:30 UTC - Bump version number for Crypt::SSLeay to 0.58 and Net::SSL to 2.85 in preparation for release. - Fix typo in POD is SSLeay.pm s/PEM0encoded/PEM encoded/ (checked http://github.com/gitpan/Crypt-SSLeay/blob/9a1582ee1e4d132ae7cf9497bb83144786425d73/SSLeay.pm) - Update Changes and TODO. Regenerate README and META.yml. Update package author. Minor POD fixes. 0.57_05 2010-08-15 17:41:21 UTC - Fix for NO_PROXY support in Net::SSL (bug #57836) - Bump Net::SSL version number to 2.84_02 after changes - Fix file/dir permissions (bug #60338) - Review warnings when compiling SSLeay.xs against older versions of OpenSSL. Warnings are due to OpenSSL. - Add clarification regarding $ENV{HTTPS_CA_FILE} and $ENV{HTTPS_CA_DIR} to the POD. - Other POD related changes: * Remove historic information in README about platforms where the package was successfully built. * Reformat acknowledgements. TODO: Add more people. * Fix link to Net-SSLeay. * Add note about the --live-tests command line option * Generate README from POD. * Formatting fixes. * Update copyright notice. 0.57_04 2010-08-11 00:22:33 UTC - Reorganize Makefile.PL to break individual steps in to subroutines so as to facilitate localized future modifications. Whether there was any point to this remains to be seen. - In Makefile.PL, accommodate ActiveState+MingW configuration. - Pick the correct lib location for Strawberry Perl (bug #60230). - Apply fixes in bug reports #59312 and #33954 to Net/SSL.pm. - Bump version number in Net/SSL.pm to indicate development release. 0.57_03 2010-08-09 20:12:30 UTC - If the last component of $inc_dir is 'openssl', set $inc_dir to its parent and set $prefix to 'openssl'. Otherwise, leave $inc_dir as is and set $prefix to '' (I hope this fixes bugs #28431, #28680, #32084, #43084, #54103 without breaking anything). - Improved OpenSSL detection on Win32/Strawberry Perl (bug #49285). - Add MIME::Base64 as a prerequisite as Net::SSL needs it. - exit 0 if OpenSSL can't be found to avoid superfluous reports from CPAN Testers. - Add \ to $opt_bench in eg/net-ssl-test (bugs #30931, #39363). 0.57_02 2010-08-08 18:27:40 UTC - Refactor the version detection algorithm in Makefile.PL to handle all known variations of version number encoding. Should fix bug #52408. 0.57_01 2008-02-18 14:42:32 UTC - use #include <..> rather than #include "..." in crypt_ssleay_version.h. - add command-line switch to avoid live tests (bug #30268). - skip tests in t/01-connect.t if 443 is already in use (bug #30985). - make code gcc -Wwrite-strings compatible (bug #31926).
2010-08-26 08:37:10 +02:00
DISTNAME= Crypt-SSLeay-0.58
PKGNAME= p5-${DISTNAME}
PKGREVISION= 2
SVR4_PKGNAME= p5csl
CATEGORIES= security perl5 www
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Crypt/}
MAINTAINER= pkgsrc-users@NetBSD.org
Update to 0.55: 0.55 2007-06-01 17:34:22 UTC - Added a blocking() method to Net::SSL (and bumped version to 2.81). 0.54 2007-04-12 22:05:26 UTC - Rebadged 0.53_05, since no bugs appear to have surfaced. 0.53_05 - Fixed up incorrect LIBS key in WriteMakefile args. Thanks to David Cantrell for giving me access to an OpenBSD box that revealed this problem. - Added the list of modules that depend on Crypt::SSLeay to the README, as per cpants.perl.org. (think: improvements to the test suite). 0.53_04 2007-03-06 09:39:01 UTC - add diag() info to determine possible reasons for failure as per http://www.nntp.perl.org/group/perl.cpan.testers/2007/03/msg428964.html - Tweaks for Strawberry Perl detection. 0.53_03 2007-03-04 18:30:06 UTC - Adjusted the typemap shims to silence the compiler warnings that occur when sizeof(IV) is larger than sizeof(char *). - use XSLoader for faster loading if available, otherwise fall back to DynaLoader. - Makefile.PL heavily reworked, lots of cruft removed. - Ask to see whether the live tests should be run. - renamed net_sst.t to 01-connect.t - added 02-live.t that performs live HTTPS requests. 0.53_02 2007-01-29 10:02:34 UTC - don't proxy hosts in NO_PROXY environment variable (CPAN bug #11078). - don't send user agent string to proxy unless send_useragent_to_proxy is enabled. (CPAN bug #4759). - Net::SSL bumped to 2.80 0.53_01 2007-01-24 22:21:09 UTC - patch for CPAN #12444 applied (Jeff Lavallee). Net::SSL bumped tp 2.79. - example scripts moved into eg/ directory and the documentation updated. - added a TODO to remind me of what needs to be done. 0.53 2006-12-26 17:21:22 UTC - 0.52_02 deemed stable 0.52_02 2006-12-20 19:29:01 UTC - improved VMS support (CPAN bug #19829). - add a test to see if cert file is readable in Net::SSL::configure_certs (CPAN bug #8498) and Net::SSL version to 2.78. - known working platforms list removed from documentation. Too old, and CPAN Testers has the up-to-date information. - minor documentation improvements. 0.52_01 2006-12-17 - add call to SSL_library_init() in new() - maintenance taken over by brian d foy and David Landgren.
2007-06-08 09:57:10 +02:00
HOMEPAGE= http://search.cpan.org/dist/Crypt-SSLeay/
COMMENT= Crypt::SSLeay - OpenSSL glue that provides LWP https support
2010-01-16 20:27:17 +01:00
LICENSE= ${PERL5_LICENSE}
2006-11-05 18:31:09 +01:00
PKG_DESTDIR_SUPPORT= user-destdir
2008-01-04 23:20:31 +01:00
USE_LANGUAGES= c
PERL5_PACKLIST= auto/Crypt/SSLeay/.packlist
MAKE_ENV+= PERL_MM_USE_DEFAULT=1
Update to 0.55: 0.55 2007-06-01 17:34:22 UTC - Added a blocking() method to Net::SSL (and bumped version to 2.81). 0.54 2007-04-12 22:05:26 UTC - Rebadged 0.53_05, since no bugs appear to have surfaced. 0.53_05 - Fixed up incorrect LIBS key in WriteMakefile args. Thanks to David Cantrell for giving me access to an OpenBSD box that revealed this problem. - Added the list of modules that depend on Crypt::SSLeay to the README, as per cpants.perl.org. (think: improvements to the test suite). 0.53_04 2007-03-06 09:39:01 UTC - add diag() info to determine possible reasons for failure as per http://www.nntp.perl.org/group/perl.cpan.testers/2007/03/msg428964.html - Tweaks for Strawberry Perl detection. 0.53_03 2007-03-04 18:30:06 UTC - Adjusted the typemap shims to silence the compiler warnings that occur when sizeof(IV) is larger than sizeof(char *). - use XSLoader for faster loading if available, otherwise fall back to DynaLoader. - Makefile.PL heavily reworked, lots of cruft removed. - Ask to see whether the live tests should be run. - renamed net_sst.t to 01-connect.t - added 02-live.t that performs live HTTPS requests. 0.53_02 2007-01-29 10:02:34 UTC - don't proxy hosts in NO_PROXY environment variable (CPAN bug #11078). - don't send user agent string to proxy unless send_useragent_to_proxy is enabled. (CPAN bug #4759). - Net::SSL bumped to 2.80 0.53_01 2007-01-24 22:21:09 UTC - patch for CPAN #12444 applied (Jeff Lavallee). Net::SSL bumped tp 2.79. - example scripts moved into eg/ directory and the documentation updated. - added a TODO to remind me of what needs to be done. 0.53 2006-12-26 17:21:22 UTC - 0.52_02 deemed stable 0.52_02 2006-12-20 19:29:01 UTC - improved VMS support (CPAN bug #19829). - add a test to see if cert file is readable in Net::SSL::configure_certs (CPAN bug #8498) and Net::SSL version to 2.78. - known working platforms list removed from documentation. Too old, and CPAN Testers has the up-to-date information. - minor documentation improvements. 0.52_01 2006-12-17 - add call to SSL_library_init() in new() - maintenance taken over by brian d foy and David Landgren.
2007-06-08 09:57:10 +02:00
MAKE_PARAMS+= --lib=${SSLBASE}
.include "../../lang/perl5/module.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"