diff options
author | marino <marino@FreeBSD.org> | 2014-02-13 07:32:24 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-02-13 07:32:24 +0800 |
commit | aadc2b2ab39ce17eae5328f2e957fa5ac5f1ebaf (patch) | |
tree | 897913d50788166a3e2568d8d4293378f6fb781c /lang | |
parent | 92a8825a93e3ec2de1b318b12f2731d95a6a0263 (diff) | |
download | freebsd-ports-gnome-aadc2b2ab39ce17eae5328f2e957fa5ac5f1ebaf.tar.gz freebsd-ports-gnome-aadc2b2ab39ce17eae5328f2e957fa5ac5f1ebaf.tar.zst freebsd-ports-gnome-aadc2b2ab39ce17eae5328f2e957fa5ac5f1ebaf.zip |
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)
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gcc-aux/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/gcc-aux/Makefile b/lang/gcc-aux/Makefile index 55cf61b7553b..8c9b0d253067 100644 --- a/lang/gcc-aux/Makefile +++ b/lang/gcc-aux/Makefile @@ -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" |