diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-03-22 21:39:59 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-03-22 21:39:59 +0800 |
commit | 29ab5cfa17d4da4b67fa35b3e9c8542bb1f97fc3 (patch) | |
tree | 2c028b749daa2656c57978a41c2ce23369b72e6a /multimedia/libav | |
parent | a1adb8a3abc86eb6088039e23ea1b0066da451bf (diff) | |
download | freebsd-ports-gnome-29ab5cfa17d4da4b67fa35b3e9c8542bb1f97fc3.tar.gz freebsd-ports-gnome-29ab5cfa17d4da4b67fa35b3e9c8542bb1f97fc3.tar.zst freebsd-ports-gnome-29ab5cfa17d4da4b67fa35b3e9c8542bb1f97fc3.zip |
multimedia/ffmpeg: chase r405873 by clarifying license
From on WRKSRC/configure:
license="LGPL version 2.1 or later"
if enabled nonfree; then
license="nonfree and unredistributable"
elif enabled gplv3; then
license="GPL version 3 or later"
elif enabled lgplv3; then
license="LGPL version 3 or later"
elif enabled gpl; then
license="GPL version 2 or later"
fi
Diffstat (limited to 'multimedia/libav')
-rw-r--r-- | multimedia/libav/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/multimedia/libav/Makefile b/multimedia/libav/Makefile index d445f6c3746f..738e29dfd269 100644 --- a/multimedia/libav/Makefile +++ b/multimedia/libav/Makefile @@ -182,7 +182,7 @@ AV_NONFREE= true .if ${PORT_OPTIONS:MCDIO} || ${PORT_OPTIONS:MX264} || ${PORT_OPTIONS:MXVID} || ${PORT_OPTIONS:MX11GRAB} CONFIGURE_ARGS+= --enable-gpl .if !defined(AV_NONFREE) -LICENSE= GPLv2 +LICENSE= GPLv2+ AV_ISGPL= true .endif .endif @@ -191,15 +191,15 @@ AV_ISGPL= true CONFIGURE_ARGS+= --enable-version3 .if !defined(AV_NONFREE) .if defined(AV_ISGPL) -LICENSE= GPLv3 +LICENSE= GPLv3+ .else -LICENSE= LGPL3 +LICENSE= LGPL3+ .endif .endif .endif .if !defined(AV_NONFREE) && !defined(AV_ISGPL) && !defined(LICENSE) -LICENSE= LGPL21 +LICENSE= LGPL21+ .endif post-patch: |