svn commit: r380790 - head/security/p5-Crypt-SMIME

Adam Weinberger adamw at FreeBSD.org
Sun Mar 8 19:18:44 UTC 2015


Author: adamw
Date: Sun Mar  8 19:18:43 2015
New Revision: 380790
URL: https://svnweb.freebsd.org/changeset/ports/380790
QAT: https://qat.redports.org/buildarchive/r380790/

Log:
  Allow the OpenSSL library to be overridden by using WITH_OPENSSL_PORT
  instead of a LIB_DEPENDS. I think this is the right way to use
  WITH_OPENSSL_PORT, but it's tough to know given the lack of documentation
  on it.
  
  PR:		198111
  Submitted by:	Bernard Spil

Modified:
  head/security/p5-Crypt-SMIME/Makefile

Modified: head/security/p5-Crypt-SMIME/Makefile
==============================================================================
--- head/security/p5-Crypt-SMIME/Makefile	Sun Mar  8 18:50:34 2015	(r380789)
+++ head/security/p5-Crypt-SMIME/Makefile	Sun Mar  8 19:18:43 2015	(r380790)
@@ -2,7 +2,7 @@
 
 PORTNAME=	Crypt-SMIME
 PORTVERSION=	0.15
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	security perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-
@@ -13,13 +13,18 @@ COMMENT=	S/MIME message signing, verific
 LICENSE=	ART10
 
 RUN_DEPENDS=	p5-ExtUtils-CChecker>=0:${PORTSDIR}/devel/p5-ExtUtils-CChecker \
-		p5-ExtUtils-PkgConfig>=0:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig \
-		${LOCALBASE}/lib/libcrypto.so:${PORTSDIR}/security/openssl
+		p5-ExtUtils-PkgConfig>=0:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig
 BUILD_DEPENDS=	${RUN_DEPENDS}
-TEST_DEPENDS=	p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception
+TEST_DEPENDS=	p5-Taint-Util>=0:${PORTSDIR}/devel/p5-Taint-Util \
+		p5-Test-Dependencies>=0:${PORTSDIR}/devel/p5-Test-Dependencies \
+		p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \
+		p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \
+		p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage \
+		p5-Test-Taint>=0:${PORTSDIR}/devel/p5-Test-Taint
 
 USES=		perl5
 USE_OPENSSL=	yes
+WITH_OPENSSL_PORT?=	yes
 USE_PERL5=	configure
 
 post-stage:


More information about the svn-ports-head mailing list