svn commit: r305880 - head/sysutils/puppet

Steve Wills swills at FreeBSD.org
Sun Oct 14 14:39:47 UTC 2012


Author: swills
Date: Sun Oct 14 14:39:47 2012
New Revision: 305880
URL: http://svn.freebsd.org/changeset/ports/305880

Log:
  - Fix logic for OptionsNG
  
  Pointed out by:	jhale
  Pointyhat to:	swills
  Feature safe:	yes

Modified:
  head/sysutils/puppet/Makefile

Modified: head/sysutils/puppet/Makefile
==============================================================================
--- head/sysutils/puppet/Makefile	Sun Oct 14 14:39:03 2012	(r305879)
+++ head/sysutils/puppet/Makefile	Sun Oct 14 14:39:47 2012	(r305880)
@@ -59,7 +59,7 @@ RUN_DEPENDS+=	rubygem-bzip2>=0:${PORTSDI
 .endif
 
 .if ${PORT_OPTIONS:MPACKAGE_ROOT}
-.if ! ${PORT_OPTIONS:MPACKAGE_ORIGN}
+.if ! ${PORT_OPTIONS:MPACKAGE_ORIGIN}
 EXTRA_PATCHES+=	${FILESDIR}/optpatch-package_root
 .else
 BROKEN=	PACKAGE_ROOT option patch is incompatable with PACKAGE_ORIGIN patch.
@@ -108,7 +108,7 @@ post-install:
 	${INSTALL} -d ${DOCSDIR}
 	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
 .endif
-.if ! ${PORT_OPTIONS:MEXAMPLES}
+.if ${PORT_OPTIONS:MEXAMPLES}
 	cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}
 .endif
 	@${CAT} ${PKGMESSAGE}


More information about the svn-ports-all mailing list