Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Dec 2012 13:12:59 GMT
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/174512: x11/terminator add missing run deps
Message-ID:  <201212171312.qBHDCx6M077975@red.freebsd.org>
Resent-Message-ID: <201212171320.qBHDK0bu032201@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         174512
>Category:       ports
>Synopsis:       x11/terminator add missing run deps
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 17 13:20:00 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Pawel Pekala
>Release:        10.0-CURRENT
>Organization:
>Environment:
FreeBSD blaviken.slowicza.org 10.0-CURRENT FreeBSD 10.0-CURRENT #2: Fri Nov 30 20:03:01 CET 2012     corn@blaviken.slowicza.org:/usr/obj/amd64.amd64/usr/src/sys/BLAVIKEN64  amd64

>Description:
When launching terminator from command line I get this warnings:

[corn:~]> terminator
ConfigBase::load: Unable to open /home/corn/.config/terminator/config ([Errno 2] No such file or directory: '/home/corn/.config/terminator/config')
Warning: python-keybinder is not installed. This means the hide_window shortcut will be unavailable
Unable to bind hide_window key, another instance/window has it.
ActivityWatch plugin unavailable: please install python-notify
PluginRegistry::load_plugins: Importing plugin activitywatch.py failed: 'module' object has no attribute 'AVAILABLE'

Clearly there are 2 missing run dependiences - my patch adds them.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -urN /usr/ports/x11/terminator/Makefile x11/terminator/Makefile
--- /usr/ports/x11/terminator/Makefile	2012-11-17 07:03:19.000000000 +0100
+++ x11/terminator/Makefile	2012-12-17 14:04:52.000000000 +0100
@@ -7,7 +7,7 @@
 
 PORTNAME=	terminator
 PORTVERSION=	0.96
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	x11 python
 MASTER_SITES=	http://launchpadlibrarian.net/80778747/ \
 		http://hur.st/mirror/terminator/
@@ -17,6 +17,10 @@
 
 LICENSE=	GPLv2
 
+RUN_DEPENDS=	${PYTHON_SITELIBDIR}/gtk-2.0/pynotify/_pynotify.so:${PORTSDIR}/devel/py-notify \
+		${PYTHON_SITELIBDIR}/keybinder/_keybinder.so:${PORTSDIR}/x11/keybinder \
+		${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte
+
 OPTIONS_DEFINE=	NLS GCONF
 GCONF_DESC=	Use GNOME Terminal settings
 OPTIONS_DEFAULT=	NLS GCONF
@@ -40,7 +44,6 @@
 PLIST_SUB+=	NLS=""
 .endif
 
-RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte
 .if ${PORT_OPTIONS:MGCONF}
 USE_GNOME+=	pygnome2
 .endif


>Release-Note:
>Audit-Trail:
>Unformatted:



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