Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Jun 2014 22:45:57 +0200
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        Antoine Brodin <antoine@FreeBSD.org>
Cc:        "svn-ports-head@freebsd.org" <svn-ports-head@freebsd.org>, "svn-ports-all@freebsd.org" <svn-ports-all@freebsd.org>, Kurt Jaeger <pi@freebsd.org>, "ports-committers@freebsd.org" <ports-committers@freebsd.org>
Subject:   Re: svn commit: r357752 - in head/devel/doxygen: . files
Message-ID:  <20140615204557.GV3484@f10.opsec.eu>
In-Reply-To: <CAALwa8mNx4FnBUf5N_-2wVfphrL7n3Ymmcq=1wQfFTUSDqy=dA@mail.gmail.com>
References:  <201406140722.s5E7MsiC010737@svn.freebsd.org> <CAALwa8mNx4FnBUf5N_-2wVfphrL7n3Ymmcq=1wQfFTUSDqy=dA@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help

--p4qYPpj5QlsIQJ0K
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Hello,

> This update broke the packaging of at least those ports:
> - audio/jack

I can reproduce this. I think it generated

/usr/local/share/jack-audio-connection-kit/reference/html/globals_0x6d.html

in the past and now produces

/usr/local/share/jack-audio-connection-kit/reference/html/globals_m.html

I do not yet know why this happens. I'll investigate.

> - audio/libmpdclient
> - comms/openobex
> - comms/rtl-sdr
> - devel/avr-libc
> - devel/libdbusmenu-qt (413 skipped!)

Ups! Similar problem. I prepared a patch, attached.
The Doxyfile was from 1.7.3.

Please help me out here: Should I just commit this patch to libdbusmenu,
because it breaks so much ? Otherwise: Who from kde@ will review this ?

> - graphics/partio

I can also reproduce this.

For the rest of the ports I can probably produce similar patches,
but not today, it's late.

-- 
pi@FreeBSD.org         +49 171 3101372                          6 years to go !

--p4qYPpj5QlsIQJ0K
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment; filename="libdbus.diff"

Index: Makefile
===================================================================
--- Makefile	(revision 357924)
+++ Makefile	(working copy)
@@ -14,8 +14,7 @@
 
 USE_QT4=	corelib dbus gui \
 		moc_build qmake_build rcc_build uic_build
-USE_BZIP2=	yes
-USES=		cmake:outsource
+USES=		cmake:outsource tar:bzip2
 USE_LDCONFIG=	yes
 
 OPTIONS_DEFINE=	GENDOCS
