View | Details | Raw Unified | Return to bug 262363
Collapse All | Expand All

(-)b/graphics/darktable/Makefile (-23 / +30 lines)
Lines 1-8 Link Here
1
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
1
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
2
2
3
PORTNAME=	darktable
3
PORTNAME=	darktable
4
PORTVERSION=	3.6.1
4
PORTVERSION=	3.8.1
5
PORTREVISION=	2
5
PORTREVISION=	0
6
CATEGORIES=	graphics
6
CATEGORIES=	graphics
7
MASTER_SITES=	https://github.com/darktable-org/${PORTNAME}/releases/download/release-${PORTVERSION:C/\.rc/rc/}/
7
MASTER_SITES=	https://github.com/darktable-org/${PORTNAME}/releases/download/release-${PORTVERSION:C/\.rc/rc/}/
8
8
Lines 24-30 LIB_DEPENDS= libcolord-gtk.so:graphics/colord-gtk \ Link Here
24
		libcurl.so:ftp/curl \
24
		libcurl.so:ftp/curl \
25
		libexiv2.so:graphics/exiv2 \
25
		libexiv2.so:graphics/exiv2 \
26
		libharfbuzz.so:print/harfbuzz \
26
		libharfbuzz.so:print/harfbuzz \
27
		libheif.so:graphics/libheif \
27
		libicui18n.so:devel/icu \
28
		libicui18n.so:devel/icu \
29
		libjasper.so:graphics/jasper \
28
		libjson-glib-1.0.so:devel/json-glib \
30
		libjson-glib-1.0.so:devel/json-glib \
29
		liblcms2.so:graphics/lcms2 \
31
		liblcms2.so:graphics/lcms2 \
30
		liblensfun.so:graphics/lensfun \
32
		liblensfun.so:graphics/lensfun \
Lines 38-51 LIB_DEPENDS= libcolord-gtk.so:graphics/colord-gtk \ Link Here
38
# appending an invalid "-Wl,--no-as-needed" to the linker arguments for static
40
# appending an invalid "-Wl,--no-as-needed" to the linker arguments for static
39
# libraries.  Once this regression has been fixed upstream, this can be
41
# libraries.  Once this regression has been fixed upstream, this can be
40
# switched back to USES=cmake, and LTO can be re-enabled.
42
# switched back to USES=cmake, and LTO can be re-enabled.
41
USES=		cmake:noninja compiler:c++14-lang desktop-file-utils gl gnome jpeg \
43
USES=		cmake compiler:c++14-lang desktop-file-utils gl gnome jpeg \
42
		perl5 pkgconfig shebangfix sqlite tar:xz xorg
44
		perl5 pkgconfig sdl shebangfix sqlite tar:xz xorg
