Commit c0b2b8a0 authored by Seblu's avatar Seblu
Browse files

remove istanbul


git-svn-id: https://seblu.net/s/archpkg@221 02741741-5192-46b8-8916-7152b19231d9
parent 59452955
Loading
Loading
Loading
Loading

istanbul/01-python2.patch

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
--- a/bin/istanbul.in	2010-12-10 17:11:01.000000000 +0200
+++ b/bin/istanbul.in	2010-12-10 17:11:02.000000000 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!@PYTHON@
 # -*- Mode: Python -*-
 # vi:si:et:sw=4:sts=4:ts=4
 #

istanbul/02-audio_eos.patch

deleted100644 → 0
+0 −19
Original line number Diff line number Diff line
From: Florian Boucault <florian@boucault.net>
Subject: Patch fixing audio recording 
Origin: upstream
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=430151 
Bug-Debian: http://bugs.debian.org/486660

Index: istanbul-0.2.2.orig/istanbul/main/screencast.py
===================================================================
--- istanbul-0.2.2.orig/istanbul/main/screencast.py	(révision 131)
+++ istanbul-0.2.2.orig/istanbul/main/screencast.py	(copie de travail)
@@ -135,7 +135,7 @@
             m.run()
             m.destroy()
             self.finished_callback(message)
-        elif message.type == gst.MESSAGE_EOS:
+        elif message.type == gst.MESSAGE_EOS or message.type == gst.MESSAGE_CLOCK_LOST:
             self._pipeline.set_state(gst.STATE_NULL)
             self.on_eos()
 

istanbul/03-python-import.patch

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line
--- istanbul-0.2.2.orig/bin/istanbul.in
+++ istanbul-0.2.2/bin/istanbul.in
@@ -18,15 +18,9 @@
 import os
 import sys
 
-if not '@PYGTK_DIR@' in sys.path:
-    sys.path.insert(0, '@PYGTK_DIR@')
-
 import pygtk
 pygtk.require('2.0')
 
-if not '@PYTHONDIR@' in sys.path:
-    sys.path.insert(0, '@PYTHONDIR@')
-
 from istanbul.main import main
 from istanbul.configure import config
 

istanbul/04-window-record.patch

deleted100644 → 0
+0 −11
Original line number Diff line number Diff line
--- istanbul-0.2.2.orig/istanbul/main/window_select.py
+++ istanbul-0.2.2/istanbul/main/window_select.py
@@ -85,7 +85,7 @@
                 return child
 
         for child in children:
-            result = self._get_client_window_check_children(window)
+            result = self._get_client_window_check_children(child)
             if result != None:
                 return result
 

istanbul/05-manpage.patch

deleted100644 → 0
+0 −77
Original line number Diff line number Diff line
Index: istanbul-0.2.2/doc/man/istanbul.1
===================================================================
--- istanbul-0.2.2.orig/doc/man/istanbul.1	2007-08-11 14:59:47.000000000 +0200
+++ istanbul-0.2.2/doc/man/istanbul.1	2007-08-11 15:01:04.000000000 +0200
@@ -14,8 +14,9 @@
 area: a click on the icon to start recording, another click to stop.
 .PP
 \fBistanbul\fP preferences can be configured with a right click on the icon.
+You can choose to record full screen, a selected windows or a particular area.
 .TP
-It can also stream to an Icecast2 server.
+It can also record audio from GStreamer default input.
 .PP
 By default it records to ~/desktop-recording.ogg
 .SH OPTIONS
@@ -29,55 +30,13 @@
 .B \-\-version
 Show version of program.
 .TP
-.B \-\-usage
-Display brief usage message
+.B \-\-help\-all
+Print summary of all available options for istanbul.
 .TP
-Istanbul accepts also GStreamer options.
-A summary of them is included below.
-.TP
-.B \-\-gst\-version
-Print the GStreamer version
-.TP
-.B \-\-gst\-fatal\-warnings
-Make all warnings fatal
-.TP
-.B \-\-gst\-debug\-help
-Print available debug categories and exit
-.TP
-.B \-\-gst\-debug\-level=LEVEL
-Default debug level from 1 (only error) to 5 (anything) or 0 for no output
-.TP
-.B \-\-gst\-debug=LIST
-Comma-separated list of category_name:level pairs to set specific levels for the individual categories
-.TP
-.B \-\-gst\-debug\-no\-color
-Disable colored debugging output
-.TP
-.B \-\-gst\-debug\-disable
-Disable debugging
-.TP
-.B \-\-gst\-disable\-cpu\-opt
-Disable accelerated CPU instructions
-.TP
-.B \-\-gst\-plugin\-spew
-Enable verbose plugin loading diagnostics
-.TP
-.B \-\-gst\-plugin\-path=PATHS
-path list for loading plugins (separated by ':')
-.TP
-.B \-\-gst\-plugin\-load=PLUGINS 
-Comma-separated list of plugins to preload in addition to the list stored in environment variable GST_PLUGIN_PATH
-.TP
-.B \-\-gst\-disable\-segtrap
-Disable trapping of segmentation faults during plugin loading
-.TP
-.B \-\-gst\-scheduler=SCHEDULER
-Scheduler to use (default is 'opt')
-.TP
-.B \-\-gst\-registry=REGISTRY
-Registry to use
-.SH AUTHOR
-Istanbul was written by  Zaheer Abbas Merali <zaheerabbas@merali.org>.
+.B \-\-help\-gst
+Print summary of available options for the gstreamer framework.
+.SH AUTHORS
+Istanbul was written by Zaheer Abbas Merali <zaheerabbas@merali.org>.
 .PP
 This manual page was written by Luca Bruno <luca.br@uno.it>,
 for the Debian project (but may be used by others).
Loading