Bug 185119

Summary: [PATCH] graphics/libraw: Properly set license when using the demosaic packs
Product: Ports & Packages Reporter: Raphael Kubo da Costa <rakuco>
Component: Individual Port(s)Assignee: Sergey A. Osokin <osa>
Status: Closed FIXED    
Severity: Affects Only Me CC: osa
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
libraw-0.14.7.patch none

Description Raphael Kubo da Costa freebsd_committer freebsd_triage 2013-12-23 01:30:00 UTC
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.

Port maintainer (osa@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-23 01:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->osa

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-01-21 20:15:31 UTC
Author: rakuco
Date: Tue Jan 21 20:15:23 2014
New Revision: 340649
URL: http://svnweb.freebsd.org/changeset/ports/340649
QAT: https://qat.redports.org/buildarchive/r340649/

Log:
  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)

Modified:
  head/graphics/libraw/Makefile

Modified: head/graphics/libraw/Makefile
==============================================================================
--- head/graphics/libraw/Makefile	Tue Jan 21 20:06:33 2014	(r340648)
+++ head/graphics/libraw/Makefile	Tue Jan 21 20:15:23 2014	(r340649)
@@ -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-
 .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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Raphael Kubo da Costa freebsd_committer freebsd_triage 2014-01-21 20:15:53 UTC
State Changed
From-To: open->closed

Committed as r340649.