From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 15 Apr 2021 12:30:16 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1lWzGK-0007Hr-Im for lore@lore.pengutronix.de; Thu, 15 Apr 2021 12:30:16 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1lWzGJ-0003me-VF; Thu, 15 Apr 2021 12:30:15 +0200 Received: from dude.hi.pengutronix.de ([2001:67c:670:100:1d::7] helo=dude.pengutronix.de.) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1lWzFX-0003mL-76; Thu, 15 Apr 2021 12:29:27 +0200 From: Bastian Krause To: ptxdist@pengutronix.de Date: Thu, 15 Apr 2021 12:29:22 +0200 Message-Id: <20210415102923.21134-1-bst@pengutronix.de> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Subject: [ptxdist] [PATCH 1/2] cog: add option to control cog via D-Bus system bus X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Bastian Krause Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false This allows remote control of cog via D-Bus, e.g. open an URL, reload, navigate in page view history. Signed-off-by: Bastian Krause --- ...Bus-policy-configuration-to-CMAKE_IN.patch | 31 +++++++++++++++++++ patches/cog-0.8.1/series | 4 +++ rules/cog.in | 13 ++++++-- rules/cog.make | 7 ++++- 4 files changed, 52 insertions(+), 3 deletions(-) create mode 100644 patches/cog-0.8.1/0001-CMake-install-D-Bus-policy-configuration-to-CMAKE_IN.patch create mode 100644 patches/cog-0.8.1/series diff --git a/patches/cog-0.8.1/0001-CMake-install-D-Bus-policy-configuration-to-CMAKE_IN.patch b/patches/cog-0.8.1/0001-CMake-install-D-Bus-policy-configuration-to-CMAKE_IN.patch new file mode 100644 index 000000000..9f2a19009 --- /dev/null +++ b/patches/cog-0.8.1/0001-CMake-install-D-Bus-policy-configuration-to-CMAKE_IN.patch @@ -0,0 +1,31 @@ +From: Bastian Krause +Date: Wed, 14 Apr 2021 17:36:24 +0200 +Subject: [PATCH] CMake: install D-Bus policy configuration to + CMAKE_INSTALL_DATADIR + +The D-BUS system bus policy config should reside in +CMAKE_INSTALL_DATADIR rather than in CMAKE_INSTALL_SYSCONFDIR. + +See: + + https://gitlab.freedesktop.org/dbus/dbus/-/blob/ef55a3db0d8f17848f8a579092fb05900cc076f5/bus/CMakeLists.txt#L117 + +Forwarded: https://github.com/Igalia/cog/pull/296 +Signed-off-by: Bastian Krause +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index cb51087359fc..2fcd63845212 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -157,7 +157,7 @@ if (COG_DBUS_SYSTEM_BUS) + configure_file(dbus/policy.conf.in ${COG_DEFAULT_APPID}.conf @ONLY) + install( + FILES ${CMAKE_CURRENT_BINARY_DIR}/${COG_DEFAULT_APPID}.conf +- DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/dbus-1/system.d ++ DESTINATION ${CMAKE_INSTALL_DATADIR}/dbus-1/system.d + COMPONENT "runtime" + ) + diff --git a/patches/cog-0.8.1/series b/patches/cog-0.8.1/series new file mode 100644 index 000000000..14639312e --- /dev/null +++ b/patches/cog-0.8.1/series @@ -0,0 +1,4 @@ +# generated by git-ptx-patches +#tag:base --start-number 1 +0001-CMake-install-D-Bus-policy-configuration-to-CMAKE_IN.patch +# a7cfa1be71dd856d687d8a3863e5a56f - git-ptx-patches magic diff --git a/rules/cog.in b/rules/cog.in index 23b9de3cd..ccc736295 100644 --- a/rules/cog.in +++ b/rules/cog.in @@ -1,12 +1,21 @@ ## SECTION=applications -config COG +menuconfig COG tristate - prompt "cog" + prompt "cog " select HOST_CMAKE select HOST_NINJA select WAYLAND_PROTOCOLS select WPEWEBKIT select WPEBACKEND_FDO + select DBUS if COG_REMOTE_DBUS_SYSTEM_BUS help Cog launcher and webapp container. + +if COG + +config COG_REMOTE_DBUS_SYSTEM_BUS + bool + prompt "Expose remote control interface on system bus" + +endif diff --git a/rules/cog.make b/rules/cog.make index 758b4f7f4..445c76617 100644 --- a/rules/cog.make +++ b/rules/cog.make @@ -38,7 +38,7 @@ COG_CONF_OPT := \ -DCOG_APPID= \ -DCOG_BUILD_PROGRAMS=ON \ -DCOG_DBUS_OWN_USER= \ - -DCOG_DBUS_SYSTEM_BUS=OFF \ + -DCOG_DBUS_SYSTEM_BUS=$(call ptx/onoff,PTXCONF_COG_REMOTE_DBUS_SYSTEM_BUS) \ -DCOG_HOME_URI=https://ptxdist.org/ \ -DCOG_PLATFORM_DRM=OFF \ -DCOG_PLATFORM_FDO=ON \ @@ -64,6 +64,11 @@ $(STATEDIR)/cog.targetinstall: @$(call install_lib, cog, 0, 0, 0644, libcogplatform-fdo) @$(call install_lib, cog, 0, 0, 0644, libcogcore) +ifdef PTXCONF_COG_REMOTE_DBUS_SYSTEM_BUS + @$(call install_copy, cog, 0, 0, 0644, -, \ + /usr/share/dbus-1/system.d/com.igalia.Cog.conf) +endif + @$(call install_finish, cog) @$(call touch) -- 2.29.2 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de