diff options
author | markd <markd@pkgsrc.org> | 2004-04-05 11:52:31 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2004-04-05 11:52:31 +0000 |
commit | 31b93cb74223f8f6899928b1914eb2684d861dae (patch) | |
tree | 3c3487798f413a40caa6a28cc8002cc7d65e34a9 /www | |
parent | 8336cde84eb135272d3faf0ddb42fdcd85b2534a (diff) | |
download | pkgsrc-31b93cb74223f8f6899928b1914eb2684d861dae.tar.gz |
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 (limited to 'www')
-rw-r--r-- | www/quanta3/Makefile | 7 | ||||
-rw-r--r-- | www/quanta3/distinfo | 5 | ||||
-rw-r--r-- | www/quanta3/patches/patch-ab | 13 | ||||
-rw-r--r-- | www/quanta3/patches/patch-ac | 13 | ||||
-rw-r--r-- | www/quanta3/patches/patch-ad | 13 |
5 files changed, 48 insertions, 3 deletions
diff --git a/www/quanta3/Makefile b/www/quanta3/Makefile index 8687bce916e..03b891f4e36 100644 --- a/www/quanta3/Makefile +++ b/www/quanta3/Makefile @@ -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 @@ USE_GNU_TOOLS+= make 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 --git a/www/quanta3/distinfo b/www/quanta3/distinfo index 3a26d4fb8f5..2446fe25874 100644 --- a/www/quanta3/distinfo +++ b/www/quanta3/distinfo @@ -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 --git a/www/quanta3/patches/patch-ab b/www/quanta3/patches/patch-ab new file mode 100644 index 00000000000..13c68cce783 --- /dev/null +++ b/www/quanta3/patches/patch-ab @@ -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 --git a/www/quanta3/patches/patch-ac b/www/quanta3/patches/patch-ac new file mode 100644 index 00000000000..9a06a686967 --- /dev/null +++ b/www/quanta3/patches/patch-ac @@ -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 --git a/www/quanta3/patches/patch-ad b/www/quanta3/patches/patch-ad new file mode 100644 index 00000000000..11a205e27ff --- /dev/null +++ b/www/quanta3/patches/patch-ad @@ -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; + |