On Thu, May 13, 2021 at 12:38:19PM -0600, Tracey Emery wrote:
> Hello ports and robert,
> 
> I installed a fresh copy of chrome the other day and it complained about
> not finding libtiff. The following adds the run dependency. Fix some
> WANTLIBS while here. Not sure how you want those ordered.
> 
> Ok?
> 
> -- 
> 
> Tracey Emery
> 
> Index: Makefile
> ===================================================================
> RCS file: /cvs/ports/www/chromium/Makefile,v
> retrieving revision 1.565
> diff -u -p -u -r1.565 Makefile
> --- Makefile  11 May 2021 07:23:43 -0000      1.565
> +++ Makefile  13 May 2021 18:35:57 -0000
> @@ -14,6 +14,7 @@ DPB_PROPERTIES=             parallel parallel2
>  COMMENT=             Chromium browser
>  
>  V=                   90.0.4430.212
> +REVISION=            0
>  
>  DISTNAME=            chromium-${V}
>  
> @@ -72,16 +73,18 @@ WANTLIB += drm epoxy fontconfig freetype
>  WANTLIB += gthread-2.0 intl pangoft2-1.0 pcre pixman-1
>  WANTLIB += plc4 plds4 util xcb-dri2 xcb-glx xcb-render xcb-shm
>  WANTLIB += xml2 z
> -WANTLIB += harfbuzz harfbuzz-subset
> +WANTLIB += harfbuzz harfbuzz-subset harfbuzz-gobject
>  WANTLIB += ffi png
>  WANTLIB += iconv lzma
>  WANTLIB += fido2 cbor usbhid crypto
>  WANTLIB += gbm xkbcommon
> +WANTLIB += tiff xshmfence
>  
>  RUN_DEPENDS= devel/xdg-utils \
>               devel/desktop-file-utils \
>               fonts/noto/fonts \
>               graphics/libexif \
> +             graphics/tiff \
>               x11/gtk+3,-guic \
>               x11/gtk+3,-cups
>  BUILD_DEPENDS=       archivers/bzip2 \

sthen@ points out this should be a LIB_DEPENDS and not a RUN_DEPENDS.
Here is the new patch.

Ok?

-- 

Tracey Emery

Index: Makefile
===================================================================
RCS file: /cvs/ports/www/chromium/Makefile,v
retrieving revision 1.565
diff -u -p -u -r1.565 Makefile
--- Makefile    11 May 2021 07:23:43 -0000      1.565
+++ Makefile    13 May 2021 19:22:46 -0000
@@ -14,6 +14,7 @@ DPB_PROPERTIES=               parallel parallel2
 COMMENT=               Chromium browser
 
 V=                     90.0.4430.212
+REVISION=              0
 
 DISTNAME=              chromium-${V}
 
@@ -72,11 +73,12 @@ WANTLIB += drm epoxy fontconfig freetype
 WANTLIB += gthread-2.0 intl pangoft2-1.0 pcre pixman-1
 WANTLIB += plc4 plds4 util xcb-dri2 xcb-glx xcb-render xcb-shm
 WANTLIB += xml2 z
-WANTLIB += harfbuzz harfbuzz-subset
+WANTLIB += harfbuzz harfbuzz-subset harfbuzz-gobject
 WANTLIB += ffi png
 WANTLIB += iconv lzma
 WANTLIB += fido2 cbor usbhid crypto
 WANTLIB += gbm xkbcommon
+WANTLIB += tiff xshmfence
 
 RUN_DEPENDS=   devel/xdg-utils \
                devel/desktop-file-utils \
@@ -97,6 +99,7 @@ BUILD_DEPENDS=        archivers/bzip2 \
                ${MODGCC4_CPPDEP}
 LIB_DEPENDS=   devel/harfbuzz \
                devel/libexecinfo \
+               graphics/tiff \
                security/nss \
                textproc/libxslt \
                x11/gtk+3 \

Reply via email to