diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-10-10 16:22:03 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-10-10 16:22:03 +0000 |
commit | ce59127a3a9572e4267ab23fc2ef346b643b44b3 (patch) | |
tree | c00856c60113e7b9f7f9d9baa2bf7ccf169242bc /misc/lv/patches | |
parent | 03ee245fb3dcf43718d4904c04292970159e7db9 (diff) | |
download | pkgsrc-ce59127a3a9572e4267ab23fc2ef346b643b44b3.tar.gz |
Apply a patch based on PR pkg/22798 to allow this to install properly
on Darwin.
Diffstat (limited to 'misc/lv/patches')
-rw-r--r-- | misc/lv/patches/patch-aa | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/misc/lv/patches/patch-aa b/misc/lv/patches/patch-aa new file mode 100644 index 00000000000..4e5607b0904 --- /dev/null +++ b/misc/lv/patches/patch-aa @@ -0,0 +1,25 @@ +$NetBSD: patch-aa,v 1.3 2003/10/10 16:22:03 jschauma Exp $ + +--- ../src/Makefile.in.orig Fri Oct 10 11:57:43 2003 ++++ ../src/Makefile.in Fri Oct 10 11:56:46 2003 +@@ -64,7 +64,7 @@ + # + + install:: +- $(INSTALL) -s -o bin -g bin -m 555 lv $(bindir) ++ $(BSD_INSTALL_PROGRAM) lv $(bindir) + if test -f $(bindir)/lgrep; then \ + /bin/rm -f $(bindir)/lgrep; \ + fi +@@ -72,9 +72,9 @@ + if test ! -d $(lvlibdir); then \ + mkdir -p $(lvlibdir); \ + fi +- $(INSTALL) -o bin -g bin -m 444 $(srcdir)/../lv.hlp $(lvlibdir) ++ $(BSD_INSTALL_DATA) $(srcdir)/../lv.hlp $(lvlibdir) + if test -d $(mandir) -a -d $(mandir)/man1; then \ +- $(INSTALL) -o bin -g bin -m 444 $(srcdir)/../lv.1 $(mandir)/man1; \ ++ $(BSD_INSTALL_MAN) $(srcdir)/../lv.1 $(mandir)/man1; \ + fi + + uninstall:: |