summaryrefslogtreecommitdiff
path: root/graphics/dia
diff options
context:
space:
mode:
authorrillig <rillig>2007-11-17 14:08:35 +0000
committerrillig <rillig>2007-11-17 14:08:35 +0000
commitc6c4c13dcdd2d503cb515d3411f1494594d15db0 (patch)
tree234e8cc6c8a5c68156a57e3050773cb32f58d387 /graphics/dia
parente8cd4bb6381ac7f705ac10563ef15addabf78746 (diff)
downloadpkgsrc-c6c4c13dcdd2d503cb515d3411f1494594d15db0.tar.gz
Fixed an empty "for" loop for Solaris' ksh.
Diffstat (limited to 'graphics/dia')
-rw-r--r--graphics/dia/distinfo3
-rw-r--r--graphics/dia/patches/patch-da14
2 files changed, 16 insertions, 1 deletions
diff --git a/graphics/dia/distinfo b/graphics/dia/distinfo
index 39804f7cdb9..5e86a779237 100644
--- a/graphics/dia/distinfo
+++ b/graphics/dia/distinfo
@@ -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-be) = dab7626daefcd702b31f54d198311d9be921e1ff
SHA1 (patch-ca) = 48617d334d852253f858176bbe9222f61d379c37
SHA1 (patch-cb) = fab6a63d25781fa9ab7c6a4f6e5ff43ff29aec6e
SHA1 (patch-cc) = f2c58551d31ec577d25f9dfc62f48f28845d2dd7
+SHA1 (patch-da) = b9ad90926447183d52e2e43be0901fe98ca78efe
diff --git a/graphics/dia/patches/patch-da b/graphics/dia/patches/patch-da
new file mode 100644
index 00000000000..dfa45669a4a
--- /dev/null
+++ b/graphics/dia/patches/patch-da
@@ -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; \