43
OPTIONS_EXCLUDE=LTO
45
OPTIONS_EXCLUDE=LTO
44
USE_GL=		glu
46
USE_GL=		gl
45
USE_GNOME=	cairo gtk30 intltool librsvg2 libxml2
47
USE_GNOME=	cairo gtk30 intltool librsvg2 libxml2
46
USE_LDCONFIG=	${PREFIX}/lib/${PORTNAME}
48
USE_LDCONFIG=	${PREFIX}/lib/${PORTNAME}
49
USE_SDL=	sdl2
47
USE_XORG=	ice sm x11 xext xrandr
50
USE_XORG=	ice sm x11 xext xrandr
48
51
52
CONFLICTS_BUILD=	darktable38
49
CONFLICTS_INSTALL=	darktable38
53
CONFLICTS_INSTALL=	darktable38
50
54
51
SHEBANG_FILES=	tools/*.sh
55
SHEBANG_FILES=	tools/*.sh
Lines 59-121 LDFLAGS+= -L${LOCALBASE}/lib Link Here
59
63
60
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:C/\.rc/~rc/}
64
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:C/\.rc/~rc/}
61
65
62
OPTIONS_DEFINE=		DOCS GEO GPHOTO GMIC GRAPHMAGICK LIBAVIF LIBSECRET LTO \
66
OPTIONS_DEFINE=		DOCS GEO GPHOTO GMIC GRAPHMAGICK AVIF LIBSECRET LTO \
63
			LUA NLS OPENEXR OPENJPEG PRINT TOOLS WEBP
67
			LUA NLS OPENEXR OPENJPEG PRINT TOOLS WEBP
64
OPTIONS_DEFAULT=	GEO GPHOTO LUA OPENEXR OPENJPEG PRINT WEBP
68
OPTIONS_DEFAULT=	AVIF GEO GPHOTO HEIF LUA OPENEXR OPENJPEG PRINT WEBP
65
OPTIONS_SUB=		yes
69
OPTIONS_SUB=		yes
66
70
71
AVIF_DESC=		Support encoding and decoding .avif files
67
GEO_DESC=		Support geotagging
72
GEO_DESC=		Support geotagging
68
GMIC_DESC=		Support G'Mic-compressed LUT in lut3d
73
GMIC_DESC=		Support G'Mic-compressed LUT in lut3d
69
LIBAVIF_DESC=		Support encoding and decoding .avif files
70
LIBSECRET_DESC=		Support libsecret as password backend
74
LIBSECRET_DESC=		Support libsecret as password backend
71
75
72
GEO_LIB_DEPENDS=	libosmgpsmap-1.0.so:x11-toolkits/osm-gps-map
76
GEO_LIB_DEPENDS=	libosmgpsmap-1.0.so:x11-toolkits/osm-gps-map
73
GEO_CMAKE_OFF=		-DUSE_MAP:BOOL=OFF
77
GEO_CMAKE_BOOL=		USE_MAP
74
78
75
GMIC_LIB_DEPENDS=	libgmic.so:graphics/gmic
79
GMIC_LIB_DEPENDS=	libgmic.so:graphics/gmic
76
GMIC_CMAKE_OFF=		-DUSE_GMIC:BOOL=OFF
80
GMIC_CMAKE_BOOL=	USE_GMIC
77
81
78
GPHOTO_LIB_DEPENDS=	libgphoto2.so:graphics/libgphoto2
82
GPHOTO_LIB_DEPENDS=	libgphoto2.so:graphics/libgphoto2
79
GPHOTO_CMAKE_OFF=	-DUSE_CAMERA_SUPPORT:BOOL=OFF
83
GPHOTO_CMAKE_BOOL=	USE_CAMERA_SUPPORT
80
84
81
GRAPHMAGICK_LIB_DEPENDS=libGraphicsMagick.so:graphics/GraphicsMagick
85
GRAPHMAGICK_LIB_DEPENDS=libGraphicsMagick.so:graphics/GraphicsMagick
82
GRAPHMAGICK_CMAKE_OFF=	-DUSE_GRAPHICSMAGICK:BOOL=OFF
86
GRAPHMAGICK_CMAKE_BOOL=	USE_GRAPHICSMAGICK
83
87
84
LIBAVIF_LIB_DEPENDS=	libavif.so:graphics/libavif
88
AVIF_LIB_DEPENDS=	libavif.so:graphics/libavif
85
LIBAVIF_CMAKE_OFF=	-DUSE_LIBAVIF:BOOL=OFF
89
AVIF_CMAKE_BOOL=	USE_AVIF
86
90
87
LIBSECRET_LIB_DEPENDS=	libsecret-1.so:security/libsecret
91
LIBSECRET_LIB_DEPENDS=	libsecret-1.so:security/libsecret
88
LIBSECRET_CMAKE_OFF=	-DUSE_LIBSECRET:BOOL=OFF
92
LIBSECRET_CMAKE_BOOL=	USE_LIBSECRET
89
93
90
LTO_CMAKE_BOOL=		RAWSPEED_ENABLE_LTO
94
LTO_CMAKE_BOOL=		RAWSPEED_ENABLE_LTO
91
95
92
LUA_USES=		lua:53
96
LUA_USES=		lua:54
93
LUA_CMAKE_OFF=		-DUSE_LUA:BOOL=OFF
97
LUA_CMAKE_BOOL=		USE_LUA
94
98
95
# FIXME: Even with NLS turned off, darktable(1) is still linked to
99
# FIXME: Even with NLS turned off, darktable(1) is still linked to
96
# libintl.so.
100
# libintl.so.
97
NLS_USES=		gettext
101
NLS_USES=		gettext
98
NLS_USES_OFF=		gettext-runtime
102
NLS_USES_OFF=		gettext-runtime
99
NLS_CMAKE_OFF=		-DUSE_NLS:BOOL=OFF
103
NLS_CMAKE_BOOL=		USE_NLS
100
NLS_LDFLAGS=		-L${LOCALBASE}/lib -lintl
104
NLS_LDFLAGS=		-L${LOCALBASE}/lib -lintl
101
105
102
OPENEXR_LIB_DEPENDS=	libOpenEXR.so:graphics/openexr \
106
OPENEXR_LIB_DEPENDS=	libOpenEXR.so:graphics/openexr \
103
			libImath.so:math/Imath
107
			libImath.so:math/Imath
104
OPENEXR_CFLAGS=		-I${LOCALBASE}/include/Imath
108
OPENEXR_CFLAGS=		-I${LOCALBASE}/include/Imath
105
OPENEXR_CMAKE_OFF=	-DUSE_OPENEXR:BOOL=OFF
109
OPENEXR_CMAKE_BOOL=	USE_OPENEXR
106
110
107
OPENJPEG_LIB_DEPENDS=	libopenjp2.so:graphics/openjpeg
111
OPENJPEG_LIB_DEPENDS=	libopenjp2.so:graphics/openjpeg
108
OPENJPEG_CMAKE_OFF=	-DUSE_OPENJPEG:BOOL=OFF
112
OPENJPEG_CMAKE_BOOL=	USE_OPENJPEG
109
113
110
PRINT_LIB_DEPENDS=	libcups.so:print/cups
114
PRINT_LIB_DEPENDS=	libcups.so:print/cups
111
PRINT_CMAKE_OFF=	-DBUILD_PRINT:BOOL=OFF
115
PRINT_CMAKE_BOOL=	BUILD_PRINT
112
116
113
TOOLS_DESC=		Install additional scripts
117
TOOLS_DESC=		Install additional scripts
114
TOOLS_BUILD_DEPENDS=	exiftool:graphics/p5-Image-ExifTool
118
TOOLS_BUILD_DEPENDS=	exiftool:graphics/p5-Image-ExifTool
115
TOOLS_RUN_DEPENDS=	exiftool:graphics/p5-Image-ExifTool
119
TOOLS_RUN_DEPENDS=	exiftool:graphics/p5-Image-ExifTool
116
120
117
WEBP_LIB_DEPENDS=	libwebp.so:graphics/webp
121
WEBP_LIB_DEPENDS=	libwebp.so:graphics/webp
118
WEBP_CMAKE_OFF=		-DUSE_WEBP:BOOL=OFF
122
WEBP_CMAKE_BOOL=	USE_WEBP
119
123
120
.include <bsd.port.options.mk>
124
.include <bsd.port.options.mk>
121
125
Lines 130-140 PLIST_SUB+= NO_OPENCL="" Link Here
130
.include <bsd.port.pre.mk>
134
.include <bsd.port.pre.mk>
131
135
132
.if ${CHOSEN_COMPILER_TYPE} == clang && ${OPSYS} == FreeBSD || ${ARCH} == "i386"
136
.if ${CHOSEN_COMPILER_TYPE} == clang && ${OPSYS} == FreeBSD || ${ARCH} == "i386"
133
LLVM_DEFAULT=	12
137
LLVM_DEFAULT=	13
134
BUILD_DEPENDS+=	clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT}
138
BUILD_DEPENDS+=	clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT}
135
CC=		${LOCALBASE}/bin/clang${LLVM_DEFAULT}
139
CC=		${LOCALBASE}/bin/clang${LLVM_DEFAULT}
136
CPP=		${LOCALBASE}/bin/clang-cpp${LLVM_DEFAULT}
140
CPP=		${LOCALBASE}/bin/clang-cpp${LLVM_DEFAULT}
137
CXX=		${LOCALBASE}/bin/clang++${LLVM_DEFAULT}
141
CXX=		${LOCALBASE}/bin/clang++${LLVM_DEFAULT}
142
LD=		${LOCALBASE}/bin/ld.lld${LLVM_DEFAULT}
143
BINARY_ALIAS+=	ld.lld=${LOCALBASE}/bin/ld.lld${LLVM_DEFAULT}
144
BINARY_ALIAS+=	llvm-objcopy=${LOCALBASE}/bin/llvm-objcopy${LLVM_DEFAULT}
138
.endif
145
.endif
139
146
140
# work around CMAKE/CCACHE flaw (cmake stomps over ccache)
147
# work around CMAKE/CCACHE flaw (cmake stomps over ccache)
(-)b/graphics/darktable/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1632203430
1
TIMESTAMP = 1644861000
2
SHA256 (darktable-3.6.1.tar.xz) = a2bfc7c103b824945457a9bfed9e52f007fa1d030f9dbcb3ff0327851be42d14
2
SHA256 (darktable-3.8.1.tar.xz) = 81ee069054dbde580749b2d3a81cda01b7d169a82ba48731823f3ea560b2bef6
3
SIZE (darktable-3.6.1.tar.xz) = 4685928
3
SIZE (darktable-3.8.1.tar.xz) = 5514756
(-)a/graphics/darktable/files/patch-src_external_OpenCL_CL_cl__platform.h (-13 lines)
Removed Link Here
1
--- src/external/OpenCL/CL/cl_platform.h.orig	2020-11-17 15:04:41 UTC
2
+++ src/external/OpenCL/CL/cl_platform.h
3
@@ -355,7 +355,9 @@ typedef unsigned int cl_GLenum;
4
 
5
 /* Define basic vector types */
