pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/cliqz



Module Name:    pkgsrc
Committed By:   fox
Date:           Sat Jan 25 17:12:17 UTC 2020

Modified Files:
        pkgsrc/www/cliqz: PLIST options.mk

Log Message:
www/cliqz: Adds support for wayland.

Should fix packaging issues due to missing wayland library.

Thanks to nia@


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/cliqz/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/cliqz/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/cliqz/PLIST
diff -u pkgsrc/www/cliqz/PLIST:1.7 pkgsrc/www/cliqz/PLIST:1.8
--- pkgsrc/www/cliqz/PLIST:1.7  Wed Jan 22 10:36:24 2020
+++ pkgsrc/www/cliqz/PLIST      Sat Jan 25 17:12:17 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2020/01/22 10:36:24 fox Exp $
+@comment $NetBSD: PLIST,v 1.8 2020/01/25 17:12:17 fox Exp $
 bin/cliqz
 lib/cliqz/actors/AudioPlaybackChild.jsm
 lib/cliqz/actors/AudioPlaybackParent.jsm
@@ -4683,6 +4683,7 @@ lib/cliqz/libmozavcodec.so
 lib/cliqz/libmozavutil.so
 lib/cliqz/libmozgtk.so
 lib/cliqz/libmozsqlite3.so
+${PLIST.wayland}lib/cliqz/libmozwayland.so
 lib/cliqz/libxul.so
 lib/cliqz/localization/en-US/crashreporter/aboutcrashes.ftl
 lib/cliqz/localization/en-US/security/certificates/certManager.ftl

Index: pkgsrc/www/cliqz/options.mk
diff -u pkgsrc/www/cliqz/options.mk:1.1 pkgsrc/www/cliqz/options.mk:1.2
--- pkgsrc/www/cliqz/options.mk:1.1     Fri Apr 19 14:02:03 2019
+++ pkgsrc/www/cliqz/options.mk Sat Jan 25 17:12:17 2020
@@ -1,11 +1,16 @@
-# $NetBSD: options.mk,v 1.1 2019/04/19 14:02:03 fox Exp $
+# $NetBSD: options.mk,v 1.2 2020/01/25 17:12:17 fox Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.cliqz
 
-PKG_SUPPORTED_OPTIONS= alsa pulseaudio dbus
+PKG_SUPPORTED_OPTIONS= alsa pulseaudio dbus wayland
 
 PKG_SUGGESTED_OPTIONS+=        pulseaudio dbus
 
+.include "../../devel/wayland/platform.mk"
+.if ${PLATFORM_SUPPORTS_WAYLAND} == "yes"
+PKG_SUGGESTED_OPTIONS+= wayland
+.endif
+
 .include "../../mk/bsd.options.mk"
 
 .if !empty(PKG_OPTIONS:Malsa)
@@ -28,3 +33,9 @@ MOZ_CONFIGURE_ARGS+=  "ac_add_options --e
 .else
 MOZ_CONFIGURE_ARGS+=   "ac_add_options --disable-dbus"
 .endif
+
+PLIST_VARS+=           wayland
+.if !empty(PKG_OPTIONS:Mwayland)
+# \todo Instead of using an option, determine if gtk3 was built with wayland.
+PLIST.wayland=         yes
+.endif



Home | Main Index | Thread Index | Old Index