summaryrefslogtreecommitdiff
path: root/devel/cppunit/files/patch-doc__Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'devel/cppunit/files/patch-doc__Makefile.in')
-rw-r--r--devel/cppunit/files/patch-doc__Makefile.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/devel/cppunit/files/patch-doc__Makefile.in b/devel/cppunit/files/patch-doc__Makefile.in
new file mode 100644
index 000000000000..1b4a4017e60e
--- /dev/null
+++ b/devel/cppunit/files/patch-doc__Makefile.in
@@ -0,0 +1,36 @@
+--- doc/Makefile.in.orig 2008-02-20 00:59:51.000000000 -0500
++++ doc/Makefile.in 2008-07-13 18:52:35.000000000 -0400
+@@ -179,7 +179,7 @@
+ # and an extra copy or two in the install-data-hook.
+ # However, the manpages do not appear to be tremendously useful, so
+ # let's not bother.
+-@DOC_TRUE@htmldir = $(pkgdatadir)/html
++@DOC_TRUE@htmldir = $(prefix)/share/doc/cppunit
+ htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+@@ -248,6 +248,7 @@
+ -rm -rf .libs _libs
+ install-htmlDATA: $(html_DATA)
+ @$(NORMAL_INSTALL)
++.if !defined(NOPORTDOCS)
+ test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"
+ @list='$(html_DATA)'; for p in $$list; do \
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+@@ -255,6 +256,7 @@
+ echo " $(htmlDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
+ $(htmlDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
+ done
++.endif
+
+ uninstall-htmlDATA:
+ @$(NORMAL_UNINSTALL)
+@@ -398,7 +400,7 @@
+
+
+ @DOC_TRUE@install-data-hook:
+-@DOC_TRUE@ cp -pR html/* $(DESTDIR)$(htmldir)
++@DOC_TRUE@ cp -pR html/ $(DESTDIR)$(htmldir)
+
+ # Automake's "distcheck" is sensitive to having files left over
+ # after "make uninstall", so we have to clean up the install hook.