pkgsrc-wip/help2man/patches/patch-Makefile.in
Tilman Keskinöz b6a3ba22dc Import help2man,
------------
help2man is a tool for automatically generating simple manual pages from
program output.

It is intended to provide an easy way for software authors to include a
manual page in their distribution without having to maintain that document.

Given a program which produces resonably standard --help and --version
outputs, help2man will attempt to re-arrange that output into something
which resembles a manual page.
------------

Things that may not be correct:
patch-hacklocaledir.c was inspired by audio/arts/patches/patch-ab
REPLACE_PERL may be necessary.

Tested on:      NetBSD/i386 1.6.2
2004-05-10 15:13:13 +00:00

20 lines
737 B
Text

$NetBSD: patch-Makefile.in,v 1.1.1.1 2004/05/10 15:13:13 arved Exp $
--- Makefile.in.orig Tue Mar 2 17:59:55 2004
+++ Makefile.in Tue Mar 2 18:00:28 2004
@@ -23,6 +23,7 @@
LIBS = @LIBS@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_INFO = @INSTALL_INFO@
MAKEINFO = @MAKEINFO@
@@ -41,7 +42,7 @@
$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1
$(MKINSTALLDIRS) $(DESTDIR)$(infodir)
- $(INSTALL_PROGRAM) $(target) $(DESTDIR)$(bindir)
+ $(INSTALL_SCRIPT) $(target) $(DESTDIR)$(bindir)
$(INSTALL_DATA) $(target).1 $(DESTDIR)$(mandir)/man1
$(INSTALL_DATA) $(target).info $(DESTDIR)$(infodir)/$(target).info
if test -f $(DESTDIR)$(infodir)/dir; \