pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/quanta3 kmdr-executor runs bourne shell type scrip...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f074320c9b7c
branches:  trunk
changeset: 472137:f074320c9b7c
user:      markd <markd%pkgsrc.org@localhost>
date:      Mon Apr 05 11:52:31 2004 +0000

description:
kmdr-executor runs bourne shell type scripts with the users shell which
doesn't work very well when its, for example, tcsh.  Fix by explicitly
using /bin/sh.  Bump PKGREVISION.

diffstat:

 www/quanta3/Makefile         |   7 +++++--
 www/quanta3/distinfo         |   5 ++++-
 www/quanta3/patches/patch-ab |  13 +++++++++++++
 www/quanta3/patches/patch-ac |  13 +++++++++++++
 www/quanta3/patches/patch-ad |  13 +++++++++++++
 5 files changed, 48 insertions(+), 3 deletions(-)

diffs (87 lines):

diff -r b955ea7b51da -r f074320c9b7c www/quanta3/Makefile
--- a/www/quanta3/Makefile      Mon Apr 05 11:47:55 2004 +0000
+++ b/www/quanta3/Makefile      Mon Apr 05 11:52:31 2004 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.16 2004/03/26 02:27:58 wiz Exp $
+# $NetBSD: Makefile,v 1.17 2004/04/05 11:52:31 markd Exp $
 
 DISTNAME=      quanta-${_KDE_VERSION}
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    www
 COMMENT=       HTML editor suitable for experienced web developers
 
@@ -14,6 +14,9 @@
 GNU_CONFIGURE=          YES
 USE_LIBTOOL=            YES
 
+REPLACE_PERL=          quanta/data/scripts/TemplateMagic.pl \
+                       quanta/data/scripts/dwt.pl
+
 .include "../../meta-pkgs/kde3/buildlink2.mk"
 .include "../../x11/kdebase3/buildlink2.mk"
 .include "../../x11/qt3-tools/buildlink2.mk"
diff -r b955ea7b51da -r f074320c9b7c www/quanta3/distinfo
--- a/www/quanta3/distinfo      Mon Apr 05 11:47:55 2004 +0000
+++ b/www/quanta3/distinfo      Mon Apr 05 11:52:31 2004 +0000
@@ -1,5 +1,8 @@
-$NetBSD: distinfo,v 1.8 2004/03/09 11:47:08 markd Exp $
+$NetBSD: distinfo,v 1.9 2004/04/05 11:52:31 markd Exp $
 
 SHA1 (quanta-3.2.1.tar.bz2) = 6a93df392d8726740281cc00fbf042374e74eef6
 Size (quanta-3.2.1.tar.bz2) = 3632173 bytes
 SHA1 (patch-aa) = 705605a78c7cf55c4d6db09ac5053f16ca010691
+SHA1 (patch-ab) = 923728303d8220eb27160763d2bf0846c020c34f
+SHA1 (patch-ac) = 59106b54c5caf199288b27283426c777e1b135a6
+SHA1 (patch-ad) = a9cb91ffa64b5a6b5b987ad0693c5763d6102233
diff -r b955ea7b51da -r f074320c9b7c www/quanta3/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/quanta3/patches/patch-ab      Mon Apr 05 11:52:31 2004 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1 2004/04/05 11:52:31 markd Exp $
+
+--- kommander/widgets/myprocess.cpp.orig       2004-04-05 12:38:35.000000000 +1200
++++ kommander/widgets/myprocess.cpp
+@@ -33,7 +33,7 @@ MyProcess::MyProcess(const AssocTextWidg
+ 
+ QString MyProcess::run(const QString & a_command)
+ {
+-      KShellProcess proc;
++      KShellProcess proc("/bin/sh");
+ 
+       proc << a_command;
+ 
diff -r b955ea7b51da -r f074320c9b7c www/quanta3/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/quanta3/patches/patch-ac      Mon Apr 05 11:52:31 2004 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1 2004/04/05 11:52:31 markd Exp $
+
+--- kommander/widgets/closebutton.cpp.orig     2004-04-05 13:21:29.000000000 +1200
++++ kommander/widgets/closebutton.cpp
+@@ -92,7 +92,7 @@ void CloseButton::startProcess()
+ 
+       if(!at.isEmpty())
+       {
+-              KShellProcess *process = new KShellProcess;
++              KShellProcess *process = new KShellProcess ("/bin/sh");
+ 
+               *process << at;
+ 
diff -r b955ea7b51da -r f074320c9b7c www/quanta3/patches/patch-ad
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/quanta3/patches/patch-ad      Mon Apr 05 11:52:31 2004 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2004/04/05 11:52:31 markd Exp $
+
+--- kommander/widgets/execbutton.cpp.orig      2004-04-05 13:21:34.000000000 +1200
++++ kommander/widgets/execbutton.cpp
+@@ -83,7 +83,7 @@ void ExecButton::startProcess()
+ 
+       if(!at.isEmpty())
+       {
+-              KShellProcess *process = new KShellProcess;
++              KShellProcess *process = new KShellProcess ("/bin/sh");
+ 
+               *process << at;
+ 



Home | Main Index | Thread Index | Old Index