10f22ecd6d
- Remove dependencies on modules distributed as part of perl core - Remove references to FreeBSD < 8 and perl < 5.16 - Ensure that DOCS and EXAMPLES options exist for ports installing PORTDOCS or PORTEXAMPLES - Reduce unnecessary inclusions of bsd.port.options.mk by using OPTIONS helpers and the like - Fix some cases where dependencies were only assigned to BUILD_DEPENDS - Fix a few of the cases where dependencies were only assigned to RUN_DEPENDS. This one happens in many, many ports. I only applied it in cases where it interfered with 'make test' but it should maybe be done more generally. - Mute ${MKDIR} in installation - Parethesize compound commands - In www/p5-URI-Fetch, remove the ZLIB option that wasn't used
27 lines
636 B
Makefile
27 lines
636 B
Makefile
# Created by: Blaz Zupan <blaz@si.FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Authen-SASL
|
|
PORTVERSION= 2.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= security perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Perl5 module for SASL authentication
|
|
|
|
RUN_DEPENDS= p5-Digest-HMAC>0:${PORTSDIR}/security/p5-Digest-HMAC
|
|
BUILD_DEPENDS:= ${RUN_DEPENDS}
|
|
|
|
OPTIONS_DEFINE= KERBEROS
|
|
OPTIONS_DEFAULT=KERBEROS
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
CONFIGURE_ENV+= AUTOMATED_TESTING=yes
|
|
|
|
KERBEROS_BUILD_DEPENDS= p5-GSSAPI>0:${PORTSDIR}/security/p5-GSSAPI
|
|
KERBEROS_RUN_DEPENDS= p5-GSSAPI>0:${PORTSDIR}/security/p5-GSSAPI
|
|
|
|
.include <bsd.port.mk>
|