summaryrefslogtreecommitdiffstats
path: root/textproc
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-09-11 03:09:41 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-09-11 03:09:41 +0800
commit56982b358b8669f95f1edd722d337d6e7ba47998 (patch)
tree9f2c88e5562d30ae3ba20c103fc0efa2b6e1abe0 /textproc
parent57048f713819a2b5aa1789291c3689d8a536da93 (diff)
downloadmarcuscom-ports-56982b358b8669f95f1edd722d337d6e7ba47998.tar
marcuscom-ports-56982b358b8669f95f1edd722d337d6e7ba47998.tar.gz
marcuscom-ports-56982b358b8669f95f1edd722d337d6e7ba47998.tar.bz2
marcuscom-ports-56982b358b8669f95f1edd722d337d6e7ba47998.tar.lz
marcuscom-ports-56982b358b8669f95f1edd722d337d6e7ba47998.tar.xz
marcuscom-ports-56982b358b8669f95f1edd722d337d6e7ba47998.tar.zst
marcuscom-ports-56982b358b8669f95f1edd722d337d6e7ba47998.zip
Add libxml2-2.5.11.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1178 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'textproc')
-rw-r--r--textproc/libxml2/Makefile82
-rw-r--r--textproc/libxml2/distinfo1
-rw-r--r--textproc/libxml2/files/patch-aa47
-rw-r--r--textproc/libxml2/files/patch-ad11
-rw-r--r--textproc/libxml2/files/patch-catalog.c15
-rw-r--r--textproc/libxml2/files/patch-config.h.in11
-rw-r--r--textproc/libxml2/files/patch-configure19
-rw-r--r--textproc/libxml2/files/patch-python::Makefile.in11
-rw-r--r--textproc/libxml2/files/patch-python::tests::Makefile.in11
-rw-r--r--textproc/libxml2/files/patch-xml2Conf.sh.in18
-rw-r--r--textproc/libxml2/files/patch-xmlcatalog.c11
-rw-r--r--textproc/libxml2/pkg-descr3
-rw-r--r--textproc/libxml2/pkg-plist193
13 files changed, 433 insertions, 0 deletions
diff --git a/textproc/libxml2/Makefile b/textproc/libxml2/Makefile
new file mode 100644
index 000000000..1d6b45e2c
--- /dev/null
+++ b/textproc/libxml2/Makefile
@@ -0,0 +1,82 @@
+# New ports collection makefile for: libxml2
+# Date created: 28 September 1998
+# Whom: Yukihiro Nakai <Nakai@technologist.com>
+#
+# $FreeBSD: ports/textproc/libxml2/Makefile,v 1.100 2003/08/15 02:31:28 marcus Exp $
+#
+
+PORTNAME= libxml2
+PORTVERSION= 2.5.11
+CATEGORIES= textproc gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.5
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Xml parser library for GNOME
+
+LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv
+
+USE_BZIP2= yes
+USE_GMAKE= yes
+USE_LIBTOOL= yes
+USE_GNOME= gnomehack gnometarget pkgconfig
+INSTALLS_SHLIB= yes
+USE_REINPLACE= yes
+CONFIGURE_ARGS= --with-iconv=${LOCALBASE} \
+ --with-html-dir=${PREFIX}/share/doc
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+MAN1= xml2-config.1 xmllint.1 xmlcatalog.1
+MAN3= libxml.3
+
+.if !defined(WITHOUT_PYTHON)
+USE_PYTHON= yes
+PLIST_SUB+= PYTHON:=""
+CONFIGURE_ARGS+= --with-python=${LOCALBASE}
+.else
+CONFIGURE_ARGS+= --without-python
+PLIST_SUB+= PYTHON:="@comment "
+PKGNAMESUFFIX= -nopython
+.endif
+
+.if defined(WITH_THREADS)
+CONFIGURE_ARGS+= --with-threads
+.else
+CONFIGURE_ARGS+= --without-threads
+.endif
+
+.if defined(WITH_SCHEMA)
+CONFIGURE_ARGS+= --with-schemas
+.endif
+
+.if defined(WITH_MEM_DEBUG)
+CONFIGURE_ARGS+= --with-mem-debug
+.endif
+
+.if defined(WITH_XMLLINT_HIST)
+CONFIGURE_ARGS+= --with-history
+.endif
+
+.if defined(WITH_THREAD_ALLOC)
+CONFIGURE_ARGS+= --with-thread-alloc
+.endif
+
+pre-everything::
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "libxml2 has the following tunables:"
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} " WITHOUT_PYTHON=yes Turns off Python support"
+ @${ECHO_MSG} " WITH_THREADS=yes Turns on pthread support"
+ @${ECHO_MSG} " WITH_SCHEMA=yes Turns on XML Schema support"
+ @${ECHO_MSG} " WITH_MEM_DEBUG=yes Turns on memory debugging (DEVELOPERS ONLY!)"
+ @${ECHO_MSG} " WITH_XMLLINT_HIST=yes Turns on history for xmllint"
+ @${ECHO_MSG} " WITH_THREAD_ALLOC=yes Turns on per-thread memory (DEVELOPERS ONLY!)"
+ @${ECHO_MSG} ""
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
+ ${WRKSRC}/catalog.c ${WRKSRC}/xmlcatalog.c
+
+.include <bsd.port.mk>
diff --git a/textproc/libxml2/distinfo b/textproc/libxml2/distinfo
new file mode 100644
index 000000000..65a99039d
--- /dev/null
+++ b/textproc/libxml2/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/libxml2-2.5.11.tar.bz2) = 5b6d9dae5f07f5827e194c69ac1723c1
diff --git a/textproc/libxml2/files/patch-aa b/textproc/libxml2/files/patch-aa
new file mode 100644
index 000000000..09476deeb
--- /dev/null
+++ b/textproc/libxml2/files/patch-aa
@@ -0,0 +1,47 @@
+--- Makefile.in.orig Thu Aug 14 22:02:48 2003
++++ Makefile.in Thu Aug 14 22:04:43 2003
+@@ -153,7 +153,7 @@
+ install_sh = @install_sh@
+ pythondir = @pythondir@
+
+-SUBDIRS = include . doc example @PYTHON_SUBDIR@
++SUBDIRS = include . doc example @WITH_PYTHON_TRUE@ @PYTHON_SUBDIR@
+
+ DIST_SUBDIRS = include . doc example python
+
+@@ -171,7 +171,7 @@
+ lib_LTLIBRARIES = libxml2.la
+ libxml2_la_LIBADD = @THREAD_LIBS@ @Z_LIBS@ $(ICONV_LIBS) -lm
+
+-libxml2_la_LDFLAGS = -version-info @LIBXML_VERSION_INFO@
++libxml2_la_LDFLAGS = -version-info 5:0:0
+
+ @WITH_TRIO_SOURCES_TRUE@libxml2_la_SOURCES = SAX.c entities.c encoding.c error.c parserInternals.c \
+ @WITH_TRIO_SOURCES_TRUE@ parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c \
+@@ -270,7 +270,7 @@
+
+ CLEANFILES = xml2Conf.sh
+
+-confexecdir = $(libdir)
++confexecdir = $(sysconfdir)
+ confexec_DATA = xml2Conf.sh
+ EXTRA_DIST = xml2-config.in xml2Conf.sh.in libxml.spec.in libxml2.spec \
+ libxml.m4 Copyright check-xml-test-suite.py \
+@@ -289,7 +289,7 @@
+ # Instll the tests program sources as examples
+ #
+ BASE_DIR = $(datadir)/doc
+-DOC_MODULE = libxml2-$(VERSION)
++DOC_MODULE = libxml2
+ EXAMPLES_DIR = $(BASE_DIR)/$(DOC_MODULE)/examples
+ subdir = .
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+@@ -1034,7 +1034,7 @@
+ check-am: all-am
+ $(MAKE) $(AM_MAKEFLAGS) check-local
+ check: check-recursive
+-all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \
++all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(MANS) $(DATA) \
+ config.h
+ install-binPROGRAMS: install-libLTLIBRARIES
+
diff --git a/textproc/libxml2/files/patch-ad b/textproc/libxml2/files/patch-ad
new file mode 100644
index 000000000..6a7282d2c
--- /dev/null
+++ b/textproc/libxml2/files/patch-ad
@@ -0,0 +1,11 @@
+--- doc/Makefile.in.orig Thu Aug 14 22:05:15 2003
++++ doc/Makefile.in Thu Aug 14 22:05:46 2003
+@@ -153,7 +153,7 @@
+ pythondir = @pythondir@
+
+ # The name of the module.
+-DOC_MODULE = libxml2-$(VERSION)
++DOC_MODULE = libxml2
+
+ # The top-level SGML file.
+ DOC_MAIN_XML_FILE = gnome-xml.xml
diff --git a/textproc/libxml2/files/patch-catalog.c b/textproc/libxml2/files/patch-catalog.c
new file mode 100644
index 000000000..bb69882c9
--- /dev/null
+++ b/textproc/libxml2/files/patch-catalog.c
@@ -0,0 +1,15 @@
+--- catalog.c.orig Wed Jan 15 17:35:09 2003
++++ catalog.c Wed Jan 15 17:36:03 2003
+@@ -56,10 +56,10 @@
+ #define XML_URN_PUBID "urn:publicid:"
+ #define XML_CATAL_BREAK ((xmlChar *) -1)
+ #ifndef XML_XML_DEFAULT_CATALOG
+-#define XML_XML_DEFAULT_CATALOG "file:///etc/xml/catalog"
++#define XML_XML_DEFAULT_CATALOG "file://%%LOCALBASE%%/share/xml/catalog"
+ #endif
+ #ifndef XML_SGML_DEFAULT_CATALOG
+-#define XML_SGML_DEFAULT_CATALOG "file:///etc/sgml/catalog"
++#define XML_SGML_DEFAULT_CATALOG "file://%%LOCALBASE%%/share/sgml/catalog"
+ #endif
+
+ static int xmlExpandCatalog(xmlCatalogPtr catal, const char *filename);
diff --git a/textproc/libxml2/files/patch-config.h.in b/textproc/libxml2/files/patch-config.h.in
new file mode 100644
index 000000000..1bc03b82a
--- /dev/null
+++ b/textproc/libxml2/files/patch-config.h.in
@@ -0,0 +1,11 @@
+--- config.h.in.orig Sun Nov 3 16:55:05 2002
++++ config.h.in Tue Nov 19 00:06:05 2002
+@@ -1,4 +1,8 @@
+ /* config.h.in. Generated from configure.in by autoheader. */
++
++/* XXX */
++#define GAVE_VFSCANF
++
+ #undef PACKAGE
+ #undef VERSION
+ #undef HAVE_LIBZ
diff --git a/textproc/libxml2/files/patch-configure b/textproc/libxml2/files/patch-configure
new file mode 100644
index 000000000..d954c8093
--- /dev/null
+++ b/textproc/libxml2/files/patch-configure
@@ -0,0 +1,19 @@
+--- configure.orig Thu Aug 14 20:33:30 2003
++++ configure Thu Aug 14 22:12:01 2003
+@@ -8256,6 +8256,7 @@
+
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+@@ -14275,7 +14276,7 @@
+ fi
+ if test "$with_python" != ""
+ then
+- pythondir='$(PYTHON_SITE_PACKAGES)'
++ pythondir='$(libdir)/python${PYTHON_VERSION}/site-packages'
+ else
+ pythondir='$(libdir)/python${PYTHON_VERSION}/site-packages'
+ fi
diff --git a/textproc/libxml2/files/patch-python::Makefile.in b/textproc/libxml2/files/patch-python::Makefile.in
new file mode 100644
index 000000000..e7f8a271b
--- /dev/null
+++ b/textproc/libxml2/files/patch-python::Makefile.in
@@ -0,0 +1,11 @@
+--- python/Makefile.in.orig Thu Aug 14 22:06:11 2003
++++ python/Makefile.in Thu Aug 14 22:06:39 2003
+@@ -161,7 +161,7 @@
+ -I$(top_srcdir)/include
+
+
+-DOCS_DIR = $(datadir)/doc/libxml2-python-$(LIBXML_VERSION)
++DOCS_DIR = $(datadir)/doc/libxml2-python
+ # libxml2class.txt is generated
+ DOCS = TODO
+
diff --git a/textproc/libxml2/files/patch-python::tests::Makefile.in b/textproc/libxml2/files/patch-python::tests::Makefile.in
new file mode 100644
index 000000000..b0b5df548
--- /dev/null
+++ b/textproc/libxml2/files/patch-python::tests::Makefile.in
@@ -0,0 +1,11 @@
+--- python/tests/Makefile.in.orig Thu Aug 14 22:07:15 2003
++++ python/tests/Makefile.in Thu Aug 14 22:07:43 2003
+@@ -150,7 +150,7 @@
+ am__quote = @am__quote@
+ install_sh = @install_sh@
+ pythondir = @pythondir@
+-EXAMPLE_DIR = $(datadir)/doc/libxml2-python-$(LIBXML_VERSION)/examples
++EXAMPLE_DIR = $(datadir)/doc/libxml2-python/examples
+
+ PYTESTS = \
+ build.py \
diff --git a/textproc/libxml2/files/patch-xml2Conf.sh.in b/textproc/libxml2/files/patch-xml2Conf.sh.in
new file mode 100644
index 000000000..f355b9b8c
--- /dev/null
+++ b/textproc/libxml2/files/patch-xml2Conf.sh.in
@@ -0,0 +1,18 @@
+
+$FreeBSD: ports/textproc/libxml2/files/patch-xml2Conf.sh.in,v 1.1 2001/05/19 20:07:15 sobomax Exp $
+
+--- xml2Conf.sh.in 2001/05/19 19:57:43 1.1
++++ xml2Conf.sh.in 2001/05/19 19:59:40
+@@ -1,6 +1,12 @@
+ #
+ # Configuration file for using the XML library in GNOME applications
+ #
++
++prefix=@prefix@
++exec_prefix=@exec_prefix@
++includedir=@includedir@
++libdir=@libdir@
++
+ XML2_LIBDIR="@XML_LIBDIR@"
+ XML2_LIBS="@XML_LIBS@"
+ XML2_INCLUDEDIR="@XML_INCLUDEDIR@"
diff --git a/textproc/libxml2/files/patch-xmlcatalog.c b/textproc/libxml2/files/patch-xmlcatalog.c
new file mode 100644
index 000000000..3e68ccdb5
--- /dev/null
+++ b/textproc/libxml2/files/patch-xmlcatalog.c
@@ -0,0 +1,11 @@
+--- xmlcatalog.c.orig Sun Jan 26 14:45:48 2003
++++ xmlcatalog.c Wed Feb 5 19:18:49 2003
+@@ -42,7 +42,7 @@
+ #ifdef LIBXML_CATALOG_ENABLED
+
+ #ifndef XML_SGML_DEFAULT_CATALOG
+-#define XML_SGML_DEFAULT_CATALOG "/etc/sgml/catalog"
++#define XML_SGML_DEFAULT_CATALOG "%%LOCALBASE%%/share/sgml/catalog"
+ #endif
+
+ /************************************************************************
diff --git a/textproc/libxml2/pkg-descr b/textproc/libxml2/pkg-descr
new file mode 100644
index 000000000..6156cfa85
--- /dev/null
+++ b/textproc/libxml2/pkg-descr
@@ -0,0 +1,3 @@
+xml parser library for GNOME
+
+WWW: http://xmlsoft.org/
diff --git a/textproc/libxml2/pkg-plist b/textproc/libxml2/pkg-plist
new file mode 100644
index 000000000..e63b6ef77
--- /dev/null
+++ b/textproc/libxml2/pkg-plist
@@ -0,0 +1,193 @@
+bin/xml2-config
+bin/xmlcatalog
+bin/xmllint
+etc/xml2Conf.sh
+include/libxml2/libxml/DOCBparser.h
+include/libxml2/libxml/HTMLparser.h
+include/libxml2/libxml/HTMLtree.h
+include/libxml2/libxml/SAX.h
+include/libxml2/libxml/c14n.h
+include/libxml2/libxml/catalog.h
+include/libxml2/libxml/debugXML.h
+include/libxml2/libxml/encoding.h
+include/libxml2/libxml/entities.h
+include/libxml2/libxml/globals.h
+include/libxml2/libxml/hash.h
+include/libxml2/libxml/list.h
+include/libxml2/libxml/nanoftp.h
+include/libxml2/libxml/nanohttp.h
+include/libxml2/libxml/parser.h
+include/libxml2/libxml/parserInternals.h
+include/libxml2/libxml/relaxng.h
+include/libxml2/libxml/schemasInternals.h
+include/libxml2/libxml/threads.h
+include/libxml2/libxml/tree.h
+include/libxml2/libxml/uri.h
+include/libxml2/libxml/valid.h
+include/libxml2/libxml/xinclude.h
+include/libxml2/libxml/xlink.h
+include/libxml2/libxml/xmlIO.h
+include/libxml2/libxml/xmlautomata.h
+include/libxml2/libxml/xmlerror.h
+include/libxml2/libxml/xmlmemory.h
+include/libxml2/libxml/xmlreader.h
+include/libxml2/libxml/xmlregexp.h
+include/libxml2/libxml/xmlschemas.h
+include/libxml2/libxml/xmlschemastypes.h
+include/libxml2/libxml/xmlunicode.h
+include/libxml2/libxml/xmlversion.h
+include/libxml2/libxml/xpath.h
+include/libxml2/libxml/xpathInternals.h
+include/libxml2/libxml/xpointer.h
+lib/libxml2.a
+lib/libxml2.so
+lib/libxml2.so.5
+%%PYTHON:%%lib/%%PYTHON_VERSION%%/site-packages/drv_libxml2.py
+%%PYTHON:%%lib/%%PYTHON_VERSION%%/site-packages/libxml2.py
+%%PYTHON:%%lib/%%PYTHON_VERSION%%/site-packages/libxml2mod.so
+libdata/pkgconfig/libxml-2.0.pc
+share/aclocal/libxml.m4
+%%PYTHON:%%share/doc/libxml2-python/TODO
+%%PYTHON:%%share/doc/libxml2-python/examples/attribs.py
+%%PYTHON:%%share/doc/libxml2-python/examples/build.py
+%%PYTHON:%%share/doc/libxml2-python/examples/ctxterror.py
+%%PYTHON:%%share/doc/libxml2-python/examples/cutnpaste.py
+%%PYTHON:%%share/doc/libxml2-python/examples/error.py
+%%PYTHON:%%share/doc/libxml2-python/examples/inbuf.py
+%%PYTHON:%%share/doc/libxml2-python/examples/invalid.xml
+%%PYTHON:%%share/doc/libxml2-python/examples/outbuf.py
+%%PYTHON:%%share/doc/libxml2-python/examples/push.py
+%%PYTHON:%%share/doc/libxml2-python/examples/pushSAX.py
+%%PYTHON:%%share/doc/libxml2-python/examples/pushSAXhtml.py
+%%PYTHON:%%share/doc/libxml2-python/examples/reader.py
+%%PYTHON:%%share/doc/libxml2-python/examples/reader2.py
+%%PYTHON:%%share/doc/libxml2-python/examples/reader3.py
+%%PYTHON:%%share/doc/libxml2-python/examples/reader4.py
+%%PYTHON:%%share/doc/libxml2-python/examples/reader5.py
+%%PYTHON:%%share/doc/libxml2-python/examples/reader6.py
+%%PYTHON:%%share/doc/libxml2-python/examples/readererr.py
+%%PYTHON:%%share/doc/libxml2-python/examples/regexp.py
+%%PYTHON:%%share/doc/libxml2-python/examples/relaxng.py
+%%PYTHON:%%share/doc/libxml2-python/examples/resolver.py
+%%PYTHON:%%share/doc/libxml2-python/examples/serialize.py
+%%PYTHON:%%share/doc/libxml2-python/examples/thread2.py
+%%PYTHON:%%share/doc/libxml2-python/examples/tst.py
+%%PYTHON:%%share/doc/libxml2-python/examples/tst.xml
+%%PYTHON:%%share/doc/libxml2-python/examples/tstURI.py
+%%PYTHON:%%share/doc/libxml2-python/examples/tstxpath.py
+%%PYTHON:%%share/doc/libxml2-python/examples/valid.xml
+%%PYTHON:%%share/doc/libxml2-python/examples/validate.py
+%%PYTHON:%%share/doc/libxml2-python/examples/xpath.py
+%%PYTHON:%%share/doc/libxml2-python/examples/xpathext.py
+%%PYTHON:%%share/doc/libxml2-python/examples/xpathret.py
+share/doc/libxml2/Copyright
+share/doc/libxml2/examples/testHTML.c
+share/doc/libxml2/examples/testSAX.c
+share/doc/libxml2/examples/testXPath.c
+share/doc/libxml2/examples/xmllint.c
+share/doc/libxml2/html/DOM.gif
+share/doc/libxml2/html/FAQ.html
+share/doc/libxml2/html/Libxml2-Logo-180x168.gif
+share/doc/libxml2/html/Libxml2-Logo-90x34.gif
+share/doc/libxml2/html/book1.html
+share/doc/libxml2/html/encoding.html
+share/doc/libxml2/html/index.html
+share/doc/libxml2/html/libxml-DOCBparser.html
+share/doc/libxml2/html/libxml-HTMLparser.html
+share/doc/libxml2/html/libxml-HTMLtree.html
+share/doc/libxml2/html/libxml-SAX.html
+share/doc/libxml2/html/libxml-c14n.html
+share/doc/libxml2/html/libxml-catalog.html
+share/doc/libxml2/html/libxml-debugXML.html
+share/doc/libxml2/html/libxml-encoding.html
+share/doc/libxml2/html/libxml-entities.html
+share/doc/libxml2/html/libxml-globals.html
+share/doc/libxml2/html/libxml-hash.html
+share/doc/libxml2/html/libxml-lib.html
+share/doc/libxml2/html/libxml-nanoftp.html
+share/doc/libxml2/html/libxml-nanohttp.html
+share/doc/libxml2/html/libxml-notes.html
+share/doc/libxml2/html/libxml-parser.html
+share/doc/libxml2/html/libxml-parserInternals.html
+share/doc/libxml2/html/libxml-relaxng.html
+share/doc/libxml2/html/libxml-schemasInternals.html
+share/doc/libxml2/html/libxml-threads.html
+share/doc/libxml2/html/libxml-tree.html
+share/doc/libxml2/html/libxml-uri.html
+share/doc/libxml2/html/libxml-valid.html
+share/doc/libxml2/html/libxml-xinclude.html
+share/doc/libxml2/html/libxml-xmlIO.html
+share/doc/libxml2/html/libxml-xmlautomata.html
+share/doc/libxml2/html/libxml-xmlerror.html
+share/doc/libxml2/html/libxml-xmlmemory.html
+share/doc/libxml2/html/libxml-xmlreader.html
+share/doc/libxml2/html/libxml-xmlregexp.html
+share/doc/libxml2/html/libxml-xmlschemas.html
+share/doc/libxml2/html/libxml-xmlschemastypes.html
+share/doc/libxml2/html/libxml-xmlunicode.html
+share/doc/libxml2/html/libxml-xpath.html
+share/doc/libxml2/html/libxml-xpathInternals.html
+share/doc/libxml2/html/libxml-xpointer.html
+share/doc/libxml2/html/libxml.gif
+share/doc/libxml2/html/redhat.gif
+share/doc/libxml2/html/smallfootonly.gif
+share/doc/libxml2/html/structure.gif
+share/doc/libxml2/html/tutorial/apa.html
+share/doc/libxml2/html/tutorial/apb.html
+share/doc/libxml2/html/tutorial/apc.html
+share/doc/libxml2/html/tutorial/apd.html
+share/doc/libxml2/html/tutorial/ape.html
+share/doc/libxml2/html/tutorial/apf.html
+share/doc/libxml2/html/tutorial/apg.html
+share/doc/libxml2/html/tutorial/aph.html
+share/doc/libxml2/html/tutorial/ar01s02.html
+share/doc/libxml2/html/tutorial/ar01s03.html
+share/doc/libxml2/html/tutorial/ar01s04.html
+share/doc/libxml2/html/tutorial/ar01s05.html
+share/doc/libxml2/html/tutorial/ar01s06.html
+share/doc/libxml2/html/tutorial/ar01s07.html
+share/doc/libxml2/html/tutorial/ar01s08.html
+share/doc/libxml2/html/tutorial/images/blank.png
+share/doc/libxml2/html/tutorial/images/callouts/1.png
+share/doc/libxml2/html/tutorial/images/callouts/10.png
+share/doc/libxml2/html/tutorial/images/callouts/2.png
+share/doc/libxml2/html/tutorial/images/callouts/3.png
+share/doc/libxml2/html/tutorial/images/callouts/4.png
+share/doc/libxml2/html/tutorial/images/callouts/5.png
+share/doc/libxml2/html/tutorial/images/callouts/6.png
+share/doc/libxml2/html/tutorial/images/callouts/7.png
+share/doc/libxml2/html/tutorial/images/callouts/8.png
+share/doc/libxml2/html/tutorial/images/callouts/9.png
+share/doc/libxml2/html/tutorial/images/caution.png
+share/doc/libxml2/html/tutorial/images/draft.png
+share/doc/libxml2/html/tutorial/images/home.png
+share/doc/libxml2/html/tutorial/images/important.png
+share/doc/libxml2/html/tutorial/images/next.png
+share/doc/libxml2/html/tutorial/images/note.png
+share/doc/libxml2/html/tutorial/images/prev.png
+share/doc/libxml2/html/tutorial/images/tip.png
+share/doc/libxml2/html/tutorial/images/toc-blank.png
+share/doc/libxml2/html/tutorial/images/toc-minus.png
+share/doc/libxml2/html/tutorial/images/toc-plus.png
+share/doc/libxml2/html/tutorial/images/up.png
+share/doc/libxml2/html/tutorial/images/warning.png
+share/doc/libxml2/html/tutorial/includeaddattribute.c
+share/doc/libxml2/html/tutorial/includeaddkeyword.c
+share/doc/libxml2/html/tutorial/includeconvert.c
+share/doc/libxml2/html/tutorial/includegetattribute.c
+share/doc/libxml2/html/tutorial/includekeyword.c
+share/doc/libxml2/html/tutorial/index.html
+share/doc/libxml2/html/tutorial/ix01.html
+share/doc/libxml2/html/tutorial/xmltutorial.pdf
+share/doc/libxml2/html/w3c.png
+share/doc/libxml2/html/xml.html
+@dirrm share/doc/libxml2/html/tutorial/images/callouts
+@dirrm share/doc/libxml2/html/tutorial/images
+@dirrm share/doc/libxml2/html/tutorial
+@dirrm share/doc/libxml2/html
+%%PYTHON:%%@dirrm share/doc/libxml2-python/examples
+%%PYTHON:%%@dirrm share/doc/libxml2-python
+@dirrm share/doc/libxml2/examples
+@dirrm share/doc/libxml2
+@dirrm include/libxml2/libxml
+@dirrm include/libxml2