svn commit: r336631 - head/Mk

William Grzybowski wg at FreeBSD.org
Mon Dec 16 12:52:19 UTC 2013


Author: wg
Date: Mon Dec 16 12:52:18 2013
New Revision: 336631
URL: http://svnweb.freebsd.org/changeset/ports/336631

Log:
  Mk/bsd.sanity.mk: note about python auto plist and pkgname
  
  PYDISTUTILS_PKGNAME is useless when used with USE_PYDISTUTILS=yes and
  PYDISTUTILS_AUTOPLIST as its only function is to determine egg info name.
  
  Approved by:	portmgr (bapt)

Modified:
  head/Mk/bsd.sanity.mk

Modified: head/Mk/bsd.sanity.mk
==============================================================================
--- head/Mk/bsd.sanity.mk	Mon Dec 16 12:25:30 2013	(r336630)
+++ head/Mk/bsd.sanity.mk	Mon Dec 16 12:52:18 2013	(r336631)
@@ -149,3 +149,7 @@ DEV_WARNING+=	"LICENSE must not contain 
 .if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} == "easy_install"
 DEV_WARNING+=	"USE_PYDISTUTILS=easy_install is deprecated, please use USE_PYDISTUTILS=yes"
 .endif
+
+.if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} != "easy_install" && defined(PYDISTUTILS_AUTOPLIST) && defined(PYDISTUTILS_PKGNAME)
+DEV_WARNING+=	"PYDISTUTILS_PKGNAME has no effect for USE_PYDISTUTILS=yes and PYDISTUTILS_AUTOPLIST=yes"
+.endif


More information about the svn-ports-head mailing list