diff options
author | George C A Reid <greid@FreeBSD.org> | 2001-05-26 14:08:33 +0000 |
---|---|---|
committer | George C A Reid <greid@FreeBSD.org> | 2001-05-26 14:08:33 +0000 |
commit | df52f2a72e616e10f2bacae08b617b60a890cfe5 (patch) | |
tree | 6512e4da671057c3d4713e1800cdfb97c4b28c36 | |
parent | - Update port to version 2.7.6 (diff) |
Add patch to respect NOPORTDOCS
Submitted by: Pete Fritchman <petef@databits.net> (MAINTAINER)
Notes
Notes:
svn path=/head/; revision=43086
Diffstat (limited to '')
-rw-r--r-- | www/hypermail/files/patch-docs::Makefile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/www/hypermail/files/patch-docs::Makefile.in b/www/hypermail/files/patch-docs::Makefile.in new file mode 100644 index 000000000000..476abd863a4a --- /dev/null +++ b/www/hypermail/files/patch-docs::Makefile.in @@ -0,0 +1,17 @@ +--- docs/Makefile.in.orig Sat May 26 14:33:01 2001 ++++ docs/Makefile.in Sat May 26 14:33:40 2001 +@@ -38,11 +38,13 @@ + $(INSTALL_PROG) -c -m 0644 hmrc.4 $(mandir)/man4 + + install.html: ++.if !defined(NOPORTDOCS) + @(if [ ! -d $(htmldir) ]; then mkdir -p $(htmldir); fi) + $(INSTALL_PROG) -c -m 0644 hr.yellow.gif $(htmldir) + $(INSTALL_PROG) -c -m 0644 hypermail.gif $(htmldir) +- $(INSTALL_PROG) -c -m 0644 hypermail.html $(htmldir) ++ $(INSTALL_PROG) -c -m 0644 hypermail-faq.html $(htmldir) + $(INSTALL_PROG) -c -m 0644 customizing.html $(htmldir) + $(INSTALL_PROG) -c -m 0644 hmrc.html $(htmldir) ++.endif + + clean: |