Index: files/patch-Doxyfile.in
===================================================================
--- files/patch-Doxyfile.in	(revision 0)
+++ files/patch-Doxyfile.in	(working copy)
@@ -0,0 +1,255 @@
+--- Doxyfile.in.bak	2014-06-15 22:40:37.000000000 +0200
++++ Doxyfile.in	2014-06-15 22:40:41.000000000 +0200
+@@ -1,4 +1,4 @@
+-# Doxyfile 1.7.3
++# Doxyfile 1.8.7
+ 
+ #---------------------------------------------------------------------------
+ # Project related configuration options
+@@ -10,6 +10,7 @@
+ PROJECT_LOGO           =
+ OUTPUT_DIRECTORY       =
+ CREATE_SUBDIRS         = NO
++ALLOW_UNICODE_NAMES    = NO
+ OUTPUT_LANGUAGE        = English
+ BRIEF_MEMBER_DESC      = YES
+ REPEAT_BRIEF           = YES
+@@ -27,24 +28,30 @@
+ SEPARATE_MEMBER_PAGES  = NO
+ TAB_SIZE               = 4
+ ALIASES                =
++TCL_SUBST              =
+ OPTIMIZE_OUTPUT_FOR_C  = NO
+ OPTIMIZE_OUTPUT_JAVA   = NO
+ OPTIMIZE_FOR_FORTRAN   = NO
+ OPTIMIZE_OUTPUT_VHDL   = NO
+ EXTENSION_MAPPING      =
++MARKDOWN_SUPPORT       = YES
++AUTOLINK_SUPPORT       = YES
+ BUILTIN_STL_SUPPORT    = NO
+ CPP_CLI_SUPPORT        = NO
+ SIP_SUPPORT            = NO
+ IDL_PROPERTY_SUPPORT   = YES
+ DISTRIBUTE_GROUP_DOC   = NO
+ SUBGROUPING            = YES
++INLINE_GROUPED_CLASSES = NO
++INLINE_SIMPLE_STRUCTS  = NO
+ TYPEDEF_HIDES_STRUCT   = NO
+-SYMBOL_CACHE_SIZE      = 0
++LOOKUP_CACHE_SIZE      = 0
+ #---------------------------------------------------------------------------
+ # Build related configuration options
+ #---------------------------------------------------------------------------
+ EXTRACT_ALL            = NO
+ EXTRACT_PRIVATE        = NO
++EXTRACT_PACKAGE        = NO
+ EXTRACT_STATIC         = NO
+ EXTRACT_LOCAL_CLASSES  = YES
+ EXTRACT_LOCAL_METHODS  = NO
+@@ -57,6 +64,7 @@
+ CASE_SENSE_NAMES       = YES
+ HIDE_SCOPE_NAMES       = NO
+ SHOW_INCLUDE_FILES     = YES
++SHOW_GROUPED_MEMB_INC  = NO
+ FORCE_LOCAL_INCLUDES   = NO
+ INLINE_INFO            = YES
+ SORT_MEMBER_DOCS       = YES
+@@ -72,13 +80,13 @@
+ ENABLED_SECTIONS       =
+ MAX_INITIALIZER_LINES  = 30
+ SHOW_USED_FILES        = YES
+-SHOW_DIRECTORIES       = NO
+ SHOW_FILES             = YES
+ SHOW_NAMESPACES        = YES
+ FILE_VERSION_FILTER    =
+ LAYOUT_FILE            =
++CITE_BIB_FILES         =
+ #---------------------------------------------------------------------------
+-# configuration options related to warning and progress messages
++# Configuration options related to warning and progress messages
+ #---------------------------------------------------------------------------
+ QUIET                  = YES
+ WARNINGS               = YES
+@@ -88,7 +96,7 @@
+ WARN_FORMAT            = "$file:$line: $text"
+ WARN_LOGFILE           =
+ #---------------------------------------------------------------------------
+-# configuration options related to the input files
++# Configuration options related to the input files
+ #---------------------------------------------------------------------------
+ INPUT                  = @CMAKE_SOURCE_DIR@/src
+ INPUT_ENCODING         = UTF-8
+@@ -106,8 +114,9 @@
+ FILTER_PATTERNS        =
+ FILTER_SOURCE_FILES    = NO
+ FILTER_SOURCE_PATTERNS =
++USE_MDFILE_AS_MAINPAGE =
+ #---------------------------------------------------------------------------
+-# configuration options related to source browsing
++# Configuration options related to source browsing
+ #---------------------------------------------------------------------------
+ SOURCE_BROWSER         = NO
+ INLINE_SOURCES         = NO
+@@ -115,16 +124,17 @@
+ REFERENCED_BY_RELATION = NO
+ REFERENCES_RELATION    = NO
+ REFERENCES_LINK_SOURCE = YES
++SOURCE_TOOLTIPS        = YES
+ USE_HTAGS              = NO
+ VERBATIM_HEADERS       = YES
+ #---------------------------------------------------------------------------
+-# configuration options related to the alphabetical class index
++# Configuration options related to the alphabetical class index
+ #---------------------------------------------------------------------------
+ ALPHABETICAL_INDEX     = YES
+ COLS_IN_ALPHA_INDEX    = 5
+ IGNORE_PREFIX          =
+ #---------------------------------------------------------------------------
+-# configuration options related to the HTML output
++# Configuration options related to the HTML output
+ #---------------------------------------------------------------------------
+ GENERATE_HTML          = YES
+ HTML_OUTPUT            = html
+@@ -132,12 +142,14 @@
+ HTML_HEADER            =
+ HTML_FOOTER            =
+ HTML_STYLESHEET        =
++HTML_EXTRA_STYLESHEET  =
++HTML_EXTRA_FILES       =
+ HTML_COLORSTYLE_HUE    = 220
+ HTML_COLORSTYLE_SAT    = 100
+ HTML_COLORSTYLE_GAMMA  = 80
+ HTML_TIMESTAMP         = YES
+-HTML_ALIGN_MEMBERS     = YES
+ HTML_DYNAMIC_SECTIONS  = NO
++HTML_INDEX_NUM_ENTRIES = 100
+ GENERATE_DOCSET        = NO
+ DOCSET_FEEDNAME        = "Doxygen generated docs"
+ DOCSET_BUNDLE_ID       = org.doxygen.Project
+@@ -161,19 +173,26 @@
+ GENERATE_ECLIPSEHELP   = NO
+ ECLIPSE_DOC_ID         = org.doxygen.Project
+ DISABLE_INDEX          = NO
+-ENUM_VALUES_PER_LINE   = 4
+ GENERATE_TREEVIEW      = NO
+-USE_INLINE_TREES       = NO
++ENUM_VALUES_PER_LINE   = 4
+ TREEVIEW_WIDTH         = 250
+ EXT_LINKS_IN_WINDOW    = NO
+ FORMULA_FONTSIZE       = 10
+ FORMULA_TRANSPARENT    = YES
+ USE_MATHJAX            = NO
++MATHJAX_FORMAT         = HTML-CSS
+ MATHJAX_RELPATH        = http://www.mathjax.org/mathjax
++MATHJAX_EXTENSIONS     =
++MATHJAX_CODEFILE       =
+ SEARCHENGINE           = YES
+ SERVER_BASED_SEARCH    = NO
++EXTERNAL_SEARCH        = NO
++SEARCHENGINE_URL       =
++SEARCHDATA_FILE        = searchdata.xml
++EXTERNAL_SEARCH_ID     =
++EXTRA_SEARCH_MAPPINGS  =
+ #---------------------------------------------------------------------------
+-# configuration options related to the LaTeX output
++# Configuration options related to the LaTeX output
+ #---------------------------------------------------------------------------
+ GENERATE_LATEX         = NO
+ LATEX_OUTPUT           = latex
+@@ -183,13 +202,16 @@
+ PAPER_TYPE             = a4
+ EXTRA_PACKAGES         =
+ LATEX_HEADER           =
++LATEX_FOOTER           =
++LATEX_EXTRA_FILES      =
+ PDF_HYPERLINKS         = YES
+ USE_PDFLATEX           = YES
+ LATEX_BATCHMODE        = NO
+ LATEX_HIDE_INDICES     = NO
+ LATEX_SOURCE_CODE      = NO
++LATEX_BIB_STYLE        = plain
+ #---------------------------------------------------------------------------
+-# configuration options related to the RTF output
++# Configuration options related to the RTF output
+ #---------------------------------------------------------------------------
+ GENERATE_RTF           = NO
+ RTF_OUTPUT             = rtf
+@@ -198,26 +220,30 @@
+ RTF_STYLESHEET_FILE    =
+ RTF_EXTENSIONS_FILE    =
+ #---------------------------------------------------------------------------
+-# configuration options related to the man page output
++# Configuration options related to the man page output
+ #---------------------------------------------------------------------------
+ GENERATE_MAN           = NO
+ MAN_OUTPUT             = man
+ MAN_EXTENSION          = .3
++MAN_SUBDIR             =
+ MAN_LINKS              = NO
+ #---------------------------------------------------------------------------
+-# configuration options related to the XML output
++# Configuration options related to the XML output
+ #---------------------------------------------------------------------------
+ GENERATE_XML           = NO
+ XML_OUTPUT             = xml
+-XML_SCHEMA             =
+-XML_DTD                =
+ XML_PROGRAMLISTING     = YES
+ #---------------------------------------------------------------------------
+-# configuration options for the AutoGen Definitions output
++# Configuration options related to the DOCBOOK output
++#---------------------------------------------------------------------------
++GENERATE_DOCBOOK       = NO
++DOCBOOK_OUTPUT         = docbook
++#---------------------------------------------------------------------------
++# Configuration options for the AutoGen Definitions output
+ #---------------------------------------------------------------------------
+ GENERATE_AUTOGEN_DEF   = NO
+ #---------------------------------------------------------------------------
+-# configuration options related to the Perl module output
++# Configuration options related to the Perl module output
+ #---------------------------------------------------------------------------
+ GENERATE_PERLMOD       = NO
+ PERLMOD_LATEX          = NO
+@@ -236,18 +262,20 @@
+ EXPAND_AS_DEFINED      =
+ SKIP_FUNCTION_MACROS   = YES
+ #---------------------------------------------------------------------------
+-# Configuration::additions related to external references
++# Configuration options related to external references
+ #---------------------------------------------------------------------------
+ TAGFILES               =
+ GENERATE_TAGFILE       =
+ ALLEXTERNALS           = NO
+ EXTERNAL_GROUPS        = YES
++EXTERNAL_PAGES         = YES
+ PERL_PATH              = /usr/bin/perl
+ #---------------------------------------------------------------------------
+ # Configuration options related to the dot tool
+ #---------------------------------------------------------------------------
+ CLASS_DIAGRAMS         = YES
+ MSCGEN_PATH            =
++DIA_PATH               =
+ HIDE_UNDOC_RELATIONS   = YES
+ HAVE_DOT               = NO
+ DOT_NUM_THREADS        = 0
+@@ -258,6 +286,7 @@
+ COLLABORATION_GRAPH    = YES
+ GROUP_GRAPHS           = YES
+ UML_LOOK               = NO
++UML_LIMIT_NUM_FIELDS   = 10
+ TEMPLATE_RELATIONS     = NO
+ INCLUDE_GRAPH          = YES
+ INCLUDED_BY_GRAPH      = YES
+@@ -266,9 +295,11 @@
+ GRAPHICAL_HIERARCHY    = YES
+ DIRECTORY_GRAPH        = YES
+ DOT_IMAGE_FORMAT       = png
++INTERACTIVE_SVG        = NO
+ DOT_PATH               =
+ DOTFILE_DIRS           =
+ MSCFILE_DIRS           =
++DIAFILE_DIRS           =
+ DOT_GRAPH_MAX_NODES    = 50
+ MAX_DOT_GRAPH_DEPTH    = 0
+ DOT_TRANSPARENT        = NO

