Index: nrpe2/Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/nrpe2/Makefile,v retrieving revision 1.30 diff -u -r1.30 Makefile --- nrpe2/Makefile 30 Dec 2010 17:46:30 -0000 1.30 +++ nrpe2/Makefile 31 Dec 2010 00:03:42 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/net-mgmt/nrpe2/Makefile,v 1.30 2010/12/30 17:46:30 ohauer Exp $ # -PORTNAME= nrpe +PORTNAME?= nrpe DISTVERSION= 2.12 PORTREVISION= 3 CATEGORIES= net-mgmt @@ -21,10 +21,12 @@ USE_PERL5_BUILD= yes USE_RC_SUBR= nrpe2 -CONFLICTS= nrpe-1.* +CONFLICTS= nrpe-ssl-[0-9]* -OPTIONS= SSL "Enable SSL support (disables plain-text server)" off \ - ARGS "Enable command argument processing **Security Risk**" off +.ifndef(SLAVE) +OPTIONS= SSL "Enable SSL support (disables plain-text server)" off +.endif +OPTIONS+= ARGS "Enable command argument processing **Security Risk**" off GNU_CONFIGURE= yes --- /dev/null 2010-12-31 01:05:17.000000000 +0100 +++ nrpe2-ssl/Makefile 2010-12-31 01:01:01.000000000 +0100 @@ -0,0 +1,17 @@ +# New ports collection makefile for: nrpe-ssl +# Date created: 30 Dec 2010 +# Whom: ohauer +# +# $FreeBSD$ +# + +PORTNAME= nrpe +PKGNAMESUFFIX= -ssl + +COMMENT= SSL enabled Nagios Remote Plugin Executor + +MASTERDIR= ${.CURDIR}/../nrpe2 +WITH_SSL= yes +SLAVE= yes + +.include "${MASTERDIR}/Makefile"