Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Dec 2013 17:20:16 -0800 (PST)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        osa@FreeBSD.org
Subject:   ports/185119: [PATCH] graphics/libraw: Properly set license when using the demosaic packs
Message-ID:  <52b78fd0.a9d2700a.44bc.ffff8733@mx.google.com>
Resent-Message-ID: <201312230130.rBN1U0BA092345@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         185119
>Category:       ports
>Synopsis:       [PATCH] graphics/libraw: Properly set license when using the demosaic packs
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 23 01:30:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Raphael Kubo da Costa
>Release:        FreeBSD 11.0-CURRENT amd64
>Organization:
>Environment:
System: FreeBSD orwell 11.0-CURRENT FreeBSD 11.0-CURRENT #4 r256429: Sun Oct 13 19:04:57 EEST
>Description:
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)
>How-To-Repeat:
>Fix:

--- libraw-0.14.7.patch begins here ---
diff -ruN /usr/ports/graphics/libraw/Makefile ./Makefile
--- /usr/ports/graphics/libraw/Makefile	2013-09-20 21:35:44.000000000 +0300
+++ ./Makefile	2013-12-23 03:17:04.000000000 +0200
@@ -1,5 +1,5 @@
 # Created by: Sergey A. Osokin <osa@FreeBSD.org>
-# $FreeBSD: graphics/libraw/Makefile 327733 2013-09-20 18:35:44Z bapt $
+# $FreeBSD: head/graphics/libraw/Makefile 327733 2013-09-20 18:35:44Z bapt $
 
 PORTNAME=	libraw
 PORTVERSION=	0.14.7
@@ -54,7 +54,8 @@
 .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 @@
 .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
--- libraw-0.14.7.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?52b78fd0.a9d2700a.44bc.ffff8733>