summaryrefslogtreecommitdiff
path: root/www/screws
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-11-02 18:48:53 +0000
committerrillig <rillig@pkgsrc.org>2006-11-02 18:48:53 +0000
commit6c5f628af11f699512b2ace3d904ad41b0b83d03 (patch)
tree7cda522936e2970d1741e525f8d3c4892a884c73 /www/screws
parent7f279c69f3bbfb01502eb4a86a67241c8385a76a (diff)
downloadpkgsrc-6c5f628af11f699512b2ace3d904ad41b0b83d03.tar.gz
Fixed "test ==" as noticed in PR 34969.
Diffstat (limited to 'www/screws')
-rw-r--r--www/screws/distinfo3
-rw-r--r--www/screws/patches/patch-ah13
2 files changed, 15 insertions, 1 deletions
diff --git a/www/screws/distinfo b/www/screws/distinfo
index c8cbb62f12f..b1307969327 100644
--- a/www/screws/distinfo
+++ b/www/screws/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.11 2006/08/14 22:36:47 wiz Exp $
+$NetBSD: distinfo,v 1.12 2006/11/02 18:48:53 rillig Exp $
SHA1 (screws-0.56.tar.gz) = 3335e7e7116561499ee7164831c31df4ecebe403
RMD160 (screws-0.56.tar.gz) = 5d7f1af67a42cd5726f0d4708713bb13c4c8fe21
@@ -10,3 +10,4 @@ SHA1 (patch-ad) = 984fa51aff7d17ba69f3ea1c0b9cf4bbb70e3973
SHA1 (patch-ae) = 081cb01537481d48cbc37a96ea72e242db76e7ae
SHA1 (patch-af) = 9ac19813079a67c8f01ea5d2b3a85c309db00f95
SHA1 (patch-ag) = cd3b907cd839f51fd0180e1f0bb40102f01c41f2
+SHA1 (patch-ah) = 90ba05b735295caa1ce6974ac5d7c1d35799c49f
diff --git a/www/screws/patches/patch-ah b/www/screws/patches/patch-ah
new file mode 100644
index 00000000000..d4b9a56776f
--- /dev/null
+++ b/www/screws/patches/patch-ah
@@ -0,0 +1,13 @@
+$NetBSD: patch-ah,v 1.1 2006/11/02 18:48:53 rillig Exp $
+
+--- src/Exec/sh/basic.sh.orig 2004-09-17 00:05:58.000000000 +0200
++++ src/Exec/sh/basic.sh 2006-11-02 19:47:46.000000000 +0100
+@@ -50,7 +50,7 @@ if [ "${METHOD}" = "GET" ]; then
+ printf "Connection: close\r\n"
+ # MIME=`${AWK} '{ if (($2==${MIMETYPES})&&($1!~/^#/)) { print $1; }' ${MIMEFILE}`
+ MIME=""
+- if [ "${MIME}" == "" ]; then
++ if [ "${MIME}" = "" ]; then
+ MIME="text/html"
+ fi
+ if [ "${FILETYPE}" = "html" ]; then