This file is indexed.

/usr/share/aclocal/ui-doxygen.m4 is in ui-auto 1.1.17-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
AC_DEFUN([UI_DOXYGEN],
[
AC_ARG_ENABLE(ui-doxygen,[
  --disable-ui-doxygen    Disable generation of doxygen documentation.],
[
UI_DOXYGEN_ENABLED="${enableval}"
])

UI_DOXYGEN_TARGETS='def html latex man rtf xml'
if test "$UI_DOXYGEN_ENABLED" = "no"; then
	UI_DOXYGEN_MAKE="mkdir autodoc && for d in ${UI_DOXYGEN_TARGETS}; do echo 'Doxygen documentation was disabled by configure option.' >autodoc/\$\${d}; done"
else
	UI_PATH_PROG(DOXYGEN, doxygen)
	UI_PATH_PROG(PERL, perl)
	UI_DOXYGEN_MAKE='$(DOXYGEN) Doxyfile'
fi

UI_ADD_AM([

ui-doxygen:
	rm -rf autodoc && ${UI_DOXYGEN_MAKE}
	touch ui-doxygen

ui-doxygen-clean:
	rm -rf autodoc ui-doxygen

ui-doxygen-install: ui-doxygen
	install -d \$(DESTDIR)\$(docdir) && \
	chmod -R u=rwx,g=rx,o=rx \$(DESTDIR)\$(docdir) && \
	cp -a autodoc/* \$(DESTDIR)\$(docdir)

ui-doxygen-uninstall:
	for d in ${UI_DOXYGEN_TARGETS}; do \
		chmod -R u+wx \$(DESTDIR)\$(docdir)/\$\${d} 2>/dev/null || true ; \
		rm -rf \$(DESTDIR)\$(docdir)/\$\${d}; \
	done

.PHONY: ui-doxygen-clean ui-doxygen-install ui-doxygen-uninstall

ui-auto-all: ui-doxygen
ui-auto-clean: ui-doxygen-clean
ui-auto-install-data: ui-doxygen-install
ui-auto-uninstall: ui-doxygen-uninstall

])
])