diff options
author | bapt <bapt@FreeBSD.org> | 2012-10-05 22:09:59 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-10-05 22:09:59 +0800 |
commit | 574cf6a85084d6ff0bb7f0297932769ca9e4a2b5 (patch) | |
tree | cc092a53e40e2ad0d9376058782881edf45ab7de /news | |
parent | ac5544d83aa37acb385c44e3db31b88d53ee59a5 (diff) | |
download | freebsd-ports-gnome-574cf6a85084d6ff0bb7f0297932769ca9e4a2b5.tar.gz freebsd-ports-gnome-574cf6a85084d6ff0bb7f0297932769ca9e4a2b5.tar.zst freebsd-ports-gnome-574cf6a85084d6ff0bb7f0297932769ca9e4a2b5.zip |
Finish converting perl@ ports to new Options Framework
Diffstat (limited to 'news')
-rw-r--r-- | news/p5-News-Article/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/news/p5-News-Article/Makefile b/news/p5-News-Article/Makefile index 5cf5a7c4ae0c..3dced38218cf 100644 --- a/news/p5-News-Article/Makefile +++ b/news/p5-News-Article/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-News-Article -# Date created: January 2, 1998 -# Whom: Don Croyle <croyle@gelemna.org> -# +# Created by: Don Croyle <croyle@gelemna.org> # $FreeBSD$ -# PORTNAME= News-Article PORTVERSION= 1.27 @@ -23,13 +19,15 @@ PERL_CONFIGURE= yes MAN3= News::Article.3 News::AutoReply.3 News::FormArticle.3 \ News::FormReply.3 -OPTIONS= PGP_SIGN "PGP::Sign support for header signing" on +OPTIONS_DEFINE= PGP_SIGN +OPTIONS_DEFAULT= PGP_SIGN +PGP_SIGN_DESC= PGP::Sign support for header signing -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if !defined(WITHOUT_PGP_SIGN) +.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.post.mk> +.include <bsd.port.mk> |