diff options
author | wg <wg@FreeBSD.org> | 2013-12-16 05:56:41 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-12-16 05:56:41 +0800 |
commit | 64b93370c51404ebce75a80652641fd129431781 (patch) | |
tree | 0317c82d68eed703e4eeaf96483ad00eb71640d0 /Mk | |
parent | d78ca3f55c32ff29b887975db301ffb712e5047b (diff) | |
download | freebsd-ports-gnome-64b93370c51404ebce75a80652641fd129431781.tar.gz freebsd-ports-gnome-64b93370c51404ebce75a80652641fd129431781.tar.zst freebsd-ports-gnome-64b93370c51404ebce75a80652641fd129431781.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)
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.sanity.mk | 4 |
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 |