pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/kdenetwork3 rdesktop 1.4 requires the host argumen...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/fb0b845b911f
branches:  trunk
changeset: 491811:fb0b845b911f
user:      markd <markd%pkgsrc.org@localhost>
date:      Wed Mar 30 12:26:45 2005 +0000

description:
rdesktop 1.4 requires the host argument to come after all the others
so make that so when krdc calls it.  Bump PKGREVISION.

diffstat:

 net/kdenetwork3/Makefile         |   3 ++-
 net/kdenetwork3/distinfo         |   3 ++-
 net/kdenetwork3/patches/patch-an |  14 ++++++++++++++
 3 files changed, 18 insertions(+), 2 deletions(-)

diffs (44 lines):

diff -r f09c8abab153 -r fb0b845b911f net/kdenetwork3/Makefile
--- a/net/kdenetwork3/Makefile  Wed Mar 30 12:17:51 2005 +0000
+++ b/net/kdenetwork3/Makefile  Wed Mar 30 12:26:45 2005 +0000
@@ -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 -r f09c8abab153 -r fb0b845b911f net/kdenetwork3/distinfo
--- a/net/kdenetwork3/distinfo  Wed Mar 30 12:17:51 2005 +0000
+++ b/net/kdenetwork3/distinfo  Wed Mar 30 12:26:45 2005 +0000
@@ -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-ac) = a0e2fbcf1348d5e91434878bac4977b649c94855
 SHA1 (patch-ad) = 916bcbe11ca71f7a0f5f03c91fa18a6af9197be2
 SHA1 (patch-am) = e0511acfd35ebde0c919612f52dd63304934e8cf
+SHA1 (patch-an) = 62c7cfb58b04d12b7711efb425ae7be55f6e60bc
diff -r f09c8abab153 -r fb0b845b911f net/kdenetwork3/patches/patch-an
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/kdenetwork3/patches/patch-an  Wed Mar 30 12:26:45 2005 +0000
@@ -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()));



Home | Main Index | Thread Index | Old Index