diff options
author | mezz <mezz@FreeBSD.org> | 2008-01-20 04:00:31 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2008-01-20 04:00:31 +0800 |
commit | 5e89b666111a93fc7721e8ebeae17736911f0382 (patch) | |
tree | d9bf639952578e7c669ee080a819109eabdec86f /net-p2p/deluge/files | |
parent | d9bf759af5b50e15c33f6d05885f64d23a9a002b (diff) | |
download | freebsd-ports-gnome-5e89b666111a93fc7721e8ebeae17736911f0382.tar.gz freebsd-ports-gnome-5e89b666111a93fc7721e8ebeae17736911f0382.tar.zst freebsd-ports-gnome-5e89b666111a93fc7721e8ebeae17736911f0382.zip |
Update to 0.5.8.1.
Diffstat (limited to 'net-p2p/deluge/files')
-rw-r--r-- | net-p2p/deluge/files/patch-disable_browser | 17 | ||||
-rw-r--r-- | net-p2p/deluge/files/patch-disable_check_update | 17 | ||||
-rw-r--r-- | net-p2p/deluge/files/patch-setup.py | 10 |
3 files changed, 14 insertions, 30 deletions
diff --git a/net-p2p/deluge/files/patch-disable_browser b/net-p2p/deluge/files/patch-disable_browser deleted file mode 100644 index 763a932517dc..000000000000 --- a/net-p2p/deluge/files/patch-disable_browser +++ /dev/null @@ -1,17 +0,0 @@ ---- src/interface.py.orig 2008-01-10 12:35:50.000000000 -0600 -+++ src/interface.py 2008-01-10 12:36:09.000000000 -0600 -@@ -244,13 +244,7 @@ - self.manager.pause_all() - - def launch_browser_clicked(self, arg=None): -- try: -- import browser -- browser.Browser() -- except: -- dialogs.show_popup_warning(self.window, _("Unable to state browser. \ --Make sure you have python-gnome2-extras installed or try setting your LD_LIBRARY_PATH \ --and MOZILLA_FIVE_HOME environment variables to /usr/lib/firefox")) -+ dialogs.show_popup_warning(self.window, _("This feature has been removed by the developers, so it does not work any longer. See http://forum.deluge-torrent.org/viewtopic.php?f=7&t=1069 for more info.")) - - def resume_all_clicked(self, arg=None): - self.manager.resume_all() diff --git a/net-p2p/deluge/files/patch-disable_check_update b/net-p2p/deluge/files/patch-disable_check_update index d3fc83e12614..c1179463063f 100644 --- a/net-p2p/deluge/files/patch-disable_check_update +++ b/net-p2p/deluge/files/patch-disable_check_update @@ -1,6 +1,6 @@ ---- glade/preferences_dialog.glade.orig 2007-12-29 23:31:48.000000000 -0600 -+++ glade/preferences_dialog.glade 2007-12-29 23:32:18.000000000 -0600 -@@ -2755,7 +2755,7 @@ +--- glade/preferences_dialog.glade.orig 2008-01-19 12:40:55.000000000 -0600 ++++ glade/preferences_dialog.glade 2008-01-19 12:41:35.000000000 -0600 +@@ -2673,7 +2673,7 @@ </child> <child> <widget class="GtkFrame" id="frame4"> @@ -9,17 +9,18 @@ <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <property name="label_xalign">0</property> <property name="shadow_type">GTK_SHADOW_NONE</property> ---- src/interface.py.orig 2007-12-29 23:31:52.000000000 -0600 -+++ src/interface.py 2007-12-29 23:33:20.000000000 -0600 -@@ -1061,7 +1061,6 @@ +--- src/interface.py.orig 2008-01-19 12:41:04.000000000 -0600 ++++ src/interface.py 2008-01-19 12:42:26.000000000 -0600 +@@ -1037,8 +1037,6 @@ # Load plugins after we showed main window (if not started in tray) self.load_plugins() self.load_tabs_order() -- self.new_release_check() +- if self.config.get("new_releases"): +- self.new_release_check() try: gobject.threads_init() -@@ -1071,34 +1070,6 @@ +@@ -1048,34 +1046,6 @@ except KeyboardInterrupt: self.manager.quit() diff --git a/net-p2p/deluge/files/patch-setup.py b/net-p2p/deluge/files/patch-setup.py index 03432f1dadce..4ea7c07e3fea 100644 --- a/net-p2p/deluge/files/patch-setup.py +++ b/net-p2p/deluge/files/patch-setup.py @@ -1,5 +1,5 @@ ---- setup.py.orig 2007-11-28 11:49:38.000000000 -0600 -+++ setup.py 2007-11-28 11:53:44.000000000 -0600 +--- setup.py.orig 2008-01-19 12:43:31.000000000 -0600 ++++ setup.py 2008-01-19 12:45:24.000000000 -0600 @@ -103,13 +103,13 @@ "-DHAVE_INCLUDE_LIBTORRENT_ASIO_SSL_STREAM_HPP=1", "-DHAVE_INCLUDE_LIBTORRENT_ASIO_IP_TCP_HPP=1", @@ -20,12 +20,12 @@ boost_thread = "boost_thread-mt" librariestype = [boost_filesystem, boost_date_time, -- boost_thread, 'z', 'pthread', 'ssl'] -+ boost_thread, 'z', 'ssl'] +- boost_thread, 'z', 'pthread', 'ssl', 'rt', 'crypto'] ++ boost_thread, 'z', 'ssl', 'rt', 'crypto'] removals = ['-g', '-Wstrict-prototypes'] -@@ -198,8 +198,10 @@ +@@ -202,8 +202,10 @@ sources.remove('libtorrent/src/file_win.cpp') deluge_core = Extension('deluge_core', include_dirs = includedirs, |