Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Dec 2016 09:27:48 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r429587 - branches/2016Q4/mail/lbdb
Message-ID:  <201612270927.uBR9RmOj005852@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Tue Dec 27 09:27:48 2016
New Revision: 429587
URL: https://svnweb.freebsd.org/changeset/ports/429587

Log:
  MFH: r429501
  
  Fix handling of the GETENT plist substitution, add one for ypcat.
  
  GETENT is not a port option, WITH_GETENT is defined if /usr/bin/getent is
  present on the system, and the handling was broken in r319851 ("Convert to new
  options framework").
  
  While here, add a check for /usr/bin/ypcat since it is not present when world
  is built with WITHOUT_NIS.
  
  Approved by:	ports-secteam (junovitch)

Modified:
  branches/2016Q4/mail/lbdb/Makefile
  branches/2016Q4/mail/lbdb/pkg-plist
Directory Properties:
  branches/2016Q4/   (props changed)

Modified: branches/2016Q4/mail/lbdb/Makefile
==============================================================================
--- branches/2016Q4/mail/lbdb/Makefile	Tue Dec 27 09:25:30 2016	(r429586)
+++ branches/2016Q4/mail/lbdb/Makefile	Tue Dec 27 09:27:48 2016	(r429587)
@@ -3,7 +3,7 @@
 
 PORTNAME=	lbdb
 PORTVERSION=	0.39
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	mail
 MASTER_SITES=	http://www.spinnaker.de/debian/
 DISTNAME=	${PORTNAME}_${PORTVERSION}
@@ -25,12 +25,20 @@ CONFIGURE_ARGS=	--enable-lbdb-dotlock \
 MAKE_ARGS=	install_prefix=${STAGEDIR}
 USES=		gmake perl5
 
-.include <bsd.port.options.mk>
-
 .if exists (/usr/bin/getent)
-WITH_GETENT=	yes
+PLIST_SUB+=	GETENT=""
+.else
+PLIST_SUB+=	GETENT="@comment "
+.endif
+
+.if exists (/usr/bin/ypcat)
+PLIST_SUB+=	YPCAT=""
+.else
+PLIST_SUB+=	YPCAT="@comment "
 .endif
 
+.include <bsd.port.options.mk>
+
 .if ${PORT_OPTIONS:MGPG}
 BUILD_DEPENDS+=	gpg:security/gnupg
 RUN_DEPENDS+=	gpg:security/gnupg
@@ -55,12 +63,6 @@ PLIST_SUB+=	EVOLUTION=""
 PLIST_SUB+=	EVOLUTION="@comment "
 .endif
 
-.if ${PORT_OPTIONS:MGETENT}
-PLIST_SUB+=	GETENT=""
-.else
-PLIST_SUB+=	GETENT="@comment "
-.endif
-
 .if ${PORT_OPTIONS:MLDAP}
 RUN_DEPENDS+=	p5-perl-ldap>=0:net/p5-perl-ldap
 .endif

Modified: branches/2016Q4/mail/lbdb/pkg-plist
==============================================================================
--- branches/2016Q4/mail/lbdb/pkg-plist	Tue Dec 27 09:25:30 2016	(r429586)
+++ branches/2016Q4/mail/lbdb/pkg-plist	Tue Dec 27 09:27:48 2016	(r429587)
@@ -23,7 +23,7 @@ libexec/lbdb/m_palm
 libexec/lbdb/m_passwd
 libexec/lbdb/m_pine
 libexec/lbdb/m_wanderlust
-libexec/lbdb/m_yppasswd
+%%YPCAT%%libexec/lbdb/m_yppasswd
 libexec/lbdb/munge
 libexec/lbdb/munge-keeporder
 libexec/lbdb/mutt_ldap_query



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612270927.uBR9RmOj005852>