mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
Update agryllcms to 1.7.0.
Add patch to fix the build with gcc 5 [1] Submitted by: marino@ [1] Obtained from: debian [1]
This commit is contained in:
parent
0269d640fc
commit
412dde70e3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=393724
4 changed files with 28 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= argyllcms
|
||||
PORTVERSION= 1.6.3
|
||||
PORTVERSION= 1.7.0
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.argyllcms.com/
|
||||
DISTNAME= Argyll_V${PORTVERSION}_src
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (Argyll_V1.6.3_src.zip) = 188beaa03dd2459403415023f8f8f9aab362bf3062a9822b3622dde6902e4b84
|
||||
SIZE (Argyll_V1.6.3_src.zip) = 10338488
|
||||
SHA256 (Argyll_V1.7.0_src.zip) = dac51cf5d8f6d04bb02f2f5b119fa0e8b773a010e6377116768b082ef018f663
|
||||
SIZE (Argyll_V1.7.0_src.zip) = 13935712
|
||||
|
|
20
graphics/argyllcms/files/patch-gcc5
Normal file
20
graphics/argyllcms/files/patch-gcc5
Normal file
|
@ -0,0 +1,20 @@
|
|||
Description: Fix FTBFS with GCC 5
|
||||
Author: James Cowgill <james410@cowgill.org.uk>
|
||||
Bug-Debian: https://bugs.debian.org/777779
|
||||
Forwarded: no
|
||||
---
|
||||
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
||||
--- icc/icc.h
|
||||
+++ icc/icc.h
|
||||
@@ -100,7 +100,11 @@
|
||||
#define CF64PREC "LL" /* Constant precision specifier */
|
||||
|
||||
#ifndef ATTRIBUTE_NORETURN
|
||||
+#ifdef _MSC_VER
|
||||
# define ATTRIBUTE_NORETURN __declspec(noreturn)
|
||||
+#else
|
||||
+# define ATTRIBUTE_NORETURN __attribute__((noreturn))
|
||||
+#endif
|
||||
#endif
|
||||
|
||||
#else /* !__STDC_VERSION__ */
|
|
@ -21,6 +21,7 @@ bin/icclu
|
|||
bin/illumread
|
||||
bin/invprofcheck
|
||||
bin/kodak2ti3
|
||||
bin/ls2ti3
|
||||
bin/mppcheck
|
||||
bin/mpplu
|
||||
bin/mppprof
|
||||
|
@ -47,9 +48,9 @@ share/argyll/License.txt
|
|||
share/argyll/ref/3dap5k.sp
|
||||
share/argyll/ref/CIE_C.sp
|
||||
share/argyll/ref/CMP_DT_003.cht
|
||||
share/argyll/ref/CMP_Digital_Target-3.cht
|
||||
share/argyll/ref/CMP_Digital_Target-3.cie
|
||||
share/argyll/ref/CMP_Digital_Target-3.ti2
|
||||
share/argyll/ref/CMP_Digital_Target-4.cht
|
||||
share/argyll/ref/CMP_Digital_Target-4.cie
|
||||
share/argyll/ref/CMP_Digital_Target-4.ti2
|
||||
share/argyll/ref/ClayRGB1998.icm
|
||||
share/argyll/ref/ColorChecker.cht
|
||||
share/argyll/ref/ColorChecker.cie
|
||||
|
@ -59,6 +60,7 @@ share/argyll/ref/ColorCheckerDC.ti2
|
|||
share/argyll/ref/ColorCheckerPassport.cht
|
||||
share/argyll/ref/ColorCheckerPassport.cie
|
||||
share/argyll/ref/ColorCheckerSG.cht
|
||||
share/argyll/ref/ColorCheckerSG.ti2
|
||||
share/argyll/ref/D50_0.0.sp
|
||||
share/argyll/ref/D50_0.1.sp
|
||||
share/argyll/ref/D50_0.3.sp
|
||||
|
|
Loading…
Add table
Reference in a new issue