summaryrefslogtreecommitdiffstats
path: root/net/kdenetwork3
diff options
context:
space:
mode:
authorlofi <lofi@FreeBSD.org>2006-03-31 20:24:49 +0000
committerlofi <lofi@FreeBSD.org>2006-03-31 20:24:49 +0000
commit328e0ef0fd56aee44acb188a342bafb2f9dc6b38 (patch)
treeb96747fca91898b447a430c84e778486928499e5 /net/kdenetwork3
parent24ffec4c7c2fb54eed3248dc2c97b85a82514282 (diff)
downloadFreeBSD-ports-328e0ef0fd56aee44acb188a342bafb2f9dc6b38.zip
FreeBSD-ports-328e0ef0fd56aee44acb188a342bafb2f9dc6b38.tar.gz
Prevent kopete's connection status plugin to cause connection flip-flopping
on IPv6-enabled machines. Reminded by: lioux
Diffstat (limited to 'net/kdenetwork3')
-rw-r--r--net/kdenetwork3/Makefile1
-rw-r--r--net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp11
2 files changed, 12 insertions, 0 deletions
diff --git a/net/kdenetwork3/Makefile b/net/kdenetwork3/Makefile
index 1ef09fed..ba391a2 100644
--- a/net/kdenetwork3/Makefile
+++ b/net/kdenetwork3/Makefile
@@ -8,6 +8,7 @@
PORTNAME= kdenetwork
PORTVERSION= ${KDE_VERSION}
+PORTREVISION= 1
CATEGORIES?= net kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
diff --git a/net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp b/net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp
new file mode 100644
index 0000000..42f34cb
--- /dev/null
+++ b/net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp
@@ -0,0 +1,11 @@
+--- kopete/plugins/connectionstatus/connectionstatusplugin.cpp.orig Fri Mar 31 22:12:59 2006
++++ kopete/plugins/connectionstatus/connectionstatusplugin.cpp Fri Mar 31 22:14:53 2006
+@@ -65,7 +65,7 @@
+ // netstat -rn in slotProcessStdout() to see if it mentions the
+ // default gateway. If so, we're connected, if not, we're offline
+ m_process = new KProcess;
+- *m_process << "netstat" << "-r";
++ *m_process << "netstat" << "-rfinet";
+
+ connect( m_process, SIGNAL( receivedStdout( KProcess *, char *, int ) ), this, SLOT( slotProcessStdout( KProcess *, char *, int ) ) );
+ connect( m_process, SIGNAL( processExited( KProcess * ) ), this, SLOT( slotProcessExited( KProcess * ) ) );
OpenPOWER on IntegriCloud