diff options
author | rh <rh> | 2001-01-16 16:25:04 +0000 |
---|---|---|
committer | rh <rh> | 2001-01-16 16:25:04 +0000 |
commit | 649fad80d7697100fe3e6802a06d0080b30983cf (patch) | |
tree | 3eb2fb8a914dd9621750d80cec237eb81d38133b /net | |
parent | 4ab35dc3fe0dee5e6b13a8033fa1cff876d680dc (diff) | |
download | pkgsrc-649fad80d7697100fe3e6802a06d0080b30983cf.tar.gz |
Use standard ${BSD_INSTALL_xxx} macros for installation
Diffstat (limited to 'net')
-rw-r--r-- | net/netsaint-plugins/files/patch-sum | 4 | ||||
-rw-r--r-- | net/netsaint-plugins/patches/patch-ab | 14 | ||||
-rw-r--r-- | net/netsaint-plugins/patches/patch-ac | 14 |
3 files changed, 31 insertions, 1 deletions
diff --git a/net/netsaint-plugins/files/patch-sum b/net/netsaint-plugins/files/patch-sum index 1924593ff26..81939171445 100644 --- a/net/netsaint-plugins/files/patch-sum +++ b/net/netsaint-plugins/files/patch-sum @@ -1,3 +1,5 @@ -$NetBSD: patch-sum,v 1.1.1.1 2001/01/16 15:43:29 rh Exp $ +$NetBSD: patch-sum,v 1.2 2001/01/16 16:25:04 rh Exp $ MD5 (patch-aa) = 41d29837b0ca7288cdf3728316a66996 +MD5 (patch-ab) = 78935f651a2bfff30d287431e1204580 +MD5 (patch-ac) = 35683cb3580206d42234471d13334ae2 diff --git a/net/netsaint-plugins/patches/patch-ab b/net/netsaint-plugins/patches/patch-ab new file mode 100644 index 00000000000..159d65af14d --- /dev/null +++ b/net/netsaint-plugins/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.1 2001/01/16 16:25:05 rh Exp $ + +--- plugins/Makefile.in.orig Tue Jan 16 17:12:27 2001 ++++ plugins/Makefile.in +@@ -58,8 +58,7 @@ + rm -f *~ t/*~ + + install: +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(INSTALL_DIR) +- for file in $(PLUGINS) $(EXTRAS); do if test -x $$file; then $(INSTALL) -m 775 $(INSTALL_OPTS) $$file $(DESTDIR)$(INSTALL_DIR); fi; done ++ for file in $(PLUGINS) $(EXTRAS); do if test -x $$file; then ${BSD_INSTALL_PROGRAM} $$file $(DESTDIR)$(INSTALL_DIR); fi; done + + install-base: + $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(INSTALL_DIR) diff --git a/net/netsaint-plugins/patches/patch-ac b/net/netsaint-plugins/patches/patch-ac new file mode 100644 index 00000000000..a8cc2e78905 --- /dev/null +++ b/net/netsaint-plugins/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1 2001/01/16 16:25:05 rh Exp $ + +--- plugins-scripts/Makefile.in.orig Wed Jun 14 22:44:21 2000 ++++ plugins-scripts/Makefile.in +@@ -17,8 +17,7 @@ + all: $(SCRIPT) + + install: +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(INSTALL_DIR) +- for file in $(SCRIPT); do $(INSTALL) -m 775 $(INSTALL_OPTS) $$file $(DESTDIR)$(INSTALL_DIR); done ++ for file in $(SCRIPT); do ${BSD_INSTALL_SCRIPT} $$file $(DESTDIR)$(INSTALL_DIR); done + + test: + $(PERL) ../test.pl t/*.t |