aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Grzybowski <wg@FreeBSD.org>2013-12-16 05:56:41 +0800
committerWilliam Grzybowski <wg@FreeBSD.org>2013-12-16 05:56:41 +0800
commit88488ebd59f239df2e7660f541fb59d3a227861a (patch)
tree0317c82d68eed703e4eeaf96483ad00eb71640d0
parent919c3bd72173f1b0d2b72bcbc0754a6bbece30b3 (diff)
downloadfreebsd-ports-gnome-88488ebd59f239df2e7660f541fb59d3a227861a.tar.gz
freebsd-ports-gnome-88488ebd59f239df2e7660f541fb59d3a227861a.tar.zst
freebsd-ports-gnome-88488ebd59f239df2e7660f541fb59d3a227861a.zip
Mk/bsd.sanity.mk: note USE_PYDISTUTILS=easy_install deprecation
Now that all python packages use setuptools and eggs are undesired for system wide packages the ports should use USE_PYDISTUTILS=yes instead. Approved by: portmgr (bapt)
-rw-r--r--Mk/bsd.sanity.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/Mk/bsd.sanity.mk b/Mk/bsd.sanity.mk
index 24f7985758d2..d381c660d884 100644
--- a/Mk/bsd.sanity.mk
+++ b/Mk/bsd.sanity.mk
@@ -145,3 +145,7 @@ DEV_WARNING+= "USE_DOS2UNIX is deprecated, please use USES=dos2unix"
DEV_WARNING+= "LICENSE must not contain BSD, instead use BSD[234]CLAUSE"
.endif
.endif
+
+.if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} == "easy_install"
+DEV_WARNING+= "USE_PYDISTUTILS=easy_install is deprecated, please use USE_PYDISTUTILS=yes"
+.endif