mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
32 lines
712 B
Makefile
32 lines
712 B
Makefile
# Created by: Don Croyle <croyle@gelemna.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= News-Article
|
|
PORTVERSION= 1.27
|
|
PORTREVISION= 2
|
|
CATEGORIES= news perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Object for handling Usenet articles in mail or news form
|
|
|
|
BUILD_DEPENDS= p5-Net>=0:${PORTSDIR}/net/p5-Net
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
OPTIONS_DEFINE= PGP_SIGN
|
|
OPTIONS_DEFAULT= PGP_SIGN
|
|
PGP_SIGN_DESC= PGP::Sign support for header signing
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MPGP_SIGN}
|
|
BUILD_DEPENDS+= p5-PGP-Sign>=0:${PORTSDIR}/security/p5-PGP-Sign
|
|
RUN_DEPENDS+= p5-PGP-Sign>=0:${PORTSDIR}/security/p5-PGP-Sign
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|