pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/graphics/dia Fixed an empty "for" loop for Solaris' ksh.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3a4abdb93426
branches:  trunk
changeset: 535434:3a4abdb93426
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sat Nov 17 14:08:35 2007 +0000

description:
Fixed an empty "for" loop for Solaris' ksh.

diffstat:

 graphics/dia/distinfo         |   3 ++-
 graphics/dia/patches/patch-da |  14 ++++++++++++++
 2 files changed, 16 insertions(+), 1 deletions(-)

diffs (32 lines):

diff -r da5025b6781d -r 3a4abdb93426 graphics/dia/distinfo
--- a/graphics/dia/distinfo     Sat Nov 17 14:00:55 2007 +0000
+++ b/graphics/dia/distinfo     Sat Nov 17 14:08:35 2007 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.20 2007/04/19 20:14:59 drochner Exp $
+$NetBSD: distinfo,v 1.21 2007/11/17 14:08:35 rillig Exp $
 
 SHA1 (dia-0.96.1.tar.gz) = 25efddb44cf78e94555ce31e9b36645a9aa7c8b9
 RMD160 (dia-0.96.1.tar.gz) = b876a9e3760be1774bc0e69ab35d9a7f02a03ae0
@@ -9,3 +9,4 @@
 SHA1 (patch-ca) = 48617d334d852253f858176bbe9222f61d379c37
 SHA1 (patch-cb) = fab6a63d25781fa9ab7c6a4f6e5ff43ff29aec6e
 SHA1 (patch-cc) = f2c58551d31ec577d25f9dfc62f48f28845d2dd7
+SHA1 (patch-da) = b9ad90926447183d52e2e43be0901fe98ca78efe
diff -r da5025b6781d -r 3a4abdb93426 graphics/dia/patches/patch-da
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/dia/patches/patch-da     Sat Nov 17 14:08:35 2007 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-da,v 1.1 2007/11/17 14:08:36 rillig Exp $
+
+Some shells don't like syntactically empty "for" loops.
+
+--- omf.make.orig      2007-01-06 23:39:36.000000000 +0100
++++ omf.make   2007-11-17 15:07:19.000000000 +0100
+@@ -44,6 +44,7 @@ omf_timestamp: $(omffile)
+ 
+ install-data-hook-omf:
+       $(mkinstalldirs) $(DESTDIR)$(omf_dest_dir)
++      test "$(omffile)" || exit 0; \
+       if test "$(omffile)"; then \
+         for file in $(omffile); do \
+           $(INSTALL_DATA) $$file.out $(DESTDIR)$(omf_dest_dir)/$$file; \



Home | Main Index | Thread Index | Old Index