Property changes on: files/patch-Doxyfile.in
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: pkg-plist
===================================================================
--- pkg-plist	(revision 357924)
+++ pkg-plist	(working copy)
@@ -28,7 +28,6 @@
 %%GENDOCS%%%%DOCSDIR%%/dynsections.js
 %%GENDOCS%%%%DOCSDIR%%/files.html
 %%GENDOCS%%%%DOCSDIR%%/ftv2blank.png
-%%GENDOCS%%%%DOCSDIR%%/ftv2cl.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2doc.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2folderclosed.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2folderopen.png
@@ -36,9 +35,7 @@
 %%GENDOCS%%%%DOCSDIR%%/ftv2link.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2mlastnode.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2mnode.png
-%%GENDOCS%%%%DOCSDIR%%/ftv2mo.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2node.png
-%%GENDOCS%%%%DOCSDIR%%/ftv2ns.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2plastnode.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2pnode.png
 %%GENDOCS%%%%DOCSDIR%%/ftv2splitbar.png
@@ -53,41 +50,41 @@
 %%GENDOCS%%%%DOCSDIR%%/nav_h.png
 %%GENDOCS%%%%DOCSDIR%%/open.png
 %%GENDOCS%%%%DOCSDIR%%/pages.html
-%%GENDOCS%%%%DOCSDIR%%/search/all_61.html
-%%GENDOCS%%%%DOCSDIR%%/search/all_61.js
-%%GENDOCS%%%%DOCSDIR%%/search/all_63.html
-%%GENDOCS%%%%DOCSDIR%%/search/all_63.js
-%%GENDOCS%%%%DOCSDIR%%/search/all_64.html
-%%GENDOCS%%%%DOCSDIR%%/search/all_64.js
-%%GENDOCS%%%%DOCSDIR%%/search/all_69.html
-%%GENDOCS%%%%DOCSDIR%%/search/all_69.js
-%%GENDOCS%%%%DOCSDIR%%/search/all_6d.html
-%%GENDOCS%%%%DOCSDIR%%/search/all_6d.js
-%%GENDOCS%%%%DOCSDIR%%/search/all_73.html
-%%GENDOCS%%%%DOCSDIR%%/search/all_73.js
-%%GENDOCS%%%%DOCSDIR%%/search/all_75.html
-%%GENDOCS%%%%DOCSDIR%%/search/all_75.js
-%%GENDOCS%%%%DOCSDIR%%/search/classes_64.html
-%%GENDOCS%%%%DOCSDIR%%/search/classes_64.js
+%%GENDOCS%%%%DOCSDIR%%/search/all_0.html
+%%GENDOCS%%%%DOCSDIR%%/search/all_0.js
+%%GENDOCS%%%%DOCSDIR%%/search/all_1.html
+%%GENDOCS%%%%DOCSDIR%%/search/all_1.js
+%%GENDOCS%%%%DOCSDIR%%/search/all_2.html
+%%GENDOCS%%%%DOCSDIR%%/search/all_2.js
+%%GENDOCS%%%%DOCSDIR%%/search/all_3.html
+%%GENDOCS%%%%DOCSDIR%%/search/all_3.js
+%%GENDOCS%%%%DOCSDIR%%/search/all_4.html
+%%GENDOCS%%%%DOCSDIR%%/search/all_4.js
+%%GENDOCS%%%%DOCSDIR%%/search/all_5.html
+%%GENDOCS%%%%DOCSDIR%%/search/all_5.js
+%%GENDOCS%%%%DOCSDIR%%/search/all_6.html
+%%GENDOCS%%%%DOCSDIR%%/search/all_6.js
+%%GENDOCS%%%%DOCSDIR%%/search/classes_0.html
+%%GENDOCS%%%%DOCSDIR%%/search/classes_0.js
 %%GENDOCS%%%%DOCSDIR%%/search/close.png
