From owner-freebsd-ports@FreeBSD.ORG Sun Aug 1 11:06:11 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D60C51065672; Sun, 1 Aug 2010 11:06:11 +0000 (UTC) (envelope-from brix@FreeBSD.org) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id 9AF438FC19; Sun, 1 Aug 2010 11:06:11 +0000 (UTC) Received: from druadan.brixandersen.dk (0x55534f5f.adsl.cybercity.dk [85.83.79.95]) by solow.pil.dk (Postfix) with ESMTPA id E241B1CC395; Sun, 1 Aug 2010 12:51:03 +0200 (CEST) From: Henrik Brix Andersen Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Sun, 1 Aug 2010 12:51:05 +0200 Message-Id: <435720FA-0AF8-49E8-961B-273B624BB7F1@FreeBSD.org> To: ports@freebsd.org Mime-Version: 1.0 (Apple Message framework v1081) X-Mailer: Apple Mail (2.1081) Cc: Alejandro Pulver Subject: p5- ports and LICENSE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Aug 2010 11:06:11 -0000 Hi, I have prepared the patch below for adding the artistic license v1 + v2 = along with GPLv1 to our ports license framework - for use in our perl = p5- ports. Most p5- ports are licensed "under the same terms as Perl [5] itself", = meaning dual licensed under Artistic License v1.0 and GPLv1 [1]. With the patch below, dual licensed p5- ports can define their license = as follows: LICENSE_COMB=3D dual LICENSE=3D ART10 GPLv1 I have included the Artistic License v2.0 since this is what will be = used by perl6. Feedback is most welcome. Index: bsd.licenses.db.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/pcvs/ports/Mk/bsd.licenses.db.mk,v retrieving revision 1.5 diff -u -p -r1.5 bsd.licenses.db.mk --- bsd.licenses.db.mk 22 Jun 2010 19:50:04 -0000 1.5 +++ bsd.licenses.db.mk 1 Aug 2010 10:11:11 -0000 @@ -33,7 +33,7 @@ # _LICENSE_LIST_GROUPS - List of defined license groups # =20 -_LICENSE_LIST=3D ASL BSD BSL CDDL EPL GFDL GPLv2 = GPLv3 LGPL20 LGPL21 LGPL3 MIT MPL +_LICENSE_LIST=3D ART10 ART20 ASL BSD BSL CDDL EPL = GFDL GPLv1 GPLv2 GPLv3 LGPL20 LGPL21 LGPL3 MIT MPL =20 # List of groups (only names must be present) =20 @@ -58,6 +58,12 @@ _LICENSE_PERMS_DEFAULT=3D dist-mirror dist # - General permissions from groups are added to each license, if not = defined. # =20 +_LICENSE_NAME_ART10=3D Artistic License version 1.0 +_LICENSE_GROUPS_ART10=3D OSI + +_LICENSE_NAME_ART20=3D Artistic License version 2.0 +_LICENSE_GROUPS_ART20=3D FSF GPL OSI + _LICENSE_NAME_ASL=3D Apache License _LICENSE_GROUPS_ASL=3D FSF OSI =20 @@ -76,6 +82,9 @@ _LICENSE_GROUPS_EPL=3D FSF OSI _LICENSE_NAME_GFDL=3D GNU Free Documentation License _LICENSE_GROUPS_GFDL=3D FSF =20 +_LICENSE_NAME_GPLv1=3D GNU General Public License version 1 +_LICENSE_GROUPS_GPLv1=3D FSF GPL OSI + _LICENSE_NAME_GPLv2=3D GNU General Public License version 2 _LICENSE_GROUPS_GPLv2=3D FSF GPL OSI =20 [1]: http://dev.perl.org/licenses/ --=20 Henrik Brix Andersen