ports/185119: [PATCH] graphics/libraw: Properly set license when using the demosaic packs

Raphael Kubo da Costa rakuco at FreeBSD.org
Mon Dec 23 01:30:00 UTC 2013


>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 at 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 at 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:


More information about the freebsd-ports-bugs mailing list