mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
157e05f118
Documentation update providing current support channels. No show-stopping bugs fixed, just lots of nits. Changes to the actual port: Simplify handling of PREFIX. Use autoconf. Use DOT_LOCKING, not FLOCK_LOCKING. (IMPORTANT) Tweak DESCR to make it more obvious that this is an MUA. PR: 15423 Submitted by: maintainer
47 lines
1.5 KiB
Plaintext
47 lines
1.5 KiB
Plaintext
diff -ur ../../nmh-1.0.2-DIST/Makefile.in ./Makefile.in
|
|
--- ../../nmh-1.0.2-DIST/Makefile.in Sun Sep 26 12:43:15 1999
|
|
+++ ./Makefile.in Sat Dec 11 11:54:28 1999
|
|
@@ -65,6 +65,7 @@
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
.SUFFIXES:
|
|
diff -ur ../../nmh-1.0.2-DIST/etc/Makefile.in ./etc/Makefile.in
|
|
--- ../../nmh-1.0.2-DIST/etc/Makefile.in Thu Jul 15 17:43:04 1999
|
|
+++ ./etc/Makefile.in Sat Dec 11 12:12:53 1999
|
|
@@ -20,6 +20,7 @@
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
# Path to search for programs to handle MIME
|
|
@@ -89,7 +90,7 @@
|
|
install-scripts:
|
|
$(top_srcdir)/mkinstalldirs $(libdir)
|
|
for script in $(SCRIPTS); do \
|
|
- $(INSTALL_PROGRAM) $(srcdir)/$$script $(libdir)/$$script; \
|
|
+ $(INSTALL_SCRIPT) $(srcdir)/$$script $(libdir)/$$script; \
|
|
done
|
|
|
|
uninstall: uninstall-files uninstall-scripts
|
|
diff -ur ../../nmh-1.0.2-DIST/man/Makefile.in ./man/Makefile.in
|
|
--- ../../nmh-1.0.2-DIST/man/Makefile.in Wed Oct 13 07:56:41 1999
|
|
+++ ./man/Makefile.in Sat Dec 11 11:52:33 1999
|
|
@@ -146,8 +146,9 @@
|
|
$(INSTALL_DATA) $$file $(mandir)/man$(manext5) ; \
|
|
done
|
|
if [ ! -f mh_profile.$(manext5) ] ; then \
|
|
- ( cd $(mandir)/man$(manext5) ; ln mh-profile.$(manext5) \
|
|
- mh_profile.$(manext5) ) \
|
|
+ ( cd $(mandir)/man$(manext5) ; \
|
|
+ rm -f mh_profile.$(manext5) ; \
|
|
+ ln mh-profile.$(manext5) mh_profile.$(manext5) ) \
|
|
fi
|
|
|
|
# install the man pages in man8
|