diff options
author | David Walter Seikel | 2012-04-22 09:19:23 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-04-22 09:19:23 +1000 |
commit | c963d75dfdeec11f82e79e727062fbf89afa2c04 (patch) | |
tree | 895633dbf641110be46f117c29890c49b3ffc0bd /libraries/eet/doc | |
parent | Adding the new extantz viewer and grid manager. (diff) | |
download | SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.zip SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.gz SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.bz2 SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.xz |
Update EFL to latest beta.
Diffstat (limited to 'libraries/eet/doc')
-rw-r--r-- | libraries/eet/doc/Doxyfile | 4 | ||||
-rw-r--r-- | libraries/eet/doc/Doxyfile.in | 2 | ||||
-rw-r--r-- | libraries/eet/doc/Makefile.am | 7 | ||||
-rw-r--r-- | libraries/eet/doc/Makefile.in | 11 |
4 files changed, 15 insertions, 9 deletions
diff --git a/libraries/eet/doc/Doxyfile b/libraries/eet/doc/Doxyfile index f6e3026..26a32a7 100644 --- a/libraries/eet/doc/Doxyfile +++ b/libraries/eet/doc/Doxyfile | |||
@@ -31,7 +31,7 @@ PROJECT_NAME = Eet | |||
31 | # This could be handy for archiving the generated documentation or | 31 | # This could be handy for archiving the generated documentation or |
32 | # if some version control system is used. | 32 | # if some version control system is used. |
33 | 33 | ||
34 | PROJECT_NUMBER = 1.5.99.67344 | 34 | PROJECT_NUMBER = 1.6.0-alpha |
35 | 35 | ||
36 | # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short. | 36 | # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short. |
37 | 37 | ||
@@ -1267,7 +1267,7 @@ RTF_EXTENSIONS_FILE = | |||
1267 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will | 1267 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will |
1268 | # generate man pages | 1268 | # generate man pages |
1269 | 1269 | ||
1270 | GENERATE_MAN = YES | 1270 | GENERATE_MAN = NO |
1271 | 1271 | ||
1272 | # The MAN_OUTPUT tag is used to specify where the man pages will be put. | 1272 | # The MAN_OUTPUT tag is used to specify where the man pages will be put. |
1273 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1273 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
diff --git a/libraries/eet/doc/Doxyfile.in b/libraries/eet/doc/Doxyfile.in index eadf82a..8c427f8 100644 --- a/libraries/eet/doc/Doxyfile.in +++ b/libraries/eet/doc/Doxyfile.in | |||
@@ -1267,7 +1267,7 @@ RTF_EXTENSIONS_FILE = | |||
1267 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will | 1267 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will |
1268 | # generate man pages | 1268 | # generate man pages |
1269 | 1269 | ||
1270 | GENERATE_MAN = YES | 1270 | GENERATE_MAN = NO |
1271 | 1271 | ||
1272 | # The MAN_OUTPUT tag is used to specify where the man pages will be put. | 1272 | # The MAN_OUTPUT tag is used to specify where the man pages will be put. |
1273 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1273 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
diff --git a/libraries/eet/doc/Makefile.am b/libraries/eet/doc/Makefile.am index 145376f..4eeb438 100644 --- a/libraries/eet/doc/Makefile.am +++ b/libraries/eet/doc/Makefile.am | |||
@@ -8,19 +8,20 @@ PACKAGE_DOCNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc | |||
8 | if EFL_BUILD_DOC | 8 | if EFL_BUILD_DOC |
9 | 9 | ||
10 | doc-clean: | 10 | doc-clean: |
11 | rm -rf html/ latex/ man/ xml/ $(PACKAGE_DOCNAME).tar* | 11 | rm -rf html/ latex/ xml/ $(PACKAGE_DOCNAME).tar* |
12 | 12 | ||
13 | doc: doc-clean | 13 | doc: doc-clean |
14 | $(efl_doxygen) | 14 | $(efl_doxygen) |
15 | cp $(srcdir)/img/* html/ | 15 | cp $(srcdir)/img/* html/ |
16 | rm -rf $(PACKAGE_DOCNAME).tar* | 16 | rm -rf $(PACKAGE_DOCNAME).tar* |
17 | mkdir -p $(PACKAGE_DOCNAME)/doc | 17 | mkdir -p $(PACKAGE_DOCNAME)/doc |
18 | cp -R html/ latex/ man/ $(PACKAGE_DOCNAME)/doc | 18 | cp -R html/ latex/ $(PACKAGE_DOCNAME)/doc |
19 | tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ | 19 | tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ |
20 | bzip2 -9 $(PACKAGE_DOCNAME).tar | 20 | bzip2 -9 $(PACKAGE_DOCNAME).tar |
21 | rm -rf $(PACKAGE_DOCNAME)/ | 21 | rm -rf $(PACKAGE_DOCNAME)/ |
22 | mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) | 22 | mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) |
23 | @echo "Documentation Package: $(top_builddir)/$(PACKAGE_DOCNAME).tar.bz2" | 23 | @echo "Documentation Package: $(PACKAGE_DOCNAME).tar.bz2" |
24 | @echo "Documentation HTML: doc/html" | ||
24 | 25 | ||
25 | clean-local: doc-clean | 26 | clean-local: doc-clean |
26 | 27 | ||
diff --git a/libraries/eet/doc/Makefile.in b/libraries/eet/doc/Makefile.in index e285740..25de7ec 100644 --- a/libraries/eet/doc/Makefile.in +++ b/libraries/eet/doc/Makefile.in | |||
@@ -104,6 +104,8 @@ EINA_LIBS = @EINA_LIBS@ | |||
104 | EVIL_CFLAGS = @EVIL_CFLAGS@ | 104 | EVIL_CFLAGS = @EVIL_CFLAGS@ |
105 | EVIL_LIBS = @EVIL_LIBS@ | 105 | EVIL_LIBS = @EVIL_LIBS@ |
106 | EXEEXT = @EXEEXT@ | 106 | EXEEXT = @EXEEXT@ |
107 | EXOTIC_CFLAGS = @EXOTIC_CFLAGS@ | ||
108 | EXOTIC_LIBS = @EXOTIC_LIBS@ | ||
107 | FGREP = @FGREP@ | 109 | FGREP = @FGREP@ |
108 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ | 110 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ |
109 | GNUTLS_LIBS = @GNUTLS_LIBS@ | 111 | GNUTLS_LIBS = @GNUTLS_LIBS@ |
@@ -143,6 +145,8 @@ PACKAGE_URL = @PACKAGE_URL@ | |||
143 | PACKAGE_VERSION = @PACKAGE_VERSION@ | 145 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
144 | PATH_SEPARATOR = @PATH_SEPARATOR@ | 146 | PATH_SEPARATOR = @PATH_SEPARATOR@ |
145 | PKG_CONFIG = @PKG_CONFIG@ | 147 | PKG_CONFIG = @PKG_CONFIG@ |
148 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ | ||
149 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ | ||
146 | RANLIB = @RANLIB@ | 150 | RANLIB = @RANLIB@ |
147 | SED = @SED@ | 151 | SED = @SED@ |
148 | SET_MAKE = @SET_MAKE@ | 152 | SET_MAKE = @SET_MAKE@ |
@@ -414,19 +418,20 @@ uninstall-am: | |||
414 | .PHONY: doc | 418 | .PHONY: doc |
415 | 419 | ||
416 | @EFL_BUILD_DOC_TRUE@doc-clean: | 420 | @EFL_BUILD_DOC_TRUE@doc-clean: |
417 | @EFL_BUILD_DOC_TRUE@ rm -rf html/ latex/ man/ xml/ $(PACKAGE_DOCNAME).tar* | 421 | @EFL_BUILD_DOC_TRUE@ rm -rf html/ latex/ xml/ $(PACKAGE_DOCNAME).tar* |
418 | 422 | ||
419 | @EFL_BUILD_DOC_TRUE@doc: doc-clean | 423 | @EFL_BUILD_DOC_TRUE@doc: doc-clean |
420 | @EFL_BUILD_DOC_TRUE@ $(efl_doxygen) | 424 | @EFL_BUILD_DOC_TRUE@ $(efl_doxygen) |
421 | @EFL_BUILD_DOC_TRUE@ cp $(srcdir)/img/* html/ | 425 | @EFL_BUILD_DOC_TRUE@ cp $(srcdir)/img/* html/ |
422 | @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME).tar* | 426 | @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME).tar* |
423 | @EFL_BUILD_DOC_TRUE@ mkdir -p $(PACKAGE_DOCNAME)/doc | 427 | @EFL_BUILD_DOC_TRUE@ mkdir -p $(PACKAGE_DOCNAME)/doc |
424 | @EFL_BUILD_DOC_TRUE@ cp -R html/ latex/ man/ $(PACKAGE_DOCNAME)/doc | 428 | @EFL_BUILD_DOC_TRUE@ cp -R html/ latex/ $(PACKAGE_DOCNAME)/doc |
425 | @EFL_BUILD_DOC_TRUE@ tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ | 429 | @EFL_BUILD_DOC_TRUE@ tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ |
426 | @EFL_BUILD_DOC_TRUE@ bzip2 -9 $(PACKAGE_DOCNAME).tar | 430 | @EFL_BUILD_DOC_TRUE@ bzip2 -9 $(PACKAGE_DOCNAME).tar |
427 | @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME)/ | 431 | @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME)/ |
428 | @EFL_BUILD_DOC_TRUE@ mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) | 432 | @EFL_BUILD_DOC_TRUE@ mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) |
429 | @EFL_BUILD_DOC_TRUE@ @echo "Documentation Package: $(top_builddir)/$(PACKAGE_DOCNAME).tar.bz2" | 433 | @EFL_BUILD_DOC_TRUE@ @echo "Documentation Package: $(PACKAGE_DOCNAME).tar.bz2" |
434 | @EFL_BUILD_DOC_TRUE@ @echo "Documentation HTML: doc/html" | ||
430 | 435 | ||
431 | @EFL_BUILD_DOC_TRUE@clean-local: doc-clean | 436 | @EFL_BUILD_DOC_TRUE@clean-local: doc-clean |
432 | 437 | ||