aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorrakuco <rakuco@FreeBSD.org>2014-01-22 04:15:23 +0800
committerrakuco <rakuco@FreeBSD.org>2014-01-22 04:15:23 +0800
commit877a71f062649f1a92551a1bcd01e6d361180b15 (patch)
treef6eb689477d8323853d041479ecef96623007d5b /graphics
parent3a282d2f9c6eb990a187302087da3c04fe96df00 (diff)
downloadfreebsd-ports-gnome-877a71f062649f1a92551a1bcd01e6d361180b15.tar.gz
freebsd-ports-gnome-877a71f062649f1a92551a1bcd01e6d361180b15.tar.zst
freebsd-ports-gnome-877a71f062649f1a92551a1bcd01e6d361180b15.zip
Properly set license when using the demosaic packs.
According to the port's README.demosaic-packs, when the demosaic packs are used the software must be licensed under either the GPLv2 or the GPLv3, depending on the packs being used (if both packs are used, the GPLv3 should take precedence). This patch changes the way LICENSE is set when those options are set: the new licenses are exclusive with the others. PR: ports/185119 Submitted by: rakuco@ Approved by: maintainer timeout (29 days)
Diffstat (limited to 'graphics')
-rw-r--r--graphics/libraw/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/libraw/Makefile b/graphics/libraw/Makefile
index d43c9a42dc95..a429ad84d308 100644
--- a/graphics/libraw/Makefile
+++ b/graphics/libraw/Makefile
@@ -54,7 +54,8 @@ CONFIGURE_ARGS+=--disable-lcms
.endif
.if ${PORT_OPTIONS:MDEMOSAIC_PACK_GPL2}
-LICENSE+= GPLv2
+LICENSE= GPLv2
+LICENSE_COMB= single
DISTFILES+= LibRaw-demosaic-pack-GPL2-${PORTVERSION}.tar.gz
CONFIGURE_ARGS+=--enable-demosaic-pack-gpl2=../LibRaw-demosaic-pack-GPL2-${PORTVERSION}
.else
@@ -62,7 +63,8 @@ CONFIGURE_ARGS+=--disable-demosaic-pack-gpl2
.endif
.if ${PORT_OPTIONS:MDEMOSAIC_PACK_GPL3}
-LICENSE+= GPLv3
+LICENSE= GPLv3
+LICENSE_COMB= single
DISTFILES+= LibRaw-demosaic-pack-GPL3-${PORTVERSION}.tar.gz
CONFIGURE_ARGS+=--enable-demosaic-pack-gpl3=../LibRaw-demosaic-pack-GPL3-${PORTVERSION}
.else