diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-22 07:01:38 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-22 07:01:38 +0000 |
commit | ee3fc5cf3cab187571380d6502defa1d40094212 (patch) | |
tree | 7c55bdaf56fd47f9e985b02985987ef7149ba926 | |
parent | c2e6dd6b2149e56a870150ed8a7a9d621b4a5bca (diff) | |
download | pkgsrc-ee3fc5cf3cab187571380d6502defa1d40094212.tar.gz |
Fixed "test ==".
-rw-r--r-- | databases/geneweb/distinfo | 3 | ||||
-rw-r--r-- | databases/geneweb/patches/patch-ac | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/databases/geneweb/distinfo b/databases/geneweb/distinfo index c94084e58d2..5377e3ed9cc 100644 --- a/databases/geneweb/distinfo +++ b/databases/geneweb/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.12 2006/03/09 10:35:49 tonio Exp $ +$NetBSD: distinfo,v 1.13 2006/10/22 07:01:38 rillig Exp $ SHA1 (geneweb-4.10nb1/geneweb-4.10.tar.gz) = 0ab12497a3ffc3541228d9dc899c095b18e7fba1 RMD160 (geneweb-4.10nb1/geneweb-4.10.tar.gz) = 5d5c9d08d76bbc08a288e7ae56aa335b9cfc0fb8 Size (geneweb-4.10nb1/geneweb-4.10.tar.gz) = 998314 bytes SHA1 (patch-aa) = 5f90d1c0a8545b670587ee5d7bbd39829073671f SHA1 (patch-ab) = 36e0ed9d8034ea546400cdc685a43fce4bac1d30 +SHA1 (patch-ac) = cf35956939ab1ce57cac2a4261f892b0a34cb053 diff --git a/databases/geneweb/patches/patch-ac b/databases/geneweb/patches/patch-ac new file mode 100644 index 00000000000..c997f40c601 --- /dev/null +++ b/databases/geneweb/patches/patch-ac @@ -0,0 +1,22 @@ +$NetBSD: patch-ac,v 1.1 2006/10/22 07:01:38 rillig Exp $ + +--- contrib/misc/birthdays.orig 2001-12-03 13:32:04.000000000 +0100 ++++ contrib/misc/birthdays 2006-10-22 08:53:37.000000000 +0200 +@@ -8,7 +8,7 @@ + # Quick hack for GeneWeb linux users + # by Falko Trojahn + # +-# Needed programs: bash lynx grep ++# Needed programs: lynx grep + # + # + # Arguments: without args, give us the birthdays from the localhost +@@ -45,7 +45,7 @@ GWBASE=familie + if [ -z $1 ] ; then + genewebhost="localhost:2317/$GWBASE" + selection="" +- elif [ $1 == month ] ; then ++ elif [ $1 = month ] ; then + genewebhost="localhost:2317/$GWBASE" + selection=";v=`date +\%m`" + elif [ -z $2 ] ; then |