a64733a567
pkgsrc changes: - Adding license definition - Adding pgp2-compat option which turns on idea dependency (defaultly off) - Reordering and updating dependencies to cover fixes Upstream changes: 1.04 2009.12.10 - Keyring lookup by uid is now case-insensitive to match the behavior in GnuPG. Fixes http://rt.cpan.org/Public/Bug/Display.html?id=2225 - Got rid of a warning in Crypt::OpenPGP::SKSessionKey related to broken calculation of the session_key; that session_key value was never used, so I removed the code generating the key, hence removing the warning. Addresses http://rt.cpan.org/Public/Bug/Display.html?id=29950 - Default key and config file locations (in compatibility mode) now work on Windows. Fixes http://rt.cpan.org/Public/Bug/Display.html?id=18815 - Updated to use Module::Install. Addresses http://rt.cpan.org/Public/Bug/Display.html?id=35983 and http://rt.cpan.org/Public/Bug/Display.html?id=31411 - Made all dependencies required, rather than optional based on feature packages. Simplifies distribution and packaging, and addresses http://rt.cpan.org/Public/Bug/Display.html?id=41426 - Removed sign() and auto_install() from Makefile.PL. - Removed magic svn keywords. - Converted test suite to Test::More. - Added author tests (xt/) and modified SYNOPSIS for all modules to make them pass the compilation test.
12 lines
388 B
Makefile
12 lines
388 B
Makefile
# $NetBSD: options.mk,v 1.1 2010/02/12 18:26:36 sno Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Crypt-OpenPGP
|
|
PKG_SUPPORTED_OPTIONS= pgp2-compat
|
|
PKG_SUGGESTED_OPTIONS= # empty
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mpgp2-compat)
|
|
DEPENDS+= p5-Crypt-IDEA-[0-9]*:../../security/p5-Crypt-IDEA
|
|
DEPENDS+= {perl>=5.7.3,p5-Digest-MD5-[0-9]*}:../../security/p5-Digest-MD5
|
|
.endif
|