svn commit: r506811 - in head/www: . chrome-gnome-shell

Steve Wills swills at FreeBSD.org
Wed Jul 17 18:46:17 UTC 2019


Author: swills
Date: Wed Jul 17 18:46:15 2019
New Revision: 506811
URL: https://svnweb.freebsd.org/changeset/ports/506811

Log:
  www/chrome-gnome-shell: create port
  
  Native host messaging connector that provides integration
  with GNOME Shell and the corresponding extensions repository
  https://extensions.gnome.org
  
  WWW: https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome
  
  PR:		232330
  Submitted by:	Daniel Shafer <daniel at shafer.cc>

Added:
  head/www/chrome-gnome-shell/
  head/www/chrome-gnome-shell/Makefile   (contents, props changed)
  head/www/chrome-gnome-shell/distinfo   (contents, props changed)
  head/www/chrome-gnome-shell/pkg-descr   (contents, props changed)
  head/www/chrome-gnome-shell/pkg-message   (contents, props changed)
  head/www/chrome-gnome-shell/pkg-plist   (contents, props changed)
Modified:
  head/www/Makefile   (contents, props changed)

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Wed Jul 17 17:36:45 2019	(r506810)
+++ head/www/Makefile	Wed Jul 17 18:46:15 2019	(r506811)
@@ -79,6 +79,7 @@
     SUBDIR += cherokee
     SUBDIR += choqok
     SUBDIR += chpasswd
+    SUBDIR += chrome-gnome-shell
     SUBDIR += chromium
     SUBDIR += ckeditor
     SUBDIR += cl-lml

Added: head/www/chrome-gnome-shell/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/chrome-gnome-shell/Makefile	Wed Jul 17 18:46:15 2019	(r506811)
@@ -0,0 +1,36 @@
+# $FreeBSD$
+
+PORTNAME=	chrome-gnome-shell
+DISTVERSION=	10.1
+CATEGORIES=	www gnome
+MASTER_SITES=	GNOME
+
+MAINTAINER=	daniel at shafer.cc
+COMMENT=	GNOME Shell integration for Chrome
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	base64:converters/base64 \
+		gnome-shell>=3.28:x11/gnome-shell \
+		jq:textproc/jq
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
+		gnome-shell>=3.28:x11/gnome-shell \
+		unzip>=6.0:archivers/unzip
+
+USES=		cmake gnome python tar:xz
+USE_GNOME=	pygobject3
+
+CMAKE_OFF=	BUILD_EXTENSION
+CMAKE_ARGS=	-DCMAKE_INSTALL_LIBDIR=lib
+
+INSTALL_TARGET=	install
+
+NO_ARCH=	yes
+INSTALLS_ICONS=	yes
+
+post-patch:
+	@${REINPLACE_CMD} -e '/find_program_ex/s|gsha256sum|gsha256sum sha256|g' ${WRKSRC}/CMakeLists.txt
+
+.include <bsd.port.mk>

Added: head/www/chrome-gnome-shell/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/chrome-gnome-shell/distinfo	Wed Jul 17 18:46:15 2019	(r506811)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1545157534
+SHA256 (chrome-gnome-shell-10.1.tar.xz) = 56ad4fee9078ba62c43d2439f15a93d4b87881fab35900d7f5038d5a95efa438
+SIZE (chrome-gnome-shell-10.1.tar.xz) = 169088

Added: head/www/chrome-gnome-shell/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/chrome-gnome-shell/pkg-descr	Wed Jul 17 18:46:15 2019	(r506811)
@@ -0,0 +1,5 @@
+Native host messaging connector that provides integration
+with GNOME Shell and the corresponding extensions repository
+https://extensions.gnome.org
+
+WWW: https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome

Added: head/www/chrome-gnome-shell/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/chrome-gnome-shell/pkg-message	Wed Jul 17 18:46:15 2019	(r506811)
@@ -0,0 +1,8 @@
+This only installs the native host connector.
+
+You will need to install a browser extension in order to use properly
+
+Chromium: https://chrome.google.com/webstore/detail/gnome-shell-integration/gphhapmejobijbbhgpjhcjognlahblep
+Firefox: https://addons.mozilla.org/en-US/firefox/addon/gnome-shell-integration/
+Opera: https://addons.opera.com/en/extensions/details/gnome-shell-integration/
+Epiphany has built in support.

Added: head/www/chrome-gnome-shell/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/chrome-gnome-shell/pkg-plist	Wed Jul 17 18:46:15 2019	(r506811)
@@ -0,0 +1,9 @@
+bin/chrome-gnome-shell
+etc/chrome/native-messaging-hosts/org.gnome.chrome_gnome_shell.json
+lib/mozilla/native-messaging-hosts/org.gnome.chrome_gnome_shell.json
+%%PYTHON_SITELIBDIR%%/chrome_gnome_shell-0.0.0-py%%PYTHON_VER%%.egg-info
+share/applications/org.gnome.ChromeGnomeShell.desktop
+share/dbus-1/services/org.gnome.ChromeGnomeShell.service
+share/icons/gnome/128x128/apps/org.gnome.ChromeGnomeShell.png
+share/icons/gnome/16x16/apps/org.gnome.ChromeGnomeShell.png
+share/icons/gnome/48x48/apps/org.gnome.ChromeGnomeShell.png


More information about the svn-ports-all mailing list