mirror of
https://git.freebsd.org/ports.git
synced 2025-07-14 15:59:18 -04:00
- fix build dependencies - make DOCS optional and default-off - now builds on 8.4 and 9.1 PR: 191877 Submitted by: Nikola Kolev <koue@chaosophia.net>
45 lines
1.3 KiB
Text
45 lines
1.3 KiB
Text
--- ./Makefile.am.orig 2014-08-11 15:41:34.000000000 +0200
|
|
+++ ./Makefile.am 2014-08-11 15:41:41.000000000 +0200
|
|
@@ -15,42 +15,3 @@
|
|
|
|
EXTRA_DIST = git-version-gen
|
|
|
|
-if HAVE_DOXYGEN
|
|
-
|
|
-html_DATA = $(top_builddir)/doc/html.tar
|
|
-
|
|
-$(html_DATA): $(top_builddir)/doc/core/html/index.html \
|
|
- $(top_builddir)/doc/gsm/html/index.html \
|
|
- $(top_builddir)/doc/vty/html/index.html \
|
|
- $(top_builddir)/doc/codec/html/index.html
|
|
- cd $(top_builddir)/doc && tar cf html.tar */html
|
|
-
|
|
-$(top_builddir)/doc/core/html/index.html: $(SOURCES) Doxyfile.core
|
|
- @rm -rf doc/core
|
|
- mkdir -p doc/core
|
|
- $(DOXYGEN) Doxyfile.core
|
|
-
|
|
-$(top_builddir)/doc/gsm/html/index.html: $(SOURCES) Doxyfile.gsm
|
|
- @rm -rf doc/gsm
|
|
- mkdir -p doc/gsm
|
|
- $(DOXYGEN) Doxyfile.gsm
|
|
-
|
|
-$(top_builddir)/doc/vty/html/index.html: $(SOURCES) Doxyfile.vty
|
|
- @rm -rf doc/vty/{html,latex}
|
|
- $(DOXYGEN) Doxyfile.vty
|
|
-
|
|
-$(top_builddir)/doc/codec/html/index.html: $(SOURCES) Doxyfile.codec
|
|
- @rm -rf doc/codec
|
|
- mkdir -p doc/codec
|
|
- $(DOXYGEN) Doxyfile.codec
|
|
-
|
|
-install-data-hook:
|
|
- cd $(DESTDIR)$(htmldir) && tar xf html.tar && rm -f html.tar
|
|
-
|
|
-uninstall-hook:
|
|
- cd $(DESTDIR)$(htmldir) && rm -rf {core,gsm,vty,codec}
|
|
-
|
|
-DX_CLEAN = doc/{core,gsm,vty,codec}/{html,latex}/* doc/html.tar
|
|
-endif
|
|
-
|
|
-MOSTLYCLEANFILES = $(DX_CLEAN)
|