Bug 185119 - [PATCH] graphics/libraw: Properly set license when using the demosaic packs
Summary: [PATCH] graphics/libraw: Properly set license when using the demosaic packs
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Sergey A. Osokin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-23 01:30 UTC by Raphael Kubo da Costa
Modified: 2014-01-21 20:20 UTC (History)
1 user (show)

See Also:


Attachments
libraw-0.14.7.patch (1003 bytes, patch)
2013-12-23 01:30 UTC, Raphael Kubo da Costa
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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.