Skip site navigation (1)Skip section navigation (2)
Date:      Fri,  9 Apr 2010 18:00:53 +0200 (CEST)
From:      Klaus T Aehlig <aehlig@linta.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/145595: [patch] www/uzbl fix calling of (optional) python scripts
Message-ID:  <20100409160053.DD71D1CC2B@kleene.linta.de>
Resent-Message-ID: <201004092310.o39NA1dL067672@freefall.freebsd.org>

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

>Number:         145595
>Category:       ports
>Synopsis:       [patch] www/uzbl fix calling of (optional) python scripts
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 09 23:10:01 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Klaus T Aehlig
>Release:        FreeBSD 7.3-STABLE i386
>Organization:
>Environment:
System: FreeBSD kleene.linta.de 7.3-STABLE FreeBSD 7.3-STABLE #11: Sun Mar 28 16:02:20 CEST 2010 aehlig@kleene.linta.de:/usr/obj/usr/src/sys/KLEENE i386
>Description:
	Uzbl comes with a python script that can be used as auth manager. Its #!-line
        is '#!/usr/bin/python' which won't work under FreeBSD, as python usually resides
        under ${PREFIX}. Hence patch to use the standard '#!/usr/bin/evn python'

        Reported by:  Tobias Lott
>How-To-Repeat:
	
>Fix:
	add the following patch in the files directory and bump PORTREVISION

--- patch-examples__data__scripts__auth.py begins here ---
--- examples/data/scripts/auth.py.orig	2010-04-09 13:34:30.000000000 +0200
+++ examples/data/scripts/auth.py	2010-04-09 13:35:05.000000000 +0200
@@ -1,4 +1,5 @@
-#!/usr/bin/python
+#!/usr/bin/env python
+
 
 import gtk
 import sys
--- patch-examples__data__scripts__auth.py ends here ---

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



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