summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authormarkd <markd>2005-03-30 12:26:45 +0000
committermarkd <markd>2005-03-30 12:26:45 +0000
commit20285d6e42ec1a65210442d0203e5ce11b69ead3 (patch)
tree427c064532211f370fe52b4973abb256d4e55aff /net
parent7d7d8ba2dfbdbb1511774a177305633c179df83a (diff)
downloadpkgsrc-20285d6e42ec1a65210442d0203e5ce11b69ead3.tar.gz
rdesktop 1.4 requires the host argument to come after all the others
so make that so when krdc calls it. Bump PKGREVISION.
Diffstat (limited to 'net')
-rw-r--r--net/kdenetwork3/Makefile3
-rw-r--r--net/kdenetwork3/distinfo3
-rw-r--r--net/kdenetwork3/patches/patch-an14
3 files changed, 18 insertions, 2 deletions
diff --git a/net/kdenetwork3/Makefile b/net/kdenetwork3/Makefile
index 65b812b5afb..2ab668b671c 100644
--- a/net/kdenetwork3/Makefile
+++ b/net/kdenetwork3/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.38 2005/03/23 21:56:29 markd Exp $
+# $NetBSD: Makefile,v 1.39 2005/03/30 12:26:45 markd Exp $
DISTNAME= kdenetwork-${_KDE_VERSION}
+PKGREVISION= 1
CATEGORIES= net
COMMENT= Network modules for the KDE integrated X11 desktop
diff --git a/net/kdenetwork3/distinfo b/net/kdenetwork3/distinfo
index 01f2c21cbbe..bbd157f9c86 100644
--- a/net/kdenetwork3/distinfo
+++ b/net/kdenetwork3/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.28 2005/03/23 21:56:29 markd Exp $
+$NetBSD: distinfo,v 1.29 2005/03/30 12:26:45 markd Exp $
SHA1 (kdenetwork-3.4.0.tar.bz2) = 208435bba67db8e689a704827dc40c063936f1b3
RMD160 (kdenetwork-3.4.0.tar.bz2) = 746e6897dd17ce6a39c07f231a23812bfa694fae
@@ -7,3 +7,4 @@ SHA1 (patch-aa) = 49ca3764fae7044d1170efe03b53147732e9d470
SHA1 (patch-ac) = a0e2fbcf1348d5e91434878bac4977b649c94855
SHA1 (patch-ad) = 916bcbe11ca71f7a0f5f03c91fa18a6af9197be2
SHA1 (patch-am) = e0511acfd35ebde0c919612f52dd63304934e8cf
+SHA1 (patch-an) = 62c7cfb58b04d12b7711efb425ae7be55f6e60bc
diff --git a/net/kdenetwork3/patches/patch-an b/net/kdenetwork3/patches/patch-an
new file mode 100644
index 00000000000..bb17a1e54c1
--- /dev/null
+++ b/net/kdenetwork3/patches/patch-an
@@ -0,0 +1,14 @@
+$NetBSD: patch-an,v 1.7 2005/03/30 12:26:45 markd Exp $
+
+--- krdc/rdp/krdpview.cpp.orig 2005-03-30 15:24:53.000000000 +1200
++++ krdc/rdp/krdpview.cpp
+@@ -210,8 +210,8 @@ bool KRdpView::start()
+ if(!m_user.isEmpty()) { *m_process << "-u" << m_user; }
+ if(!m_password.isEmpty()) { *m_process << "-p" << m_password; }
+ *m_process << "-X" << ("0x" + QString::number(m_container->winId(), 16));
+- *m_process << (m_host + ":" + QString::number(m_port));
+ *m_process << "-a" << QString::number(hp->colorDepth());
++ *m_process << (m_host + ":" + QString::number(m_port));
+ connect(m_process, SIGNAL(processExited(KProcess *)), SLOT(processDied(KProcess *)));
+ connect(m_process, SIGNAL(receivedStderr(KProcess *, char *, int)), SLOT(receivedStderr(KProcess *, char *, int)));
+ connect(m_container, SIGNAL(embeddedWindowDestroyed()), SLOT(connectionClosed()));