From owner-svn-ports-all@FreeBSD.ORG Wed Feb 12 23:32:24 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 ED2F6CF4; Wed, 12 Feb 2014 23:32:24 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D812F1A9F; Wed, 12 Feb 2014 23:32:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1CNWOOY048097; Wed, 12 Feb 2014 23:32:24 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1CNWOuE048096; Wed, 12 Feb 2014 23:32:24 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201402122332.s1CNWOuE048096@svn.freebsd.org> From: John Marino Date: Wed, 12 Feb 2014 23:32:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344033 - head/lang/gcc-aux 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.17 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: Wed, 12 Feb 2014 23:32:25 -0000 Author: marino Date: Wed Feb 12 23:32:24 2014 New Revision: 344033 URL: http://svnweb.freebsd.org/changeset/ports/344033 QAT: https://qat.redports.org/buildarchive/r344033/ Log: Define GPLv3RLE license (GPLv3 Runtime Library Exception) The GCC ports either do not have any license defined, or they are defined as GPLv3 which is not completely correct. The runtime libraries in the FSF-issued GCC releases have a standard exception to the GPLv3 license. In order to properly reflect this, the GCC ports can define a "multi" license, GPLv3 and GPLv3RLE, which are both in effect. Concerns PR: ports/185970 Approved by: portmgr (bapt) Modified: head/lang/gcc-aux/Makefile Modified: head/lang/gcc-aux/Makefile ============================================================================== --- head/lang/gcc-aux/Makefile Wed Feb 12 23:26:36 2014 (r344032) +++ head/lang/gcc-aux/Makefile Wed Feb 12 23:32:24 2014 (r344033) @@ -3,7 +3,7 @@ PORTNAME= gcc-aux PORTVERSION= ${SNAPSHOT} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= http://downloads.dragonlace.net/src/:boot \ ${MASTER_SITE_GCC} @@ -13,7 +13,8 @@ DISTFILES= gcc-${GCC_VERSION}.tar.bz2 MAINTAINER= marino@FreeBSD.org COMMENT= Version of GCC ${GCC_BRANCH} with full Ada support -LICENSE= GPLv3 +LICENSE= GPLv3 GPLv3RLE +LICENSE_COMB= multi .include "${.CURDIR}/Makefile.common"