diff options
author | grant <grant@pkgsrc.org> | 2004-07-24 22:35:43 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-07-24 22:35:43 +0000 |
commit | da9ffea92ec6365f046c2a6a84554064225e6fa9 (patch) | |
tree | ef806a5a0acd99a14abbe5c8dc5c3fdb4d609ece /print | |
parent | 87e0fa1a5f467516d6f52ba08b6e372174d70b7b (diff) | |
download | pkgsrc-da9ffea92ec6365f046c2a6a84554064225e6fa9.tar.gz |
call ${BSD_INSTALL} instead of "install". fixes install on Solaris.
Diffstat (limited to 'print')
-rw-r--r-- | print/psify/distinfo | 4 | ||||
-rw-r--r-- | print/psify/patches/patch-aa | 14 |
2 files changed, 13 insertions, 5 deletions
diff --git a/print/psify/distinfo b/print/psify/distinfo index 24b0933c1ee..9c998158295 100644 --- a/print/psify/distinfo +++ b/print/psify/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2004/07/10 13:55:09 salo Exp $ +$NetBSD: distinfo,v 1.4 2004/07/24 22:35:43 grant Exp $ SHA1 (psify/Makefile) = fbceb5e2add289e07a42fceb0978a95e57b316c3 Size (psify/Makefile) = 498 bytes @@ -8,4 +8,4 @@ SHA1 (psify/psify.lex) = ed5af37231547e5ac8788d47ca461181f9b7c512 Size (psify/psify.lex) = 18541 bytes SHA1 (psify/psify.man) = f517bc97ba3d3ff20fa19f86f4a6c26d20e1afbc Size (psify/psify.man) = 4023 bytes -SHA1 (patch-aa) = da19420bf10a2c22afc86a9140943c4857641fe9 +SHA1 (patch-aa) = 9caa22acf3fd00cf355eb44638a93410784961c3 diff --git a/print/psify/patches/patch-aa b/print/psify/patches/patch-aa index 68dcdab744b..4f73a841d93 100644 --- a/print/psify/patches/patch-aa +++ b/print/psify/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.1 2004/07/10 13:55:09 salo Exp $ +$NetBSD: patch-aa,v 1.2 2004/07/24 22:35:43 grant Exp $ ---- Makefile.orig Sat Jul 10 15:43:55 2004 -+++ Makefile Sat Jul 10 15:44:27 2004 +--- Makefile.orig 2004-07-25 08:33:58.000000000 +1000 ++++ Makefile @@ -2,10 +2,10 @@ PROG = psify @@ -17,3 +17,11 @@ $NetBSD: patch-aa,v 1.1 2004/07/10 13:55:09 salo Exp $ #GREP = grep #LIBS = `$(GREP) -q FLEX_SCANNER lex.yy.c || echo -ll` +@@ -26,5 +26,5 @@ clean: + rm -f $(PROG) *.o lex.yy.c *~ + + install: all +- install -c -s -m 755 psify $(prefix)/bin/psify +- install -c -m 644 psify.man $(prefix)/man/man1/psify.1 ++ ${BSD_INSTALL} -c -s -m 755 psify $(prefix)/bin/psify ++ ${BSD_INSTALL} -c -m 644 psify.man $(prefix)/man/man1/psify.1 |