View | Details | Raw Unified | Return to bug 232330 | Differences between
and this patch

Collapse All | Expand All

(-)www/chrome-gnome-shell/Makefile (+33 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	chrome-gnome-shell
4
PORTVERSION=	10.1
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=     www gnome
7
8
MAINTAINER=	daniel@shafer.cc
9
COMMENT=	GNOME Shell integration for Chrome
10
11
LICENSE=	GPLv3
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
BUILD_DEPENDS=	base64:converters/base64 \
15
		jq:textproc/jq
16
17
RUN_DEPENDS=	gnome-shell>=3.28:x11/gnome-shell \
18
		${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
19
		unzip>=6.0:archivers/unzip
20
21
USES=           cmake:outsource gnome python:2.7+
22
GH_ACCOUNT=     Gnome
23
USE_GNOME=      pygobject3
24
USE_GITHUB=     yes
25
26
CMAKE_OFF=	BUILD_EXTENSION
27
CMAKE_ARGS=	-DCMAKE_INSTALL_LIBDIR=lib
28
29
INSTALL_TARGET=         install
30
31
NO_ARCH=        yes
32
.include <bsd.port.options.mk>
33
.include <bsd.port.mk>
(-)www/chrome-gnome-shell/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1539707413
2
SHA256 (Gnome-chrome-gnome-shell-v10.1_GH0.tar.gz) = d93e83c7e7193e386df4acad6ea4c86ea9abc75bbe67539bbc9310607ea6aeb5
3
SIZE (Gnome-chrome-gnome-shell-v10.1_GH0.tar.gz) = 210392
(-)www/chrome-gnome-shell/files/patch-CMakeLists.txt (+11 lines)
Line 0 Link Here
1
--- CMakeLists.txt.orig	2018-10-16 17:17:20 UTC
2
+++ CMakeLists.txt
3
@@ -89,7 +89,7 @@ endif(BUILD_MESSAGES AND NOT DEFINED GET
4
 
5
 if(BUILD_EXTENSION OR BUILD_CONNECTOR)
6
 	find_program_ex(base64 gbase64 FATAL_ERROR)
7
-	find_program_ex(sha256sum gsha256sum FATAL_ERROR)
8
+	find_program_ex(sha256sum gsha256sum sha256 FATAL_ERROR)
9
 	find_program_ex(head ghead FATAL_ERROR)
10
 	find_program_ex(tr gtr FATAL_ERROR)
11
 	find_program_ex(jq FATAL_ERROR)
(-)www/chrome-gnome-shell/pkg-descr (+5 lines)
Line 0 Link Here
1
Native host messaging connector that provides integration 
2
with GNOME Shell and the corresponding extensions repository 
3
https://extensions.gnome.org 
4
5
WWW: https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome
(-)www/chrome-gnome-shell/pkg-message (+8 lines)
Line 0 Link Here
1
This only installs the native host connector.
2
3
You will need to install a browser extension in order to use properly
4
5
Chromium: https://chrome.google.com/webstore/detail/gnome-shell-integration/gphhapmejobijbbhgpjhcjognlahblep
6
Firefox: https://addons.mozilla.org/en-US/firefox/addon/gnome-shell-integration/
7
Opera: https://addons.opera.com/en/extensions/details/gnome-shell-integration/
8
Epiphany has built in support.
(-)www/chrome-gnome-shell/pkg-plist (+10 lines)
Line 0 Link Here
1
bin/chrome-gnome-shell
2
etc/chrome/native-messaging-hosts/org.gnome.chrome_gnome_shell.json
3
lib/mozilla/native-messaging-hosts/org.gnome.chrome_gnome_shell.json
4
%%PYTHON_SITELIBDIR%%/chrome_gnome_shell-0.0.0-py%%PYTHON_VER%%.egg-info
5
share/applications/org.gnome.ChromeGnomeShell.desktop
6
share/dbus-1/services/org.gnome.ChromeGnomeShell.service
7
share/icons/gnome/128x128/apps/org.gnome.ChromeGnomeShell.png
8
share/icons/gnome/16x16/apps/org.gnome.ChromeGnomeShell.png
9
share/icons/gnome/48x48/apps/org.gnome.ChromeGnomeShell.png
10

Return to bug 232330