aboutsummaryrefslogtreecommitdiff
path: root/www/epiphany
diff options
context:
space:
mode:
authorJeremy Messenger <mezz@FreeBSD.org>2006-11-20 00:04:19 +0000
committerJeremy Messenger <mezz@FreeBSD.org>2006-11-20 00:04:19 +0000
commitfb400f844585ffb4548520d295b71e3ca4ae8a37 (patch)
tree15dcfd7d89c3aa93545b17bb0c53a695ff86b06e /www/epiphany
parent4f49f3147ac14109c773c7b590eec0894e427f28 (diff)
Notes
Diffstat (limited to 'www/epiphany')
-rw-r--r--www/epiphany/Makefile3
-rw-r--r--www/epiphany/distinfo6
-rw-r--r--www/epiphany/files/patch-src_ephy-dbus.c51
3 files changed, 4 insertions, 56 deletions
diff --git a/www/epiphany/Makefile b/www/epiphany/Makefile
index 161cc9a69ff1..10d94b56ef7d 100644
--- a/www/epiphany/Makefile
+++ b/www/epiphany/Makefile
@@ -7,8 +7,7 @@
#
PORTNAME= epiphany
-PORTVERSION= 2.16.1
-PORTREVISION= 2
+PORTVERSION= 2.16.2
CATEGORIES= www gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
diff --git a/www/epiphany/distinfo b/www/epiphany/distinfo
index 7829042ac7cc..0ef8e06dbe9a 100644
--- a/www/epiphany/distinfo
+++ b/www/epiphany/distinfo
@@ -1,3 +1,3 @@
-MD5 (gnome2/epiphany-2.16.1.tar.bz2) = 25fecb147b1c68cc71d2af2bac727724
-SHA256 (gnome2/epiphany-2.16.1.tar.bz2) = edc36ae24624cae00aa06dde6475c31574d5fc281612dfd1e51cda63c7a9300a
-SIZE (gnome2/epiphany-2.16.1.tar.bz2) = 3761594
+MD5 (gnome2/epiphany-2.16.2.tar.bz2) = 6d4ca4c3c1fb52b432ad3f5006866b6b
+SHA256 (gnome2/epiphany-2.16.2.tar.bz2) = 3b0ce7104ef9f2b9c22998aa28e715d48c76c3333f573472fbbabb1ed7ad13c6
+SIZE (gnome2/epiphany-2.16.2.tar.bz2) = 4229155
diff --git a/www/epiphany/files/patch-src_ephy-dbus.c b/www/epiphany/files/patch-src_ephy-dbus.c
deleted file mode 100644
index 15b54801a41d..000000000000
--- a/www/epiphany/files/patch-src_ephy-dbus.c
+++ /dev/null
@@ -1,51 +0,0 @@
-===================================================================
-RCS file: /cvs/gnome/epiphany/src/ephy-dbus.c,v
-retrieving revision 1.16.2.2
-retrieving revision 1.16.2.3
-diff -u -r1.16.2.2 -r1.16.2.3
---- src/ephy-dbus.c 2006/09/13 11:48:50 1.16.2.2
-+++ src/ephy-dbus.c 2006/10/18 18:54:30 1.16.2.3
-@@ -16,7 +16,7 @@
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
-- * $Id: ephy-dbus.c,v 1.16.2.2 2006/09/13 11:48:50 chpe Exp $
-+ * $Id: ephy-dbus.c,v 1.16.2.3 2006/10/18 18:54:30 chpe Exp $
- */
-
- #include "config.h"
-@@ -301,16 +301,6 @@
- return TRUE;
- }
-
--static void
--ephy_dbus_disconnect_bus (DBusGConnection *bus)
--{
-- if (bus != NULL) {
-- dbus_connection_close
-- (dbus_g_connection_get_connection (bus));
-- dbus_g_connection_unref (bus);
-- }
--}
--
- /* Public methods */
-
- static void
-@@ -337,7 +327,7 @@
- dbus_connection_remove_filter
- (dbus_g_connection_get_connection (priv->session_bus),
- session_filter_func, dbus);
-- ephy_dbus_disconnect_bus (priv->session_bus);
-+ dbus_g_connection_unref (priv->session_bus);
- priv->session_bus = NULL;
- }
-
-@@ -346,7 +336,7 @@
- dbus_connection_remove_filter
- (dbus_g_connection_get_connection (priv->system_bus),
- system_filter_func, dbus);
-- ephy_dbus_disconnect_bus (priv->system_bus);
-+ dbus_g_connection_unref (priv->system_bus);
- priv->system_bus = NULL;
- }
- }