diff options
Diffstat (limited to 'net/kdenetwork3')
-rw-r--r-- | net/kdenetwork3/Makefile | 1 | ||||
-rw-r--r-- | net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/net/kdenetwork3/Makefile b/net/kdenetwork3/Makefile index 1ef09fed07a1..ba391a21412c 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 000000000000..42f34cb3d5be --- /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 * ) ) ); |