Date: Sat, 14 Dec 2013 06:04:59 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336422 - head/Mk Message-ID: <201312140604.rBE64xmo028812@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eadler Date: Sat Dec 14 06:04:59 2013 New Revision: 336422 URL: http://svnweb.freebsd.org/changeset/ports/336422 Log: bsd.sanity.mk: add a warning not to use the BSD license The 'BSD' license covered 3+ different licenses some of which were not OSI approved. Instead we now have 3 separate licenses. Approved by: portmgr (tabthorpe) Modified: head/Mk/bsd.sanity.mk Modified: head/Mk/bsd.sanity.mk ============================================================================== --- head/Mk/bsd.sanity.mk Sat Dec 14 05:06:17 2013 (r336421) +++ head/Mk/bsd.sanity.mk Sat Dec 14 06:04:59 2013 (r336422) @@ -139,3 +139,9 @@ DEV_ERROR+= "you cannot include bsd.port .if defined(USE_DOS2UNIX) DEV_WARNING+= "USE_DOS2UNIX is deprecated, please use USES=dos2unix" .endif + +.if defined(LICENSE) +.if ${LICENSE:MBSD} +DEV_WARNING+= "LICENSE must not contain BSD, instead use BSD[234]CLAUSE" +.endif +.endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312140604.rBE64xmo028812>