-%%GENDOCS%%%%DOCSDIR%%/search/functions_61.html
-%%GENDOCS%%%%DOCSDIR%%/search/functions_61.js
-%%GENDOCS%%%%DOCSDIR%%/search/functions_63.html
-%%GENDOCS%%%%DOCSDIR%%/search/functions_63.js
-%%GENDOCS%%%%DOCSDIR%%/search/functions_64.html
-%%GENDOCS%%%%DOCSDIR%%/search/functions_64.js
-%%GENDOCS%%%%DOCSDIR%%/search/functions_69.html
-%%GENDOCS%%%%DOCSDIR%%/search/functions_69.js
-%%GENDOCS%%%%DOCSDIR%%/search/functions_6d.html
-%%GENDOCS%%%%DOCSDIR%%/search/functions_6d.js
-%%GENDOCS%%%%DOCSDIR%%/search/functions_73.html
-%%GENDOCS%%%%DOCSDIR%%/search/functions_73.js
-%%GENDOCS%%%%DOCSDIR%%/search/functions_75.html
-%%GENDOCS%%%%DOCSDIR%%/search/functions_75.js
+%%GENDOCS%%%%DOCSDIR%%/search/functions_0.html
+%%GENDOCS%%%%DOCSDIR%%/search/functions_0.js
+%%GENDOCS%%%%DOCSDIR%%/search/functions_1.html
+%%GENDOCS%%%%DOCSDIR%%/search/functions_1.js
+%%GENDOCS%%%%DOCSDIR%%/search/functions_2.html
+%%GENDOCS%%%%DOCSDIR%%/search/functions_2.js
+%%GENDOCS%%%%DOCSDIR%%/search/functions_3.html
+%%GENDOCS%%%%DOCSDIR%%/search/functions_3.js
+%%GENDOCS%%%%DOCSDIR%%/search/functions_4.html
+%%GENDOCS%%%%DOCSDIR%%/search/functions_4.js
+%%GENDOCS%%%%DOCSDIR%%/search/functions_5.html
+%%GENDOCS%%%%DOCSDIR%%/search/functions_5.js
+%%GENDOCS%%%%DOCSDIR%%/search/functions_6.html
+%%GENDOCS%%%%DOCSDIR%%/search/functions_6.js
 %%GENDOCS%%%%DOCSDIR%%/search/mag_sel.png
 %%GENDOCS%%%%DOCSDIR%%/search/nomatches.html
-%%GENDOCS%%%%DOCSDIR%%/search/pages_64.html
-%%GENDOCS%%%%DOCSDIR%%/search/pages_64.js
+%%GENDOCS%%%%DOCSDIR%%/search/pages_0.html
+%%GENDOCS%%%%DOCSDIR%%/search/pages_0.js
 %%GENDOCS%%%%DOCSDIR%%/search/search.css
 %%GENDOCS%%%%DOCSDIR%%/search/search.js
 %%GENDOCS%%%%DOCSDIR%%/search/search_l.png

--p4qYPpj5QlsIQJ0K--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20140615204557.GV3484>