Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 117291 | Differences between
and this patch

Collapse All | Expand All

(-)pyvnc2swf-0.8.2-orig/edit.py (+2 lines)
Lines 24-29 Link Here
24
##
24
##
25
25
26
import sys, re
26
import sys, re
27
# We want the auxiliary Python files in /usr/lib/pyvnc2swf.
28
sys.path.insert(0, "/usr/lib/pyvnc2swf")
27
from movie import SWFInfo, MovieContainer
29
from movie import SWFInfo, MovieContainer
28
from output import MPEGVideoStream, SWFVideoStream, SWFShapeStream, ImageSequenceStream, MovieBuilder
30
from output import MPEGVideoStream, SWFVideoStream, SWFShapeStream, ImageSequenceStream, MovieBuilder
29
stderr = sys.stderr
31
stderr = sys.stderr
(-)pyvnc2swf-0.8.2-orig/play.py (+2 lines)
Lines 25-30 Link Here
25
25
26
import sys, os.path
26
import sys, os.path
27
import pygame
27
import pygame
28
# We want the auxiliary Python files in /usr/lib/pyvnc2swf.
29
sys.path.insert(0, "/usr/lib/pyvnc2swf")
28
from movie import SWFInfo, MovieContainer
30
from movie import SWFInfo, MovieContainer
29
from output import SWFScreen, MovieOutputStream, MovieBuilder
31
from output import SWFScreen, MovieOutputStream, MovieBuilder
30
lowerbound = max
32
lowerbound = max
(-)pyvnc2swf-0.8.2-orig/recordwin.sh (-1 / +1 lines)
Lines 9-15 Link Here
9
##     recordwin.sh [-display disp] [-name winname] [-id winid] output.swf
9
##     recordwin.sh [-display disp] [-name winname] [-id winid] output.swf
10
##
10
##
11
11
12
VNC2SWF="python vnc2swf.py"
12
VNC2SWF="vnc2swf.py"
13
X11VNC=x11vnc
13
X11VNC=x11vnc
14
XWININFO=xwininfo
14
XWININFO=xwininfo
15
AWK=awk
15
AWK=awk
(-)pyvnc2swf-0.8.2-orig/vnc2swf.py (-1 / +2 lines)
Lines 27-33 Link Here
27
import Tkinter, tkFileDialog, tkMessageBox
27
import Tkinter, tkFileDialog, tkMessageBox
28
from tkSimpleDialog import Dialog
28
from tkSimpleDialog import Dialog
29
from struct import pack, unpack
29
from struct import pack, unpack
30
30
# We want the auxiliary Python files in /usr/lib/pyvnc2swf.
31
sys.path.insert(0, "/usr/lib/pyvnc2swf")
31
from movie import SWFInfo
32
from movie import SWFInfo
32
from output import SWFShapeStream, SWFVideoStream
33
from output import SWFShapeStream, SWFVideoStream
33
from rfb import RFBError, RFBNetworkClient, RFBNetworkClientForRecording, RFBStreamConverter
34
from rfb import RFBError, RFBNetworkClient, RFBNetworkClientForRecording, RFBStreamConverter

Return to bug 117291