6
 #if defined( __VEC__ )
7
-   #include <altivec.h>   /* may be omitted depending on compiler. AltiVec spec provides no way to detect whether the header is required. */
8
+   #if !defined(__clang__)
9
+      #include <altivec.h>   /* may be omitted depending on compiler. AltiVec spec provides no way to detect whether the header is required. */
10
+   #endif
11
    typedef __vector unsigned char     __cl_uchar16;
12
    typedef __vector signed char       __cl_char16;
13
    typedef __vector unsigned short    __cl_ushort8;
(-)b/graphics/darktable/pkg-plist (-5 / +11 lines)
Lines 6-13 bin/darktable-cmstest Link Here
6
bin/darktable-generate-cache
6
bin/darktable-generate-cache
7
bin/darktable-rs-identify
7
bin/darktable-rs-identify
8
lib/darktable/libdarktable.so
8
lib/darktable/libdarktable.so
9
%%AVIF%%lib/darktable/plugins/imageio/format/libavif.so
9
lib/darktable/plugins/imageio/format/libcopy.so
10
lib/darktable/plugins/imageio/format/libcopy.so
10
%%LIBAVIF%%lib/darktable/plugins/imageio/format/libavif.so
11
%%OPENEXR%%lib/darktable/plugins/imageio/format/libexr.so
11
%%OPENEXR%%lib/darktable/plugins/imageio/format/libexr.so
12
%%OPENJPEG%%lib/darktable/plugins/imageio/format/libj2k.so
12
%%OPENJPEG%%lib/darktable/plugins/imageio/format/libj2k.so
13
lib/darktable/plugins/imageio/format/libjpeg.so
13
lib/darktable/plugins/imageio/format/libjpeg.so
Lines 30-35 lib/darktable/plugins/libbasicadj.so Link Here
30
lib/darktable/plugins/libbilat.so
30
lib/darktable/plugins/libbilat.so
31
lib/darktable/plugins/libbilateral.so
31
lib/darktable/plugins/libbilateral.so
32
lib/darktable/plugins/libbloom.so
32
lib/darktable/plugins/libbloom.so
33
lib/darktable/plugins/libblurs.so
33
lib/darktable/plugins/libborders.so
34
lib/darktable/plugins/libborders.so
34
lib/darktable/plugins/libcacorrect.so
35
lib/darktable/plugins/libcacorrect.so
35
lib/darktable/plugins/libcacorrectrgb.so
36
lib/darktable/plugins/libcacorrectrgb.so
Lines 55-60 lib/darktable/plugins/libcrop.so Link Here
55
lib/darktable/plugins/libdefringe.so
56
lib/darktable/plugins/libdefringe.so
56
lib/darktable/plugins/libdemosaic.so
57
lib/darktable/plugins/libdemosaic.so
57
lib/darktable/plugins/libdenoiseprofile.so
58
lib/darktable/plugins/libdenoiseprofile.so
59
lib/darktable/plugins/libdiffuse.so
58
lib/darktable/plugins/libdither.so
60
lib/darktable/plugins/libdither.so
59
lib/darktable/plugins/libequalizer.so
61
lib/darktable/plugins/libequalizer.so
60
lib/darktable/plugins/libexposure.so
62
lib/darktable/plugins/libexposure.so
Lines 117-122 lib/darktable/plugins/lighttable/libduplicate.so Link Here
117
lib/darktable/plugins/lighttable/libexport.so
119
lib/darktable/plugins/lighttable/libexport.so
118
lib/darktable/plugins/lighttable/libfilmstrip.so
120
lib/darktable/plugins/lighttable/libfilmstrip.so
119
lib/darktable/plugins/lighttable/libfilter.so
121
lib/darktable/plugins/lighttable/libfilter.so
122
lib/darktable/plugins/lighttable/libgamepad.so
120
%%GEO%%lib/darktable/plugins/lighttable/libgeotagging.so
123
%%GEO%%lib/darktable/plugins/lighttable/libgeotagging.so
121
lib/darktable/plugins/lighttable/libglobal_toolbox.so
124
lib/darktable/plugins/lighttable/libglobal_toolbox.so
122
lib/darktable/plugins/lighttable/libhinter.so
125
lib/darktable/plugins/lighttable/libhinter.so
Lines 186-196 share/applications/darktable.desktop Link Here
186
%%NO_OPENCL%%%%DATADIR%%/kernels/bilateral.cl
189
%%NO_OPENCL%%%%DATADIR%%/kernels/bilateral.cl
187
%%NO_OPENCL%%%%DATADIR%%/kernels/blendop.cl
190
%%NO_OPENCL%%%%DATADIR%%/kernels/blendop.cl
188
%%NO_OPENCL%%%%DATADIR%%/kernels/bloom.cl
191
%%NO_OPENCL%%%%DATADIR%%/kernels/bloom.cl
192
%%NO_OPENCL%%%%DATADIR%%/kernels/blurs.cl
189
%%NO_OPENCL%%%%DATADIR%%/kernels/channelmixer.cl
193
%%NO_OPENCL%%%%DATADIR%%/kernels/channelmixer.cl
194
%%NO_OPENCL%%%%DATADIR%%/kernels/color_conversion.h
190
%%NO_OPENCL%%%%DATADIR%%/kernels/colorreconstruction.cl
195
%%NO_OPENCL%%%%DATADIR%%/kernels/colorreconstruction.cl
191
%%NO_OPENCL%%%%DATADIR%%/kernels/colorspace.h
196
%%NO_OPENCL%%%%DATADIR%%/kernels/colorspace.h
192
%%NO_OPENCL%%%%DATADIR%%/kernels/colorspaces.cl
197
%%NO_OPENCL%%%%DATADIR%%/kernels/colorspaces.cl
193
%%NO_OPENCL%%%%DATADIR%%/kernels/color_conversion.h
194
%%NO_OPENCL%%%%DATADIR%%/kernels/common.h
198
%%NO_OPENCL%%%%DATADIR%%/kernels/common.h
195
%%NO_OPENCL%%%%DATADIR%%/kernels/demosaic_markesteijn.cl
199
%%NO_OPENCL%%%%DATADIR%%/kernels/demosaic_markesteijn.cl
196
%%NO_OPENCL%%%%DATADIR%%/kernels/demosaic_other.cl
200
%%NO_OPENCL%%%%DATADIR%%/kernels/demosaic_other.cl
Lines 198-203 share/applications/darktable.desktop Link Here
198
%%NO_OPENCL%%%%DATADIR%%/kernels/demosaic_rcd.cl
202
%%NO_OPENCL%%%%DATADIR%%/kernels/demosaic_rcd.cl
199
%%NO_OPENCL%%%%DATADIR%%/kernels/demosaic_vng.cl
203
%%NO_OPENCL%%%%DATADIR%%/kernels/demosaic_vng.cl
200
%%NO_OPENCL%%%%DATADIR%%/kernels/denoiseprofile.cl
204
%%NO_OPENCL%%%%DATADIR%%/kernels/denoiseprofile.cl
205
%%NO_OPENCL%%%%DATADIR%%/kernels/diffuse.cl
201
%%NO_OPENCL%%%%DATADIR%%/kernels/dwt.cl
206
%%NO_OPENCL%%%%DATADIR%%/kernels/dwt.cl
202
%%NO_OPENCL%%%%DATADIR%%/kernels/extended.cl
207
%%NO_OPENCL%%%%DATADIR%%/kernels/extended.cl
203
%%NO_OPENCL%%%%DATADIR%%/kernels/filmic.cl
208
%%NO_OPENCL%%%%DATADIR%%/kernels/filmic.cl
Lines 389-395 share/applications/darktable.desktop Link Here
389
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
394
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
390
%%PORTDOCS%%%%DOCSDIR%%/README.md
395
%%PORTDOCS%%%%DOCSDIR%%/README.md
391
%%PORTDOCS%%%%DOCSDIR%%/TRANSLATORS.md
396
%%PORTDOCS%%%%DOCSDIR%%/TRANSLATORS.md
392
%%PORTDOCS%%%%DOCSDIR%%/darktablerc.html
393
share/icons/hicolor/16x16/apps/darktable.png
397
share/icons/hicolor/16x16/apps/darktable.png
394
share/icons/hicolor/22x22/apps/darktable.png
398
share/icons/hicolor/22x22/apps/darktable.png
395
share/icons/hicolor/24x24/apps/darktable.png
399
share/icons/hicolor/24x24/apps/darktable.png
Lines 401-417 share/icons/hicolor/scalable/apps/darktable-1.svg Link Here
401
share/icons/hicolor/scalable/apps/darktable-2.svg
405
share/icons/hicolor/scalable/apps/darktable-2.svg
402
share/icons/hicolor/scalable/apps/darktable-3.svg
406
share/icons/hicolor/scalable/apps/darktable-3.svg
403
share/icons/hicolor/scalable/apps/darktable.svg
407
share/icons/hicolor/scalable/apps/darktable.svg
404
%%NLS%%share/locale/af/LC_MESSAGES/darktable.mo
405
%%NLS%%share/locale/de/LC_MESSAGES/darktable.mo
408
%%NLS%%share/locale/de/LC_MESSAGES/darktable.mo
406
%%NLS%%share/locale/eo/LC_MESSAGES/darktable.mo
409
%%NLS%%share/locale/eo/LC_MESSAGES/darktable.mo
407
%%NLS%%share/locale/es/LC_MESSAGES/darktable.mo
410
%%NLS%%share/locale/es/LC_MESSAGES/darktable.mo
411
%%NLS%%share/locale/fi/LC_MESSAGES/darktable.mo
408
%%NLS%%share/locale/fr/LC_MESSAGES/darktable.mo
412
%%NLS%%share/locale/fr/LC_MESSAGES/darktable.mo
409
%%NLS%%share/locale/he/LC_MESSAGES/darktable.mo
413
%%NLS%%share/locale/he/LC_MESSAGES/darktable.mo
410
%%NLS%%share/locale/hu/LC_MESSAGES/darktable.mo
414
%%NLS%%share/locale/hu/LC_MESSAGES/darktable.mo
411
%%NLS%%share/locale/it/LC_MESSAGES/darktable.mo
415
%%NLS%%share/locale/it/LC_MESSAGES/darktable.mo
416
%%NLS%%share/locale/ja/LC_MESSAGES/darktable.mo
412
%%NLS%%share/locale/nl/LC_MESSAGES/darktable.mo
417
%%NLS%%share/locale/nl/LC_MESSAGES/darktable.mo
418
%%NLS%%share/locale/pl/LC_MESSAGES/darktable.mo
413
%%NLS%%share/locale/pt_BR/LC_MESSAGES/darktable.mo
419
%%NLS%%share/locale/pt_BR/LC_MESSAGES/darktable.mo
414
%%NLS%%share/locale/ru/LC_MESSAGES/darktable.mo
415
%%NLS%%share/locale/sl/LC_MESSAGES/darktable.mo
420
%%NLS%%share/locale/sl/LC_MESSAGES/darktable.mo
416
%%NLS%%share/locale/uk/LC_MESSAGES/darktable.mo
421
%%NLS%%share/locale/uk/LC_MESSAGES/darktable.mo
422
%%NLS%%share/locale/zh_CN/LC_MESSAGES/darktable.mo
417
share/metainfo/darktable.appdata.xml
423
share/metainfo/darktable.appdata.xml
(-)b/graphics/darktable38/Makefile (-2 / +2 lines)
Lines 7-13 CATEGORIES= graphics Link Here
7
MASTER_SITES=	https://github.com/darktable-org/${PORTNAME}/releases/download/release-${PORTVERSION:C/\.rc/rc/}/
7
MASTER_SITES=	https://github.com/darktable-org/${PORTNAME}/releases/download/release-${PORTVERSION:C/\.rc/rc/}/
8
PKGNAMESUFFIX=	38
8
PKGNAMESUFFIX=	38
9
9
10
DEPRECATED=	to be folded back to graphics/darktable within 2022Q1
10
DEPRECATED=	use graphics/darktable, which has upgraded to the same version
11
EXPIRATION_DATE=2022-03-31
11
EXPIRATION_DATE=2022-03-31
12
12
13
MAINTAINER=	mandree@FreeBSD.org
13
MAINTAINER=	mandree@FreeBSD.org
Lines 55-60 USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} Link Here
55
USE_SDL=	sdl2
55
USE_SDL=	sdl2
56
USE_XORG=	ice sm x11 xext xrandr
56
USE_XORG=	ice sm x11 xext xrandr
57
57
58
CONFLICTS_BUILD=	darktable
58
CONFLICTS_INSTALL=	darktable
59
CONFLICTS_INSTALL=	darktable
59
60
60
SHEBANG_FILES=	tools/*.sh
61
SHEBANG_FILES=	tools/*.sh
61
- 

Return to bug 262363