From owner-svn-ports-all@FreeBSD.ORG Mon Jun 16 05:45:15 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBDCAD3C; Mon, 16 Jun 2014 05:45:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F60327D0; Mon, 16 Jun 2014 05:45:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5jFZa092314; Mon, 16 Jun 2014 05:45:15 GMT (envelope-from riggs@svn.freebsd.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5G5jFb7092313; Mon, 16 Jun 2014 05:45:15 GMT (envelope-from riggs@svn.freebsd.org) Message-Id: <201406160545.s5G5jFb7092313@svn.freebsd.org> From: Thomas Zander Date: Mon, 16 Jun 2014 05:45:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357945 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:45:15 -0000 Author: riggs Date: Mon Jun 16 05:45:15 2014 New Revision: 357945 URL: http://svnweb.freebsd.org/changeset/ports/357945 QAT: https://qat.redports.org/buildarchive/r357945/ Log: - Rewrite explanation of LICENSE_PERM components (dist-mirror dist-sell pkg-mirror pkg-sell auto-accept) to make it more clear to the reader PR: 186662 Submitted by: riggs Reviewed by: bapt, mentors Approved by: portmgr (bapt), mentors (implicit) Modified: head/Mk/bsd.licenses.mk Modified: head/Mk/bsd.licenses.mk ============================================================================== --- head/Mk/bsd.licenses.mk Mon Jun 16 04:49:16 2014 (r357944) +++ head/Mk/bsd.licenses.mk Mon Jun 16 05:45:15 2014 (r357945) @@ -91,15 +91,19 @@ Licenses_Include_MAINTAINER= por # LICENSE_GROUPS. # # Available components for LICENSE_PERMS: -# dist-mirror - No free redistribution of distfile (like FTP mirroring; RESTRICTED). -# dist-sell - No selling of distfile (like in CD-ROM; NO_CDROM). -# pkg-mirror - No free redistribution of package (like FTP upload; NO_PACKAGE). -# pkg-sell - No selling of package (like in CD-ROM; NO_CDROM). -# auto-accept - If license is accepted by default, without presented +# dist-mirror - Redistribution of distfile is permitted +# (like FTP mirroring; port is not RESTRICTED). +# dist-sell - Selling of distfile, e.g. on CD-ROM is permitted +# (port does not need to set NO_CDROM). +# pkg-mirror - Free redistribution of package is permitted +# (like FTP upload; port does not set NO_PACKAGE). +# pkg-sell - Selling of package is permitted, e.g. on CD-ROM. +# auto-accept - License is accepted by default, without presented # agreement, unless the user defines LICENSES_ASK. # # Notes about permissions: -# - Permissions use a default-deny policy. +# - Permissions use a default-deny policy (e.g. not setting "dist-mirror" +# means it is automatically excluded). # - Components can be negated by prefixing them with "no-" (like # "no-pkg-sell"). # - In case a component is present and also excluded (i.e. no-dist-sell and