summaryrefslogtreecommitdiff
path: root/devel/boost
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2000-11-03 00:16:36 +0000
committerjlam <jlam@pkgsrc.org>2000-11-03 00:16:36 +0000
commit9c9afb6b528f3bf05904ca605079a303c89a633d (patch)
tree01b764fbecb5147daf5e356a5bf0968388eb36ff /devel/boost
parent414cb0a5a965d01251b589c316db09c4f02534c5 (diff)
downloadpkgsrc-9c9afb6b528f3bf05904ca605079a303c89a633d.tar.gz
Update to boost 1.18.1. Changes from version 1.17.0:
* Graph Library, Random Number Library, and Regular Expression Library * Configuration Header additions for various compiler foibles. * Portability Hints: Borland C++ 5.5.1 from Jens Maurer added. * Compiler Status updated for latest versions of several compilers. * Array Library improvements reflecting formal review comments. * functional.hpp compiler workarounds added. * tie() function template added to utility.hpp for easier handling of std::pair<> return values. * Integer Library improved handling of 64-bit integers. * Minor web site page updates.
Diffstat (limited to 'devel/boost')
-rw-r--r--devel/boost/Makefile24
-rw-r--r--devel/boost/files/md54
-rw-r--r--devel/boost/pkg/PLIST426
3 files changed, 437 insertions, 17 deletions
diff --git a/devel/boost/Makefile b/devel/boost/Makefile
index 21b6fb2cb7d..a4a7b75e0fa 100644
--- a/devel/boost/Makefile
+++ b/devel/boost/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.8 2000/08/11 20:20:38 jlam Exp $
+# $NetBSD: Makefile,v 1.9 2000/11/03 00:16:36 jlam Exp $
DISTNAME= boost_all
-PKGNAME= boost-1.17.0
+PKGNAME= boost-1.18.1
+WRKSRC= ${WRKDIR}/boost_1_18_1
CATEGORIES= devel
MASTER_SITES= http://www.boost.org/
EXTRACT_SUFX= .zip
@@ -12,11 +13,10 @@ HOMEPAGE= http://www.boost.org/
# Need working <limits> and <memory> not present in NetBSD yet.
DEPENDS+= sgi-stl>=3.2:../../devel/sgi-stl
-USE_LIBTOOL= # defined
-
DIST_SUBDIR= ${PKGNAME}
-NO_WRKSUBDIR= # defined
+EXTRACT_CMD= unzip -aaoq ${DOWNLOADED_DISTFILE}
+USE_LIBTOOL= # defined
BOOST_VERS= 0:0
MAKE_ENV+= BOOST_VERS="${BOOST_VERS}"
@@ -29,18 +29,16 @@ HTMLDIR= ${PREFIX}/share/doc/html/boost
# 1) Extract everything in text mode with CR/LF -> LF conversions.
# 2) Extract binary files in binary mode.
#
-# We remove the dir_it library since our GCC (egcs-1.1.2) doesn't
-# support namespaces and hence can't compile `struct iterator' needed
-# by dir_it.
+# Even though our current GCC (egcs-1.1.2) doesn't support namespaces and
+# hence can't compile some of the C++ constructs used by some of the Boost
+# libraries, we install all of it anyway, just in case there is an installed
+# compiler (like gcc-2.95.2) capable of compiling them.
#
post-extract:
- cd ${WRKSRC} && unzip -aaLo \
- ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}
- cd ${WRKSRC} && unzip -aCLo \
+ cd ${WRKDIR} && unzip -aCoq \
${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} "*.gif" "*.jpg" "*.zip"
- cd ${WRKSRC} && unzip -aaCLu \
+ cd ${WRKSRC} && unzip -aaCqu \
libs/pri_queue/boost-heap-1.0.zip "boost/*"
- ${RM} -rf ${WRKSRC}/libs/dir_it
do-configure:
${CP} ${FILESDIR}/Makefile ${WRKSRC}
diff --git a/devel/boost/files/md5 b/devel/boost/files/md5
index 3f7c5bc957d..cb480aaf275 100644
--- a/devel/boost/files/md5
+++ b/devel/boost/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.5 2000/08/11 20:20:40 jlam Exp $
+$NetBSD: md5,v 1.6 2000/11/03 00:16:37 jlam Exp $
-MD5 (boost-1.17.0/boost_all.zip) = 527caf935ffd137f58880fb21f0b509c
+MD5 (boost-1.18.1/boost_all.zip) = f78ec9016ecf2baf5cf9f44ec60465a0
diff --git a/devel/boost/pkg/PLIST b/devel/boost/pkg/PLIST
index ba742f00059..02b250480ea 100644
--- a/devel/boost/pkg/PLIST
+++ b/devel/boost/pkg/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2000/08/11 20:20:40 jlam Exp $
+@comment $NetBSD: PLIST,v 1.7 2000/11/03 00:16:37 jlam Exp $
include/boost/array.hpp
include/boost/array_traits.hpp
include/boost/call_traits.hpp
@@ -6,6 +6,7 @@ include/boost/cast.hpp
include/boost/compose.hpp
include/boost/compressed_pair.hpp
include/boost/config.hpp
+include/boost/cregex.hpp
include/boost/cstdint.hpp
include/boost/d_heap.cc
include/boost/d_heap.hpp
@@ -18,6 +19,43 @@ include/boost/detail/type_traits.hpp
include/boost/f_heap.cc
include/boost/f_heap.hpp
include/boost/functional.hpp
+include/boost/graph/adjacency_list.hpp
+include/boost/graph/bellman_ford_shortest_paths.hpp
+include/boost/graph/breadth_first_search.hpp
+include/boost/graph/connected_components.hpp
+include/boost/graph/cuthill_mckee_ordering.hpp
+include/boost/graph/depth_first_search.hpp
+include/boost/graph/detail/adj_list_edge_iterator.hpp
+include/boost/graph/detail/adjacency_list.hpp
+include/boost/graph/detail/array_binary_tree.hpp
+include/boost/graph/detail/connected_components.hpp
+include/boost/graph/detail/edge.hpp
+include/boost/graph/detail/incidence_iterator.hpp
+include/boost/graph/detail/is_same.hpp
+include/boost/graph/detail/self_avoiding_walk.hpp
+include/boost/graph/dijkstra_shortest_paths.hpp
+include/boost/graph/edge_list.hpp
+include/boost/graph/graph_as_tree.hpp
+include/boost/graph/graph_concepts.hpp
+include/boost/graph/graph_traits.hpp
+include/boost/graph/graph_utility.hpp
+include/boost/graph/johnson_all_pairs_shortest.hpp
+include/boost/graph/kruskal_min_spanning_tree.hpp
+include/boost/graph/leda_graph.hpp
+include/boost/graph/matrix_as_graph.hpp
+include/boost/graph/prim_minimum_spanning_tree.hpp
+include/boost/graph/properties.hpp
+include/boost/graph/relax.hpp
+include/boost/graph/reverse_graph.hpp
+include/boost/graph/sequential_vertex_coloring.hpp
+include/boost/graph/smallest_last_ordering.hpp
+include/boost/graph/stanford_graph.hpp
+include/boost/graph/topological_sort.hpp
+include/boost/graph/transpose_graph.hpp
+include/boost/graph/tree_traits.hpp
+include/boost/graph/uniform_cost_search.hpp
+include/boost/graph/vector_as_graph.hpp
+include/boost/graph/visitors.hpp
include/boost/heap.hpp
include/boost/integer.hpp
include/boost/integer_traits.hpp
@@ -31,12 +69,53 @@ include/boost/p_heap.cc
include/boost/p_heap.hpp
include/boost/p_queue.cc
include/boost/p_queue.hpp
+include/boost/pattern_except.hpp
+include/boost/pending/bucket_sorter.hpp
+include/boost/pending/concept_checks.hpp
+include/boost/pending/concept_skeletons.hpp
+include/boost/pending/container_traits.hpp
+include/boost/pending/cstddef.hpp
+include/boost/pending/ct_if.hpp
+include/boost/pending/detail/disjoint_sets.hpp
+include/boost/pending/detail/int_iterator.hpp
+include/boost/pending/detail/property.hpp
+include/boost/pending/disjoint_sets.hpp
+include/boost/pending/fenced_priority_queue.hpp
+include/boost/pending/fibonacci_heap.hpp
+include/boost/pending/indirect_cmp.hpp
+include/boost/pending/integer_range.hpp
+include/boost/pending/is_heap.hpp
+include/boost/pending/iterator_adaptors.hpp
+include/boost/pending/iterator_tests.hpp
+include/boost/pending/limits.hpp
+include/boost/pending/mutable_heap.hpp
+include/boost/pending/mutable_queue.hpp
+include/boost/pending/property.hpp
+include/boost/pending/queue.hpp
+include/boost/pending/stringtok.hpp
include/boost/progress.hpp
+include/boost/property_map.hpp
include/boost/queue.hpp
include/boost/r_heap.cc
include/boost/r_heap.hpp
include/boost/random.hpp
include/boost/rational.hpp
+include/boost/re_detail/fileiter.hpp
+include/boost/re_detail/regex_compile.hpp
+include/boost/re_detail/regex_config.hpp
+include/boost/re_detail/regex_cstring.hpp
+include/boost/re_detail/regex_format.hpp
+include/boost/re_detail/regex_kmp.hpp
+include/boost/re_detail/regex_library_include.hpp
+include/boost/re_detail/regex_match.hpp
+include/boost/re_detail/regex_options.hpp
+include/boost/re_detail/regex_raw_buffer.hpp
+include/boost/re_detail/regex_split.hpp
+include/boost/re_detail/regex_stack.hpp
+include/boost/re_detail/regex_synch.hpp
+include/boost/regex.h
+include/boost/regex.hpp
+include/boost/regex_traits.hpp
include/boost/s_heap.cc
include/boost/s_heap.hpp
include/boost/smart_ptr.hpp
@@ -52,7 +131,7 @@ share/doc/html/boost/c++boost.gif
share/doc/html/boost/index.htm
share/doc/html/boost/libraries.htm
share/doc/html/boost/libs/array/array.hpp.html
-share/doc/html/boost/libs/array/array.htm
+share/doc/html/boost/libs/array/array.html
share/doc/html/boost/libs/array/array1.cpp
share/doc/html/boost/libs/array/array1.cpp.html
share/doc/html/boost/libs/array/array2.cpp
@@ -64,6 +143,7 @@ share/doc/html/boost/libs/array/array4.cpp.html
share/doc/html/boost/libs/array/array5.cpp
share/doc/html/boost/libs/array/array5.cpp.html
share/doc/html/boost/libs/array/index.htm
+share/doc/html/boost/libs/array/print.hpp
share/doc/html/boost/libs/array/print.hpp.html
share/doc/html/boost/libs/array_traits/array-article.html
share/doc/html/boost/libs/array_traits/array_traits.html
@@ -82,10 +162,21 @@ share/doc/html/boost/libs/compose/compose4.cpp.html
share/doc/html/boost/libs/compose/index.htm
share/doc/html/boost/libs/compose/print.hpp
share/doc/html/boost/libs/compose/print.hpp.html
+share/doc/html/boost/libs/concept_checking/concept_checking.html
+share/doc/html/boost/libs/concept_checking/stl_concept_checks.cpp
+share/doc/html/boost/libs/concept_checking/stl_concept_checks.expected
share/doc/html/boost/libs/config/config_test.cpp
share/doc/html/boost/libs/config/index.htm
share/doc/html/boost/libs/cs-linux2.html
share/doc/html/boost/libs/cs-win32.html
+share/doc/html/boost/libs/dir_it/boost.h
+share/doc/html/boost/libs/dir_it/dir_it.html
+share/doc/html/boost/libs/dir_it/dir_it_tst.cpp
+share/doc/html/boost/libs/dir_it/directory.cpp
+share/doc/html/boost/libs/dir_it/directory.h
+share/doc/html/boost/libs/dir_it/index.htm
+share/doc/html/boost/libs/disjoint_sets/bibliography.html
+share/doc/html/boost/libs/disjoint_sets/disjoint_sets.html
share/doc/html/boost/libs/functional/binders.html
share/doc/html/boost/libs/functional/function_test.cpp
share/doc/html/boost/libs/functional/function_traits.html
@@ -93,6 +184,192 @@ share/doc/html/boost/libs/functional/index.html
share/doc/html/boost/libs/functional/mem_fun.html
share/doc/html/boost/libs/functional/negators.html
share/doc/html/boost/libs/functional/ptr_fun.html
+share/doc/html/boost/libs/graph/LICENSE
+share/doc/html/boost/libs/graph/docs/AdjacencyGraph.html
+share/doc/html/boost/libs/graph/docs/AdjacencyMatrix.html
+share/doc/html/boost/libs/graph/docs/BFSVisitor.html
+share/doc/html/boost/libs/graph/docs/BellmanFordVisitor.html
+share/doc/html/boost/libs/graph/docs/BidirectionalGraph.html
+share/doc/html/boost/libs/graph/docs/Buffer.html
+share/doc/html/boost/libs/graph/docs/ColorValue.html
+share/doc/html/boost/libs/graph/docs/DFSVisitor.html
+share/doc/html/boost/libs/graph/docs/EdgeListGraph.html
+share/doc/html/boost/libs/graph/docs/EventVisitor.html
+share/doc/html/boost/libs/graph/docs/EventVisitorList.html
+share/doc/html/boost/libs/graph/docs/Graph.html
+share/doc/html/boost/libs/graph/docs/IncidenceGraph.html
+share/doc/html/boost/libs/graph/docs/MutableGraph.html
+share/doc/html/boost/libs/graph/docs/MutablePropertyGraph.html
+share/doc/html/boost/libs/graph/docs/Property.html
+share/doc/html/boost/libs/graph/docs/PropertyGraph.html
+share/doc/html/boost/libs/graph/docs/UniformCostVisitor.html
+share/doc/html/boost/libs/graph/docs/VertexAndEdgeListGraph.html
+share/doc/html/boost/libs/graph/docs/VertexListGraph.html
+share/doc/html/boost/libs/graph/docs/acknowledgements.html
+share/doc/html/boost/libs/graph/docs/adjacency_list.html
+share/doc/html/boost/libs/graph/docs/adjacency_list_traits.html
+share/doc/html/boost/libs/graph/docs/bellman_ford_shortest.html
+share/doc/html/boost/libs/graph/docs/bellman_visitor.html
+share/doc/html/boost/libs/graph/docs/bfs_visitor.html
+share/doc/html/boost/libs/graph/docs/bibliography.html
+share/doc/html/boost/libs/graph/docs/breadth_first_search.html
+share/doc/html/boost/libs/graph/docs/challenge.html
+share/doc/html/boost/libs/graph/docs/connected_components.html
+share/doc/html/boost/libs/graph/docs/constructing_algorithms.html
+share/doc/html/boost/libs/graph/docs/depth_first_search.html
+share/doc/html/boost/libs/graph/docs/depth_first_visit.html
+share/doc/html/boost/libs/graph/docs/dfs_visitor.html
+share/doc/html/boost/libs/graph/docs/dijkstra_shortest_paths.html
+share/doc/html/boost/libs/graph/docs/distance_recorder.html
+share/doc/html/boost/libs/graph/docs/dynamic_components.html
+share/doc/html/boost/libs/graph/docs/edge_list.html
+share/doc/html/boost/libs/graph/docs/faq.html
+share/doc/html/boost/libs/graph/docs/figs/Makefile
+share/doc/html/boost/libs/graph/docs/figs/adj_list.gif
+share/doc/html/boost/libs/graph/docs/figs/adj_matrix.gif
+share/doc/html/boost/libs/graph/docs/figs/analogy.gif
+share/doc/html/boost/libs/graph/docs/figs/back_edges.gif
+share/doc/html/boost/libs/graph/docs/figs/bfs_example.gif
+share/doc/html/boost/libs/graph/docs/figs/bfs_family.gif
+share/doc/html/boost/libs/graph/docs/figs/bfs_visitor.gif
+share/doc/html/boost/libs/graph/docs/figs/concepts.gif
+share/doc/html/boost/libs/graph/docs/figs/dfs.gif
+share/doc/html/boost/libs/graph/docs/figs/dfs_example.gif
+share/doc/html/boost/libs/graph/docs/figs/dfs_family.gif
+share/doc/html/boost/libs/graph/docs/figs/dfs_visitor.gif
+share/doc/html/boost/libs/graph/docs/figs/digraph.gif
+share/doc/html/boost/libs/graph/docs/figs/disjoint_set_family.gif
+share/doc/html/boost/libs/graph/docs/figs/edge_list.gif
+share/doc/html/boost/libs/graph/docs/figs/file_dep.gif
+share/doc/html/boost/libs/graph/docs/figs/forward_or_cross_edges.gif
+share/doc/html/boost/libs/graph/docs/figs/graph_search.gif
+share/doc/html/boost/libs/graph/docs/figs/knights_tour.gif
+share/doc/html/boost/libs/graph/docs/figs/quick_start.gif
+share/doc/html/boost/libs/graph/docs/figs/search_states.gif
+share/doc/html/boost/libs/graph/docs/figs/stl_iter.gif
+share/doc/html/boost/libs/graph/docs/figs/tree_edges.gif
+share/doc/html/boost/libs/graph/docs/figs/undigraph.gif
+share/doc/html/boost/libs/graph/docs/figs/visitor.gif
+share/doc/html/boost/libs/graph/docs/file_dependency_example.html
+share/doc/html/boost/libs/graph/docs/graph_coloring.html
+share/doc/html/boost/libs/graph/docs/graph_concepts.html
+share/doc/html/boost/libs/graph/docs/graph_theory_review.html
+share/doc/html/boost/libs/graph/docs/graph_traits.html
+share/doc/html/boost/libs/graph/docs/history.html
+share/doc/html/boost/libs/graph/docs/incident.html
+share/doc/html/boost/libs/graph/docs/index.html
+share/doc/html/boost/libs/graph/docs/iscope99.pdf
+share/doc/html/boost/libs/graph/docs/johnson_all_pairs_shortest.html
+share/doc/html/boost/libs/graph/docs/kevin_bacon.html
+share/doc/html/boost/libs/graph/docs/known_problems.html
+share/doc/html/boost/libs/graph/docs/kruskal_min_spanning_tree.html
+share/doc/html/boost/libs/graph/docs/leda_conversion.html
+share/doc/html/boost/libs/graph/docs/null_visitor.html
+share/doc/html/boost/libs/graph/docs/opposite.html
+share/doc/html/boost/libs/graph/docs/predecessor_recorder.html
+share/doc/html/boost/libs/graph/docs/prim_minimum_spanning_tree.html
+share/doc/html/boost/libs/graph/docs/property_map.html
+share/doc/html/boost/libs/graph/docs/property_writer.html
+share/doc/html/boost/libs/graph/docs/publications.html
+share/doc/html/boost/libs/graph/docs/quick_tour.html
+share/doc/html/boost/libs/graph/docs/sparse_matrix_ordering.html
+share/doc/html/boost/libs/graph/docs/table_of_contents.html
+share/doc/html/boost/libs/graph/docs/time_stamper.html
+share/doc/html/boost/libs/graph/docs/topological_sort.html
+share/doc/html/boost/libs/graph/docs/transpose_graph.html
+share/doc/html/boost/libs/graph/docs/trouble_shooting.html
+share/doc/html/boost/libs/graph/docs/ucs_visitor.html
+share/doc/html/boost/libs/graph/docs/uniform_cost_search.html
+share/doc/html/boost/libs/graph/docs/using_adjacency_list.html
+share/doc/html/boost/libs/graph/docs/using_boost_graph_library.html
+share/doc/html/boost/libs/graph/docs/using_graph_algorithms.html
+share/doc/html/boost/libs/graph/docs/using_property_maps.html
+share/doc/html/boost/libs/graph/docs/visitor_concepts.html
+share/doc/html/boost/libs/graph/examples/LEDA_concept_check.cpp
+share/doc/html/boost/libs/graph/examples/adjacency_list.cpp
+share/doc/html/boost/libs/graph/examples/adjacency_list.expected
+share/doc/html/boost/libs/graph/examples/bellman_ford.cpp
+share/doc/html/boost/libs/graph/examples/bellman_ford.expected
+share/doc/html/boost/libs/graph/examples/bfs.cpp
+share/doc/html/boost/libs/graph/examples/bfs.expected
+share/doc/html/boost/libs/graph/examples/bfs_basics.cpp
+share/doc/html/boost/libs/graph/examples/bfs_basics.expected
+share/doc/html/boost/libs/graph/examples/bucket_sorter.cpp
+share/doc/html/boost/libs/graph/examples/city_visitor.cpp
+share/doc/html/boost/libs/graph/examples/components_on_edgelist.cpp
+share/doc/html/boost/libs/graph/examples/components_on_edgelist.expected
+share/doc/html/boost/libs/graph/examples/concept_checks.cpp
+share/doc/html/boost/libs/graph/examples/concept_checks.expected
+share/doc/html/boost/libs/graph/examples/connected_components.cpp
+share/doc/html/boost/libs/graph/examples/connected_components.expected
+share/doc/html/boost/libs/graph/examples/container_gen.cpp
+share/doc/html/boost/libs/graph/examples/container_gen.expected
+share/doc/html/boost/libs/graph/examples/cuthill_mckee_ordering.cpp
+share/doc/html/boost/libs/graph/examples/cuthill_mckee_ordering.expected
+share/doc/html/boost/libs/graph/examples/dave.cpp
+share/doc/html/boost/libs/graph/examples/dave.expected
+share/doc/html/boost/libs/graph/examples/dfs.cpp
+share/doc/html/boost/libs/graph/examples/dfs.expected
+share/doc/html/boost/libs/graph/examples/dfs_basics.cpp
+share/doc/html/boost/libs/graph/examples/dfs_basics.expected
+share/doc/html/boost/libs/graph/examples/dfs_parenthesis.cpp
+share/doc/html/boost/libs/graph/examples/dfs_parenthesis.expected
+share/doc/html/boost/libs/graph/examples/dijkstra.cpp
+share/doc/html/boost/libs/graph/examples/dijkstra.expected
+share/doc/html/boost/libs/graph/examples/dynamic_components.cpp
+share/doc/html/boost/libs/graph/examples/dynamic_components.expected
+share/doc/html/boost/libs/graph/examples/edge_basics.cpp
+share/doc/html/boost/libs/graph/examples/edge_basics.expected
+share/doc/html/boost/libs/graph/examples/edge_property.cpp
+share/doc/html/boost/libs/graph/examples/edge_property.expected
+share/doc/html/boost/libs/graph/examples/exterior_properties.cpp
+share/doc/html/boost/libs/graph/examples/exterior_properties.expected
+share/doc/html/boost/libs/graph/examples/exterior_property_map.cpp
+share/doc/html/boost/libs/graph/examples/exterior_property_map.expected
+share/doc/html/boost/libs/graph/examples/family_tree.cpp
+share/doc/html/boost/libs/graph/examples/family_tree.expected
+share/doc/html/boost/libs/graph/examples/fibonacci_heap.cpp
+share/doc/html/boost/libs/graph/examples/fibonacci_heap.expected
+share/doc/html/boost/libs/graph/examples/file_dependencies.cpp
+share/doc/html/boost/libs/graph/examples/file_dependencies.expected
+share/doc/html/boost/libs/graph/examples/graph.cpp
+share/doc/html/boost/libs/graph/examples/in_edges.cpp
+share/doc/html/boost/libs/graph/examples/in_edges.expected
+share/doc/html/boost/libs/graph/examples/interior_property_map.cpp
+share/doc/html/boost/libs/graph/examples/interior_property_map.expected
+share/doc/html/boost/libs/graph/examples/johnson.cpp
+share/doc/html/boost/libs/graph/examples/johnson.expected
+share/doc/html/boost/libs/graph/examples/kevin_bacon.cpp
+share/doc/html/boost/libs/graph/examples/kevin_bacon.dat
+share/doc/html/boost/libs/graph/examples/kevin_bacon.expected
+share/doc/html/boost/libs/graph/examples/knights_tour.cpp
+share/doc/html/boost/libs/graph/examples/knights_tour.expected
+share/doc/html/boost/libs/graph/examples/kruskal.cpp
+share/doc/html/boost/libs/graph/examples/kruskal.expected
+share/doc/html/boost/libs/graph/examples/miles_span.cpp
+share/doc/html/boost/libs/graph/examples/miles_span.expected
+share/doc/html/boost/libs/graph/examples/prim.cpp
+share/doc/html/boost/libs/graph/examples/prim.expected
+share/doc/html/boost/libs/graph/examples/quick_tour.cpp
+share/doc/html/boost/libs/graph/examples/quick_tour.expected
+share/doc/html/boost/libs/graph/examples/remove_edge_if_bidir.cpp
+share/doc/html/boost/libs/graph/examples/remove_edge_if_bidir.expected
+share/doc/html/boost/libs/graph/examples/remove_edge_if_dir.cpp
+share/doc/html/boost/libs/graph/examples/remove_edge_if_dir.expected
+share/doc/html/boost/libs/graph/examples/remove_edge_if_undir.cpp
+share/doc/html/boost/libs/graph/examples/remove_edge_if_undir.expected
+share/doc/html/boost/libs/graph/examples/topo_sort.cpp
+share/doc/html/boost/libs/graph/examples/topo_sort.expected
+share/doc/html/boost/libs/graph/examples/undirected.cpp
+share/doc/html/boost/libs/graph/examples/undirected.expected
+share/doc/html/boost/libs/graph/examples/vector_as_graph.cpp
+share/doc/html/boost/libs/graph/examples/vector_as_graph.expected
+share/doc/html/boost/libs/graph/examples/vertex_basics.cpp
+share/doc/html/boost/libs/graph/examples/vertex_basics.expected
+share/doc/html/boost/libs/graph/examples/visitor.cpp
+share/doc/html/boost/libs/graph/examples/visitor.expected
+share/doc/html/boost/libs/graph/test/graph.cpp
+share/doc/html/boost/libs/graph/test/graph_type.hpp
share/doc/html/boost/libs/integer/cstdint.htm
share/doc/html/boost/libs/integer/cstdint_test.cpp
share/doc/html/boost/libs/integer/index.htm
@@ -121,6 +398,13 @@ share/doc/html/boost/libs/pri_queue/r_heap.html
share/doc/html/boost/libs/pri_queue/s_heap.html
share/doc/html/boost/libs/pri_queue/sidebar.jpg
share/doc/html/boost/libs/pri_queue/stack.html
+share/doc/html/boost/libs/property_map/LvaluePropertyMap.html
+share/doc/html/boost/libs/property_map/ReadWritePropertyMap.html
+share/doc/html/boost/libs/property_map/ReadablePropertyMap.html
+share/doc/html/boost/libs/property_map/WritablePropertyMap.html
+share/doc/html/boost/libs/property_map/identity_property_map.html
+share/doc/html/boost/libs/property_map/iterator_property_map.html
+share/doc/html/boost/libs/property_map/property_map.html
share/doc/html/boost/libs/random/histogram.cpp
share/doc/html/boost/libs/random/index.html
share/doc/html/boost/libs/random/integrate.hpp
@@ -139,6 +423,111 @@ share/doc/html/boost/libs/random/statistic_tests.hpp
share/doc/html/boost/libs/rational/index.html
share/doc/html/boost/libs/rational/rational.html
share/doc/html/boost/libs/rational/rational_example.cpp
+share/doc/html/boost/libs/regex/appendix.htm
+share/doc/html/boost/libs/regex/changes.txt
+share/doc/html/boost/libs/regex/configure
+share/doc/html/boost/libs/regex/configure.in
+share/doc/html/boost/libs/regex/demo/c_compiler_checks/posix_api_compiler_check.c
+share/doc/html/boost/libs/regex/demo/c_compiler_checks/wide_posix_api_compiler_check.c
+share/doc/html/boost/libs/regex/demo/jgrep/bc55.mak
+share/doc/html/boost/libs/regex/demo/jgrep/bcb4.mak
+share/doc/html/boost/libs/regex/demo/jgrep/bcb5.mak
+share/doc/html/boost/libs/regex/demo/jgrep/gcc.mak
+share/doc/html/boost/libs/regex/demo/jgrep/jgrep.cpp
+share/doc/html/boost/libs/regex/demo/jgrep/jgrep.h
+share/doc/html/boost/libs/regex/demo/jgrep/main.cpp
+share/doc/html/boost/libs/regex/demo/jgrep/makefile.in
+share/doc/html/boost/libs/regex/demo/jgrep/sunpro.mak
+share/doc/html/boost/libs/regex/demo/jgrep/vc6-stlport.mak
+share/doc/html/boost/libs/regex/demo/jgrep/vc6.mak
+share/doc/html/boost/libs/regex/demo/regress/bc55.mak
+share/doc/html/boost/libs/regex/demo/regress/bcb4.mak
+share/doc/html/boost/libs/regex/demo/regress/bcb5.mak
+share/doc/html/boost/libs/regex/demo/regress/egcs.mak
+share/doc/html/boost/libs/regex/demo/regress/gcc.mak
+share/doc/html/boost/libs/regex/demo/regress/makefile.in
+share/doc/html/boost/libs/regex/demo/regress/parse.cpp
+share/doc/html/boost/libs/regex/demo/regress/r1.cpp
+share/doc/html/boost/libs/regex/demo/regress/r2.cpp
+share/doc/html/boost/libs/regex/demo/regress/r3.cpp
+share/doc/html/boost/libs/regex/demo/regress/r4.cpp
+share/doc/html/boost/libs/regex/demo/regress/r5.cpp
+share/doc/html/boost/libs/regex/demo/regress/r6.cpp
+share/doc/html/boost/libs/regex/demo/regress/regress.cpp
+share/doc/html/boost/libs/regex/demo/regress/regress.h
+share/doc/html/boost/libs/regex/demo/regress/sunpro.mak
+share/doc/html/boost/libs/regex/demo/regress/test1252.txt
+share/doc/html/boost/libs/regex/demo/regress/tests.cpp
+share/doc/html/boost/libs/regex/demo/regress/tests.txt
+share/doc/html/boost/libs/regex/demo/regress/vc6-stlport.mak
+share/doc/html/boost/libs/regex/demo/regress/vc6.mak
+share/doc/html/boost/libs/regex/demo/snippets/snip1.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip10.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip2.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip3.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip4.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip5.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip6.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip7.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip8.cpp
+share/doc/html/boost/libs/regex/demo/snippets/snip9.cpp
+share/doc/html/boost/libs/regex/demo/timer/bc55.mak
+share/doc/html/boost/libs/regex/demo/timer/bcb4.mak
+share/doc/html/boost/libs/regex/demo/timer/bcb5.mak
+share/doc/html/boost/libs/regex/demo/timer/gcc.mak
+share/doc/html/boost/libs/regex/demo/timer/makefile.in
+share/doc/html/boost/libs/regex/demo/timer/regex_timer.cpp
+share/doc/html/boost/libs/regex/demo/timer/sunpro.mak
+share/doc/html/boost/libs/regex/demo/timer/vc6-stlport.mak
+share/doc/html/boost/libs/regex/demo/timer/vc6.mak
+share/doc/html/boost/libs/regex/dmi.sh
+share/doc/html/boost/libs/regex/faq.htm
+share/doc/html/boost/libs/regex/format_string.htm
+share/doc/html/boost/libs/regex/hl_ref.htm
+share/doc/html/boost/libs/regex/index.htm
+share/doc/html/boost/libs/regex/introduction.htm
+share/doc/html/boost/libs/regex/jm_opt.in
+share/doc/html/boost/libs/regex/lib/bc55.mak
+share/doc/html/boost/libs/regex/lib/bcb4.mak
+share/doc/html/boost/libs/regex/lib/bcb5.mak
+share/doc/html/boost/libs/regex/lib/gcc.mak
+share/doc/html/boost/libs/regex/lib/makefile.in
+share/doc/html/boost/libs/regex/lib/makefile.org
+share/doc/html/boost/libs/regex/lib/sunpro.mak
+share/doc/html/boost/libs/regex/lib/vc6-stlport.mak
+share/doc/html/boost/libs/regex/lib/vc6.mak
+share/doc/html/boost/libs/regex/licence.txt
+share/doc/html/boost/libs/regex/makefile.in
+share/doc/html/boost/libs/regex/makefile_gen
+share/doc/html/boost/libs/regex/old_include/cregex
+share/doc/html/boost/libs/regex/old_include/cregex.h
+share/doc/html/boost/libs/regex/old_include/fileiter.h
+share/doc/html/boost/libs/regex/old_include/regex
+share/doc/html/boost/libs/regex/old_include/regex.h
+share/doc/html/boost/libs/regex/old_include/tests/snip1.cpp
+share/doc/html/boost/libs/regex/old_include/tests/snip2.cpp
+share/doc/html/boost/libs/regex/old_include/tests/snip3.cpp
+share/doc/html/boost/libs/regex/old_include/tests/snip4.cpp
+share/doc/html/boost/libs/regex/old_include/tests/snip5.cpp
+share/doc/html/boost/libs/regex/old_include/tests/snip6.cpp
+share/doc/html/boost/libs/regex/old_include/tests/snip7.cpp
+share/doc/html/boost/libs/regex/posix_ref.htm
+share/doc/html/boost/libs/regex/readme.txt
+share/doc/html/boost/libs/regex/src/c_regex_traits.cpp
+share/doc/html/boost/libs/regex/src/c_regex_traits_common.cpp
+share/doc/html/boost/libs/regex/src/cpp_regex_traits.cpp
+share/doc/html/boost/libs/regex/src/cregex.cpp
+share/doc/html/boost/libs/regex/src/fileiter.cpp
+share/doc/html/boost/libs/regex/src/posix_api.cpp
+share/doc/html/boost/libs/regex/src/primary_transform.hpp
+share/doc/html/boost/libs/regex/src/regex.cpp
+share/doc/html/boost/libs/regex/src/regex_debug.cpp
+share/doc/html/boost/libs/regex/src/regex_synch.cpp
+share/doc/html/boost/libs/regex/src/w32_regex_traits.cpp
+share/doc/html/boost/libs/regex/src/wide_posix_api.cpp
+share/doc/html/boost/libs/regex/syntax.htm
+share/doc/html/boost/libs/regex/template_class_ref.htm
+share/doc/html/boost/libs/regex/traits_class_ref.htm
share/doc/html/boost/libs/regrtest.py
share/doc/html/boost/libs/smart_ptr/gccspeed.gif
share/doc/html/boost/libs/smart_ptr/index.htm
@@ -156,6 +545,8 @@ share/doc/html/boost/libs/timer/prg_timer.cpp
share/doc/html/boost/libs/timer/timer.cpp
share/doc/html/boost/libs/timer/timer.htm
share/doc/html/boost/libs/timer/timer_test.cpp
+share/doc/html/boost/libs/utility/CopyConstructible.html
+share/doc/html/boost/libs/utility/MultiPassInputIterator.html
share/doc/html/boost/libs/utility/algo_opt_examples.cpp
share/doc/html/boost/libs/utility/c++_type_traits.htm
share/doc/html/boost/libs/utility/call_traits.htm
@@ -165,14 +556,19 @@ share/doc/html/boost/libs/utility/cast_test.cpp
share/doc/html/boost/libs/utility/compressed_pair.htm
share/doc/html/boost/libs/utility/compressed_pair_test.cpp
share/doc/html/boost/libs/utility/index.htm
+share/doc/html/boost/libs/utility/iterator_adaptor_examples.cpp
+share/doc/html/boost/libs/utility/iterator_adaptors.htm
share/doc/html/boost/libs/utility/iterators_test.cpp
share/doc/html/boost/libs/utility/noncopyable_test.cpp
share/doc/html/boost/libs/utility/operators.htm
share/doc/html/boost/libs/utility/operators_test.cpp
+share/doc/html/boost/libs/utility/tie.html
+share/doc/html/boost/libs/utility/tie_example.cpp
share/doc/html/boost/libs/utility/type_traits.htm
share/doc/html/boost/libs/utility/type_traits_test.cpp
share/doc/html/boost/libs/utility/type_traits_test.hpp
share/doc/html/boost/libs/utility/utility.htm
+share/doc/html/boost/more/borland_cpp.html
share/doc/html/boost/more/count_bdy.htm
share/doc/html/boost/more/faq.htm
share/doc/html/boost/more/feature_model_diagrams.htm
@@ -181,23 +577,49 @@ share/doc/html/boost/more/header.htm
share/doc/html/boost/more/imp_vars.htm
share/doc/html/boost/more/index.htm
share/doc/html/boost/more/lib_guide.htm
+share/doc/html/boost/more/library_reuse.htm
share/doc/html/boost/more/submission_process.htm
share/doc/html/boost/more/use_other_libs.htm
@dirrm share/doc/html/boost/more
@dirrm share/doc/html/boost/libs/utility
@dirrm share/doc/html/boost/libs/timer
@dirrm share/doc/html/boost/libs/smart_ptr
+@dirrm share/doc/html/boost/libs/regex/src
+@dirrm share/doc/html/boost/libs/regex/old_include/tests
+@dirrm share/doc/html/boost/libs/regex/old_include
+@dirrm share/doc/html/boost/libs/regex/lib
+@dirrm share/doc/html/boost/libs/regex/demo/timer
+@dirrm share/doc/html/boost/libs/regex/demo/snippets
+@dirrm share/doc/html/boost/libs/regex/demo/regress
+@dirrm share/doc/html/boost/libs/regex/demo/jgrep
+@dirrm share/doc/html/boost/libs/regex/demo/c_compiler_checks
+@dirrm share/doc/html/boost/libs/regex/demo
+@dirrm share/doc/html/boost/libs/regex
@dirrm share/doc/html/boost/libs/rational
@dirrm share/doc/html/boost/libs/random
+@dirrm share/doc/html/boost/libs/property_map
@dirrm share/doc/html/boost/libs/pri_queue
@dirrm share/doc/html/boost/libs/min_rand
@dirrm share/doc/html/boost/libs/integer
+@dirrm share/doc/html/boost/libs/graph/test
+@dirrm share/doc/html/boost/libs/graph/examples
+@dirrm share/doc/html/boost/libs/graph/docs/figs
+@dirrm share/doc/html/boost/libs/graph/docs
+@dirrm share/doc/html/boost/libs/graph
@dirrm share/doc/html/boost/libs/functional
+@dirrm share/doc/html/boost/libs/disjoint_sets
+@dirrm share/doc/html/boost/libs/dir_it
@dirrm share/doc/html/boost/libs/config
+@dirrm share/doc/html/boost/libs/concept_checking
@dirrm share/doc/html/boost/libs/compose
@dirrm share/doc/html/boost/libs/array_traits
@dirrm share/doc/html/boost/libs/array
@dirrm share/doc/html/boost/libs
@dirrm share/doc/html/boost
+@dirrm include/boost/re_detail
+@dirrm include/boost/pending/detail
+@dirrm include/boost/pending
+@dirrm include/boost/graph/detail
+@dirrm include/boost/graph
@dirrm include/boost/detail
@dirrm include/boost