diff options
author | agc <agc@pkgsrc.org> | 1998-09-08 08:51:50 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-09-08 08:51:50 +0000 |
commit | 2cab4b5de6d50f68f76afdd5634dcde993424f99 (patch) | |
tree | 7635c3d46ab81c34f4748a3c5da617a2d817cea3 /lang | |
parent | 6d86d230f3dbbb0dd6d30a3c2b6ba2f16783f276 (diff) | |
download | pkgsrc-2cab4b5de6d50f68f76afdd5634dcde993424f99.tar.gz |
Add patch to allow STk to install itself if it's already installed
Diffstat (limited to 'lang')
-rw-r--r-- | lang/STk/patches/patch-ab | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lang/STk/patches/patch-ab b/lang/STk/patches/patch-ab new file mode 100644 index 00000000000..b0082c3338b --- /dev/null +++ b/lang/STk/patches/patch-ab @@ -0,0 +1,25 @@ +$NetBSD: patch-ab,v 1.1 1998/09/08 08:51:50 agc Exp $ + +Allow STk to install itself if it's already installed + +--- Demos/Makefile 1998/09/08 08:20:39 1.1 ++++ Demos/Makefile 1998/09/08 08:21:24 +@@ -21,13 +21,15 @@ + do \ + chmod 0755 $(DEMODIR)/`basename $$i`; \ + done +- mkdir $(DEMODIR)/Html-Demos; chmod 0755 $(DEMODIR)/Html-Demos ++ -mkdir $(DEMODIR)/Html-Demos ++ -chmod 0755 $(DEMODIR)/Html-Demos + cp Html-Demos/*.html $(DEMODIR)/Html-Demos + chmod 0644 $(DEMODIR)/Html-Demos/*.html +- mkdir $(DEMODIR)/Html-Demos/Images; chmod 0755 $(DEMODIR)/Html-Demos/Images ++ -mkdir $(DEMODIR)/Html-Demos/Images ++ -chmod 0755 $(DEMODIR)/Html-Demos/Images + cp Html-Demos/Images/* $(DEMODIR)/Html-Demos/Images + chmod 0644 $(DEMODIR)/Html-Demos/Images/* +- (cd $(DEMODIR)/Html-Demos; ln -s ../amib.stklos ../stklos-widgets .) ++ (cd $(DEMODIR)/Html-Demos; ln -fs ../amib.stklos ../stklos-widgets .) + + install.libs: + |