Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Sep 2020 07:14:20 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r548063 - head/x11/arandr
Message-ID:  <202009090714.0897EK19052459@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Wed Sep  9 07:14:20 2020
New Revision: 548063
URL: https://svnweb.freebsd.org/changeset/ports/548063

Log:
  Add missing dependency on GTK, otherwise installed package fails to run:
  
    Traceback (most recent call last):
      File "/usr/local/bin/arandr", line 41, in <module>
        from screenlayout.gui import main
      File "/usr/local/lib/python3.7/site-packages/screenlayout/gui.py",
      line 28, in <module>
        gi.require_version('Gtk', '3.0')
      File "/usr/local/lib/python3.7/site-packages/gi/__init__.py",
      line 130, in require_version
        raise ValueError('Namespace %s not available' % namespace)
    ValueError: Namespace Gtk not available
  
  Reported by:	Zeus Panchenko

Modified:
  head/x11/arandr/Makefile

Modified: head/x11/arandr/Makefile
==============================================================================
--- head/x11/arandr/Makefile	Wed Sep  9 05:14:17 2020	(r548062)
+++ head/x11/arandr/Makefile	Wed Sep  9 07:14:20 2020	(r548063)
@@ -3,6 +3,7 @@
 
 PORTNAME=	arandr
 PORTVERSION=	0.1.10
+PORTREVISION=	1
 CATEGORIES=	x11 deskutils
 
 MAINTAINER=	sbz@FreeBSD.org
@@ -17,7 +18,7 @@ RUN_DEPENDS=	xrandr>0:x11/xrandr
 USES=		gettext gnome python
 USE_GITLAB=	yes
 GL_COMMIT=	43faec00c0feca3f00b0acbae048de14f02c6d21
-USE_GNOME=	pygobject3
+USE_GNOME=	gtk30 pygobject3
 USE_PYTHON=	distutils noflavors py3kplist
 
 NO_ARCH=	yes



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009090714.0897EK19052459>