aboutsummaryrefslogtreecommitdiff
path: root/graphics/libraw
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2014-01-21 20:15:23 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2014-01-21 20:15:23 +0000
commit69104267730f4de0b14265eb4c85c111768b74ba (patch)
treef6eb689477d8323853d041479ecef96623007d5b /graphics/libraw
parent2a6c55b1d26af8cf8fc9c50fedb7dd8c0a0b8d4b (diff)
downloadports-69104267730f4de0b14265eb4c85c111768b74ba.tar.gz
ports-69104267730f4de0b14265eb4c85c111768b74ba.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)
Notes
Notes: svn path=/head/; revision=340649
Diffstat (limited to 'graphics/libraw')
-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