From f09b0ce404160d570380506fe314f326a9412d33 Mon Sep 17 00:00:00 2001 From: BlackNoxis Date: Fri, 21 Nov 2014 16:52:02 +0200 Subject: Safe keeping the package dev-python/imaging --- dev-python/imaging/files/imaging-1.1.7-no-xv.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 dev-python/imaging/files/imaging-1.1.7-no-xv.patch (limited to 'dev-python/imaging/files/imaging-1.1.7-no-xv.patch') diff --git a/dev-python/imaging/files/imaging-1.1.7-no-xv.patch b/dev-python/imaging/files/imaging-1.1.7-no-xv.patch new file mode 100644 index 00000000..1cbaf515 --- /dev/null +++ b/dev-python/imaging/files/imaging-1.1.7-no-xv.patch @@ -0,0 +1,18 @@ +--- PIL/ImageShow.py.old 2009-11-30 10:28:37.000000000 +0100 ++++ PIL/ImageShow.py 2009-11-30 10:29:02.000000000 +0100 +@@ -149,13 +149,10 @@ + def get_command_ex(self, file, title=None, **options): + # note: xv is pretty outdated. most modern systems have + # imagemagick's display command instead. +- command = executable = "xv" +- if title: +- # FIXME: do full escaping +- command = command + " -name \"%s\"" % title ++ command = executable = "xdg-open" + return command, executable + +- if which("xv"): ++ if which("xdg-open"): + register(XVViewer) + + if __name__ == "__main__": -- cgit v1.2.3