From owner-svn-ports-all@freebsd.org Sat Apr 14 11:51:58 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18E5CF98C57; Sat, 14 Apr 2018 11:51:58 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFB7486C6F; Sat, 14 Apr 2018 11:51:57 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A05D827EA6; Sat, 14 Apr 2018 11:51:57 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3EBpv9q015007; Sat, 14 Apr 2018 11:51:57 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3EBpvtZ015005; Sat, 14 Apr 2018 11:51:57 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201804141151.w3EBpvtZ015005@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Sat, 14 Apr 2018 11:51:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r467308 - branches/2018Q2/www/iridium X-SVN-Group: ports-branches X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: branches/2018Q2/www/iridium X-SVN-Commit-Revision: 467308 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Apr 2018 11:51:58 -0000 Author: cpm Date: Sat Apr 14 11:51:57 2018 New Revision: 467308 URL: https://svnweb.freebsd.org/changeset/ports/467308 Log: MFH: r467307 - Remove duplicate dependency libxml2 - Remove comment about use_system_icu because icu is already unbundled - Update pkg-message for the hanging tabs problem Approved by: ports-secteam (blanket) Modified: branches/2018Q2/www/iridium/Makefile branches/2018Q2/www/iridium/pkg-message Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/www/iridium/Makefile ============================================================================== --- branches/2018Q2/www/iridium/Makefile Sat Apr 14 11:47:07 2018 (r467307) +++ branches/2018Q2/www/iridium/Makefile Sat Apr 14 11:51:57 2018 (r467308) @@ -53,7 +53,6 @@ LIB_DEPENDS= libspeechd.so:accessibility/speech-dispat libgnome-keyring.so:security/libgnome-keyring \ libnss3.so:security/nss \ libexpat.so:textproc/expat2 \ - libxml2.so:textproc/libxml2 \ libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= xdg-open:devel/xdg-utils \ @@ -100,7 +99,7 @@ GN_ARGS+= clang_use_chrome_plugins=false \ use_system_libjpeg=true \ use_system_sqlite=false # chrome has additional patches # TODO: investigate building with these options: -# use_system_icu use_system_harfbuzz use_system_minigbm +# use_system_harfbuzz use_system_minigbm GN_BOOTSTRAP_FLAGS= --no-clean --no-rebuild SUB_FILES= iridium-browser.desktop iridium Modified: branches/2018Q2/www/iridium/pkg-message ============================================================================== --- branches/2018Q2/www/iridium/pkg-message Sat Apr 14 11:47:07 2018 (r467307) +++ branches/2018Q2/www/iridium/pkg-message Sat Apr 14 11:51:57 2018 (r467308) @@ -1,7 +1,8 @@ +--I-- For correct operation, shared memory support has to be enabled in Iridium by performing the following command as root : -sysctl kern.ipc.shm_allow_removed=1 +# sysctl kern.ipc.shm_allow_removed=1 To preserve this setting across reboots, append the following to /etc/sysctl.conf : @@ -9,3 +10,14 @@ to /etc/sysctl.conf : kern.ipc.shm_allow_removed=1 FreeBSD 11.0-R and newer have this set by default. + +--II-- +Iridium has a known problem of hanging tabs. The workaround +for this problem is to mount ~/.cache/iridium as memory-fs. +In order to do this, before you run iridium, please run these +commands once as root for each user who uses iridium (replace +{user}/{group} with your user/group names): + +# [ -d ~{user}/.cache/iridium ] || mkdir ~{user}/.cache/iridium +# echo "md $(echo ~{user})/.cache/iridium mfs rw,late,-w{user}:{group},-s300m 2 0" >> /etc/fstab +# mount ~{user}/.cache/iridium