diff options
author | John Marino <marino@FreeBSD.org> | 2014-02-15 15:53:14 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-02-15 15:53:14 +0000 |
commit | c43203f308214857f58ce7b7c35777143e854541 (patch) | |
tree | 570cbb2cb8576cf41859bf43bad8c988ac52bf27 | |
parent | 78cf067d4adf6cc6d03efb109057271fa4966f0b (diff) | |
download | ports-c43203f308214857f58ce7b7c35777143e854541.tar.gz ports-c43203f308214857f58ce7b7c35777143e854541.zip |
Notes
-rw-r--r-- | devel/adabooch/Makefile | 54 | ||||
-rw-r--r-- | devel/adabooch/distinfo | 4 | ||||
-rw-r--r-- | devel/adabooch/files/patch-demo-makefile | 11 | ||||
-rw-r--r-- | devel/adabooch/files/patch-test-makefile | 11 | ||||
-rw-r--r-- | devel/adabooch/pkg-descr | 16 | ||||
-rw-r--r-- | devel/adabooch/pkg-plist | 813 |
6 files changed, 629 insertions, 280 deletions
diff --git a/devel/adabooch/Makefile b/devel/adabooch/Makefile index 90cfec923a2d..58b50c8e0e04 100644 --- a/devel/adabooch/Makefile +++ b/devel/adabooch/Makefile @@ -2,36 +2,40 @@ # $FreeBSD$ PORTNAME= adabooch -PORTVERSION= 20030309 +PORTVERSION= 20130322 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE} +MASTER_SITES= SF +MASTER_SITE_SUBDIR= booch95/booch95/${PORTVERSION} DISTNAME= bc-${PORTVERSION} -EXTRACT_SUFX= .tgz MAINTAINER= marino@FreeBSD.org -COMMENT= Library which provide container classes as well as powertools for Ada - -LICENSE= GPLv2 - -NO_BUILD= yes - -do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/lib/adabooch - for i in `${SED} -n "/lib\/adabooch\// s/lib\/adabooch\///p" pkg-plist`; do \ - ${INSTALL_DATA} ${WRKSRC}/$${i} ${STAGEDIR}${PREFIX}/lib/adabooch; \ - done - @${MKDIR} ${STAGEDIR}${PREFIX}/share/adabooch/demo - for i in `${SED} -n "/share\/adabooch\/demo\// s/share\/adabooch\/demo\///p" pkg-plist`; do \ - ${INSTALL_DATA} ${WRKSRC}/demo/$${i} ${STAGEDIR}${PREFIX}/share/adabooch/demo; \ - done - @${MKDIR} ${STAGEDIR}${PREFIX}/share/adabooch/test - for i in `${SED} -n "/share\/adabooch\/test\// s/share\/adabooch\/test\///p" pkg-plist`; do \ - ${INSTALL_DATA} ${WRKSRC}/test/$${i} ${STAGEDIR}${PREFIX}/share/adabooch/test; \ - done +COMMENT= Ada 95 Booch Components + +LICENSE= GPLv2 GMGPL +LICENSE_COMB= multi + +BUILD_DEPENDS= gprbuild:${PORTSDIR}/devel/gprbuild + +USES= ada gmake +USE_BZIP2= yes +HAS_CONFIGURE= yes +ALL_TARGET= libs + +# Demos are available but require that the libraries are already installed +# In other words, adabooch demos requires a separate port to do correctly +OPTIONS_DEFINE= DOCS + +.include <bsd.port.options.mk> + +post-patch: + @${REINPLACE_CMD} -e 's|(prefix)|(DESTDIR)$$(prefix)|g' \ + ${WRKSRC}/Makefile.in post-install: - @${ECHO} - @${ECHO} "The booch library has been installed into ${PREFIX}/lib/adabooch" - @${ECHO} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/html/* ${STAGEDIR}${DOCSDIR}/ + ${RM} ${STAGEDIR}${DOCSDIR}/Makefile +.endif .include <bsd.port.mk> diff --git a/devel/adabooch/distinfo b/devel/adabooch/distinfo index 4830f0c5a01d..97761f6cf793 100644 --- a/devel/adabooch/distinfo +++ b/devel/adabooch/distinfo @@ -1,2 +1,2 @@ -SHA256 (bc-20030309.tgz) = 18b9e9ec09ce514b304ba917dd4ed3632a4490dbcdaa7e172a9af130ee09df63 -SIZE (bc-20030309.tgz) = 133659 +SHA256 (bc-20130322.tar.bz2) = c8320ac9655cd1695018d6142a41e72fa3102d52c8e73e4b1f0c983d7b9d8186 +SIZE (bc-20130322.tar.bz2) = 565959 diff --git a/devel/adabooch/files/patch-demo-makefile b/devel/adabooch/files/patch-demo-makefile deleted file mode 100644 index e3a900581f4d..000000000000 --- a/devel/adabooch/files/patch-demo-makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- demo/makefile.orig Sun Mar 9 20:47:09 2003 -+++ demo/makefile Sun Jan 14 17:21:43 2007 -@@ -22,7 +22,7 @@ - # Demos - - GNATMAKE = gnatmake --GNATMAKE_FLAGS = -I.. -O2 -g -gnatqQafy -gnatwaL -+GNATMAKE_FLAGS = -I/usr/local/lib/booch -O2 -g -gnatqQafy -gnatwaL - - all:: demos - diff --git a/devel/adabooch/files/patch-test-makefile b/devel/adabooch/files/patch-test-makefile deleted file mode 100644 index 7897f36673a0..000000000000 --- a/devel/adabooch/files/patch-test-makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- test/makefile.orig Sun Mar 9 20:47:08 2003 -+++ test/makefile Sun Jan 14 17:28:13 2007 -@@ -28,7 +28,7 @@ - ######## - # Tests - --GNATMAKE_FLAGS = -I.. -O2 -g -gnatqQafy -gnatwaL -+GNATMAKE_FLAGS = -I/usr/local/lib/booch -O2 -g -gnatqQafy -gnatwaL - - test: testable - for t in $(TESTABLE); do \ diff --git a/devel/adabooch/pkg-descr b/devel/adabooch/pkg-descr index 3c8d0abadc2b..62d36b31e9ad 100644 --- a/devel/adabooch/pkg-descr +++ b/devel/adabooch/pkg-descr @@ -1,18 +1,18 @@ -The Ada 95 version of the components will contain the same key abstractions -as the C++ form (Structs, Tools and Support). However, the organization will -be slightly different, particularly in the Support domain. This is because -Ada 95 provides several special forms of memory management that are quite -different from C++. +The Ada 95 Booch components are a port of Grady Booch's C++ components. +They contain the same key abstractions as the C++ form (Structs, Tools and +Support). However, the organization is slightly different, particularly in +the Support domain. This is because Ada 95 provides several special forms +of memory management that are quite different from C++. The Structs category provides an array of structural abstractions (Bags, Collections, Deques, Graphs, Lists, Maps, Queues, Rings, Sets, Stacks, and Trees). The Tools category provides algorithmic abstractions (Searching, -Sorting, etc.). The Support category contains all the "concrete" forms, plus -structures to create the components. +Sorting, etc.). The Support category contains all the "concrete" forms, +plus structures to create the components. Some of the structures permit structural sharing (graphs, lists, and trees). Some structures may also be ordered (collections, dequeues, and queues). There are also multiple forms for some structures: single and double linked lists, directed and undirected graphs, and binary, multiway, and AVL trees. -WWW: http://www.adapower.net/booch/ +WWW: http://booch95.sourceforge.net diff --git a/devel/adabooch/pkg-plist b/devel/adabooch/pkg-plist index c33225aa2fa2..2d4c5e6d42cd 100644 --- a/devel/adabooch/pkg-plist +++ b/devel/adabooch/pkg-plist @@ -1,223 +1,590 @@ -lib/adabooch/bc-containers-bags-bounded.adb -lib/adabooch/bc-containers-bags-dynamic.adb -lib/adabooch/bc-containers-bags-unbounded.adb -lib/adabooch/bc-containers-bags.adb -lib/adabooch/bc-containers-collections-bounded.adb -lib/adabooch/bc-containers-collections-dynamic.adb -lib/adabooch/bc-containers-collections-ordered-bounded.adb -lib/adabooch/bc-containers-collections-ordered-dynamic.adb -lib/adabooch/bc-containers-collections-ordered-unbounded.adb -lib/adabooch/bc-containers-collections-unbounded.adb -lib/adabooch/bc-containers-collections.adb -lib/adabooch/bc-containers-deques-bounded.adb -lib/adabooch/bc-containers-deques-dynamic.adb -lib/adabooch/bc-containers-deques-unbounded.adb -lib/adabooch/bc-containers-deques.adb -lib/adabooch/bc-containers-lists-double.adb -lib/adabooch/bc-containers-lists-single.adb -lib/adabooch/bc-containers-maps-bounded.adb -lib/adabooch/bc-containers-maps-dynamic.adb -lib/adabooch/bc-containers-maps-unbounded.adb -lib/adabooch/bc-containers-maps.adb -lib/adabooch/bc-containers-queues-bounded.adb -lib/adabooch/bc-containers-queues-dynamic.adb -lib/adabooch/bc-containers-queues-ordered-bounded.adb -lib/adabooch/bc-containers-queues-ordered-dynamic.adb -lib/adabooch/bc-containers-queues-ordered-unbounded.adb -lib/adabooch/bc-containers-queues-unbounded.adb -lib/adabooch/bc-containers-queues.adb -lib/adabooch/bc-containers-quicksort.adb -lib/adabooch/bc-containers-rings-bounded.adb -lib/adabooch/bc-containers-rings-dynamic.adb -lib/adabooch/bc-containers-rings-unbounded.adb -lib/adabooch/bc-containers-rings.adb -lib/adabooch/bc-containers-sets-bounded.adb -lib/adabooch/bc-containers-sets-dynamic.adb -lib/adabooch/bc-containers-sets-unbounded.adb -lib/adabooch/bc-containers-sets.adb -lib/adabooch/bc-containers-shellsort.adb -lib/adabooch/bc-containers-stacks-bounded.adb -lib/adabooch/bc-containers-stacks-dynamic.adb -lib/adabooch/bc-containers-stacks-unbounded.adb -lib/adabooch/bc-containers-stacks.adb -lib/adabooch/bc-containers-trees-avl-print.adb -lib/adabooch/bc-containers-trees-avl-validate.adb -lib/adabooch/bc-containers-trees-avl.adb -lib/adabooch/bc-containers-trees-binary-in_order.adb -lib/adabooch/bc-containers-trees-binary-post_order.adb -lib/adabooch/bc-containers-trees-binary-pre_order.adb -lib/adabooch/bc-containers-trees-binary.adb -lib/adabooch/bc-containers-trees-multiway-post_order.adb -lib/adabooch/bc-containers-trees-multiway-pre_order.adb -lib/adabooch/bc-containers-trees-multiway.adb -lib/adabooch/bc-containers.adb -lib/adabooch/bc-copy.adb -lib/adabooch/bc-filter.adb -lib/adabooch/bc-graphs-directed.adb -lib/adabooch/bc-graphs-undirected.adb -lib/adabooch/bc-graphs.adb -lib/adabooch/bc-smart.adb -lib/adabooch/bc-support-bounded.adb -lib/adabooch/bc-support-bounded_hash_tables.adb -lib/adabooch/bc-support-dynamic.adb -lib/adabooch/bc-support-exceptions.adb -lib/adabooch/bc-support-hash_tables.adb -lib/adabooch/bc-support-managed_storage.adb -lib/adabooch/bc-support-synchronization.adb -lib/adabooch/bc-support-unbounded.adb -lib/adabooch/bc-support-unmanaged_storage.adb -lib/adabooch/bc-containers-bags-bounded.ads -lib/adabooch/bc-containers-bags-dynamic.ads -lib/adabooch/bc-containers-bags-unbounded.ads -lib/adabooch/bc-containers-bags.ads -lib/adabooch/bc-containers-collections-bounded.ads -lib/adabooch/bc-containers-collections-dynamic.ads -lib/adabooch/bc-containers-collections-ordered-bounded.ads -lib/adabooch/bc-containers-collections-ordered-dynamic.ads -lib/adabooch/bc-containers-collections-ordered-unbounded.ads -lib/adabooch/bc-containers-collections-ordered.ads -lib/adabooch/bc-containers-collections-unbounded.ads -lib/adabooch/bc-containers-collections.ads -lib/adabooch/bc-containers-deques-bounded.ads -lib/adabooch/bc-containers-deques-dynamic.ads -lib/adabooch/bc-containers-deques-unbounded.ads -lib/adabooch/bc-containers-deques.ads -lib/adabooch/bc-containers-lists-double.ads -lib/adabooch/bc-containers-lists-single.ads -lib/adabooch/bc-containers-lists.ads -lib/adabooch/bc-containers-maps-bounded.ads -lib/adabooch/bc-containers-maps-dynamic.ads -lib/adabooch/bc-containers-maps-unbounded.ads -lib/adabooch/bc-containers-maps.ads -lib/adabooch/bc-containers-queues-bounded.ads -lib/adabooch/bc-containers-queues-dynamic.ads -lib/adabooch/bc-containers-queues-ordered-bounded.ads -lib/adabooch/bc-containers-queues-ordered-dynamic.ads -lib/adabooch/bc-containers-queues-ordered-unbounded.ads -lib/adabooch/bc-containers-queues-ordered.ads -lib/adabooch/bc-containers-queues-unbounded.ads -lib/adabooch/bc-containers-queues.ads -lib/adabooch/bc-containers-quicksort.ads -lib/adabooch/bc-containers-rings-bounded.ads -lib/adabooch/bc-containers-rings-dynamic.ads -lib/adabooch/bc-containers-rings-unbounded.ads -lib/adabooch/bc-containers-rings.ads -lib/adabooch/bc-containers-sets-bounded.ads -lib/adabooch/bc-containers-sets-dynamic.ads -lib/adabooch/bc-containers-sets-unbounded.ads -lib/adabooch/bc-containers-sets.ads -lib/adabooch/bc-containers-shellsort.ads -lib/adabooch/bc-containers-stacks-bounded.ads -lib/adabooch/bc-containers-stacks-dynamic.ads -lib/adabooch/bc-containers-stacks-unbounded.ads -lib/adabooch/bc-containers-stacks.ads -lib/adabooch/bc-containers-trees-avl-print.ads -lib/adabooch/bc-containers-trees-avl-validate.ads -lib/adabooch/bc-containers-trees-avl.ads -lib/adabooch/bc-containers-trees-binary-in_order.ads -lib/adabooch/bc-containers-trees-binary-post_order.ads -lib/adabooch/bc-containers-trees-binary-pre_order.ads -lib/adabooch/bc-containers-trees-binary.ads -lib/adabooch/bc-containers-trees-multiway-post_order.ads -lib/adabooch/bc-containers-trees-multiway-pre_order.ads -lib/adabooch/bc-containers-trees-multiway.ads -lib/adabooch/bc-containers-trees.ads -lib/adabooch/bc-containers.ads -lib/adabooch/bc-copy.ads -lib/adabooch/bc-filter.ads -lib/adabooch/bc-graphs-directed.ads -lib/adabooch/bc-graphs-undirected.ads -lib/adabooch/bc-graphs.ads -lib/adabooch/bc-smart.ads -lib/adabooch/bc-support-bounded.ads -lib/adabooch/bc-support-bounded_hash_tables.ads -lib/adabooch/bc-support-dynamic.ads -lib/adabooch/bc-support-exceptions.ads -lib/adabooch/bc-support-hash_tables.ads -lib/adabooch/bc-support-managed_storage.ads -lib/adabooch/bc-support-standard_storage.ads -lib/adabooch/bc-support-synchronization.ads -lib/adabooch/bc-support-unbounded.ads -lib/adabooch/bc-support-unmanaged_storage.ads -lib/adabooch/bc-support.ads -lib/adabooch/bc.ads -share/adabooch/demo/ada_unit_support.adb -share/adabooch/demo/ada_unit_support.ads -share/adabooch/demo/ada_units.adb -share/adabooch/demo/bcwords.ada -share/adabooch/demo/configuration_demo.adb -share/adabooch/demo/configuration_demo_support.adb -share/adabooch/demo/configuration_demo_support.ads -share/adabooch/demo/global_heap.ads -share/adabooch/demo/lists_for_timing.ads -share/adabooch/demo/lists_for_traversal.adb -share/adabooch/demo/lists_for_traversal.ads -share/adabooch/demo/lists_traversal.adb -share/adabooch/demo/makefile -share/adabooch/demo/ordering_support.adb -share/adabooch/demo/ordering_support.ads -share/adabooch/demo/ordering_test.adb -share/adabooch/demo/queues_for_timing.ads -share/adabooch/demo/storage.adb -share/adabooch/demo/test_synchronization.adb -share/adabooch/demo/time_lists.adb -share/adabooch/demo/time_queues.adb -share/adabooch/demo/unmanaged_storage.adb -share/adabooch/demo/user_map.adb -share/adabooch/demo/user_map_support.adb -share/adabooch/demo/user_map_support.ads -share/adabooch/demo/user_set.adb -share/adabooch/demo/user_set_support.adb -share/adabooch/demo/user_set_support.ads -share/adabooch/test/assertions.adb -share/adabooch/test/assertions.ads -share/adabooch/test/avl_test.adb -share/adabooch/test/avl_test_support.adb -share/adabooch/test/avl_test_support.ads -share/adabooch/test/bag_test.adb -share/adabooch/test/bag_test_support.adb -share/adabooch/test/bag_test_support.ads -share/adabooch/test/chunks.adb -share/adabooch/test/chunks.ads -share/adabooch/test/collection_test.adb -share/adabooch/test/collection_test_support.ads -share/adabooch/test/deque_test.adb -share/adabooch/test/deque_test_support.ads -share/adabooch/test/global_heap.ads -share/adabooch/test/graph_test.adb -share/adabooch/test/graph_test_support.ads -share/adabooch/test/list_test.adb -share/adabooch/test/list_test_support.ads -share/adabooch/test/makefile -share/adabooch/test/map_test.adb -share/adabooch/test/map_test_support.adb -share/adabooch/test/map_test_support.ads -share/adabooch/test/ordered_collection_test.adb -share/adabooch/test/ordered_collection_test_support.ads -share/adabooch/test/ordered_queue_test.adb -share/adabooch/test/ordered_queue_test_support.ads -share/adabooch/test/queue_test.adb -share/adabooch/test/queue_test_support.ads -share/adabooch/test/ring_test.adb -share/adabooch/test/ring_test_support.ads -share/adabooch/test/set_test.adb -share/adabooch/test/set_test_support.adb -share/adabooch/test/set_test_support.ads -share/adabooch/test/smart_test.adb -share/adabooch/test/smart_test_support.adb -share/adabooch/test/smart_test_support.ads -share/adabooch/test/sort_test.adb -share/adabooch/test/stack_test.adb -share/adabooch/test/stack_test_support.ads -share/adabooch/test/stream_test.adb -share/adabooch/test/stream_test_support-tcb.ads -share/adabooch/test/stream_test_support-tcd.ads -share/adabooch/test/stream_test_support-tcu.ads -share/adabooch/test/stream_test_support.adb -share/adabooch/test/stream_test_support.ads -share/adabooch/test/tree_test.adb -share/adabooch/test/tree_test_support.ads -@dirrm lib/adabooch -@dirrm share/adabooch/demo -@dirrm share/adabooch/test -@dirrm share/adabooch +include/bc/bc-containers-bags-bounded.adb +include/bc/bc-containers-bags-bounded.ads +include/bc/bc-containers-bags-dynamic.adb +include/bc/bc-containers-bags-dynamic.ads +include/bc/bc-containers-bags-unbounded.adb +include/bc/bc-containers-bags-unbounded.ads +include/bc/bc-containers-bags-unmanaged.adb +include/bc/bc-containers-bags-unmanaged.ads +include/bc/bc-containers-bags.adb +include/bc/bc-containers-bags.ads +include/bc/bc-containers-collections-bounded.adb +include/bc/bc-containers-collections-bounded.ads +include/bc/bc-containers-collections-dynamic.adb +include/bc/bc-containers-collections-dynamic.ads +include/bc/bc-containers-collections-ordered-bounded.adb +include/bc/bc-containers-collections-ordered-bounded.ads +include/bc/bc-containers-collections-ordered-dynamic.adb +include/bc/bc-containers-collections-ordered-dynamic.ads +include/bc/bc-containers-collections-ordered-unbounded.adb +include/bc/bc-containers-collections-ordered-unbounded.ads +include/bc/bc-containers-collections-ordered-unmanaged.adb +include/bc/bc-containers-collections-ordered-unmanaged.ads +include/bc/bc-containers-collections-ordered.ads +include/bc/bc-containers-collections-unbounded.adb +include/bc/bc-containers-collections-unbounded.ads +include/bc/bc-containers-collections-unmanaged.adb +include/bc/bc-containers-collections-unmanaged.ads +include/bc/bc-containers-collections.adb +include/bc/bc-containers-collections.ads +include/bc/bc-containers-deques-bounded.adb +include/bc/bc-containers-deques-bounded.ads +include/bc/bc-containers-deques-dynamic.adb +include/bc/bc-containers-deques-dynamic.ads +include/bc/bc-containers-deques-unbounded.adb +include/bc/bc-containers-deques-unbounded.ads +include/bc/bc-containers-deques-unmanaged.adb +include/bc/bc-containers-deques-unmanaged.ads +include/bc/bc-containers-deques.adb +include/bc/bc-containers-deques.ads +include/bc/bc-containers-lists-double.adb +include/bc/bc-containers-lists-double.ads +include/bc/bc-containers-lists-single.adb +include/bc/bc-containers-lists-single.ads +include/bc/bc-containers-lists.ads +include/bc/bc-containers-maps-bounded.adb +include/bc/bc-containers-maps-bounded.ads +include/bc/bc-containers-maps-dynamic.adb +include/bc/bc-containers-maps-dynamic.ads +include/bc/bc-containers-maps-unbounded.adb +include/bc/bc-containers-maps-unbounded.ads +include/bc/bc-containers-maps-unmanaged.adb +include/bc/bc-containers-maps-unmanaged.ads +include/bc/bc-containers-maps.adb +include/bc/bc-containers-maps.ads +include/bc/bc-containers-queues-bounded.adb +include/bc/bc-containers-queues-bounded.ads +include/bc/bc-containers-queues-dynamic.adb +include/bc/bc-containers-queues-dynamic.ads +include/bc/bc-containers-queues-ordered-bounded.adb +include/bc/bc-containers-queues-ordered-bounded.ads +include/bc/bc-containers-queues-ordered-dynamic.adb +include/bc/bc-containers-queues-ordered-dynamic.ads +include/bc/bc-containers-queues-ordered-unbounded.adb +include/bc/bc-containers-queues-ordered-unbounded.ads +include/bc/bc-containers-queues-ordered-unmanaged.adb +include/bc/bc-containers-queues-ordered-unmanaged.ads +include/bc/bc-containers-queues-ordered.ads +include/bc/bc-containers-queues-unbounded.adb +include/bc/bc-containers-queues-unbounded.ads +include/bc/bc-containers-queues-unmanaged.adb +include/bc/bc-containers-queues-unmanaged.ads +include/bc/bc-containers-queues.adb +include/bc/bc-containers-queues.ads +include/bc/bc-containers-quicksort.adb +include/bc/bc-containers-quicksort.ads +include/bc/bc-containers-rings-bounded.adb +include/bc/bc-containers-rings-bounded.ads +include/bc/bc-containers-rings-dynamic.adb +include/bc/bc-containers-rings-dynamic.ads +include/bc/bc-containers-rings-unbounded.adb +include/bc/bc-containers-rings-unbounded.ads +include/bc/bc-containers-rings-unmanaged.adb +include/bc/bc-containers-rings-unmanaged.ads +include/bc/bc-containers-rings.adb +include/bc/bc-containers-rings.ads +include/bc/bc-containers-sets-bounded.adb +include/bc/bc-containers-sets-bounded.ads +include/bc/bc-containers-sets-dynamic.adb +include/bc/bc-containers-sets-dynamic.ads +include/bc/bc-containers-sets-unbounded.adb +include/bc/bc-containers-sets-unbounded.ads +include/bc/bc-containers-sets-unmanaged.adb +include/bc/bc-containers-sets-unmanaged.ads +include/bc/bc-containers-sets.adb +include/bc/bc-containers-sets.ads +include/bc/bc-containers-shellsort.adb +include/bc/bc-containers-shellsort.ads +include/bc/bc-containers-stacks-bounded.adb +include/bc/bc-containers-stacks-bounded.ads +include/bc/bc-containers-stacks-dynamic.adb +include/bc/bc-containers-stacks-dynamic.ads +include/bc/bc-containers-stacks-unbounded.adb +include/bc/bc-containers-stacks-unbounded.ads +include/bc/bc-containers-stacks-unmanaged.adb +include/bc/bc-containers-stacks-unmanaged.ads +include/bc/bc-containers-stacks.adb +include/bc/bc-containers-stacks.ads +include/bc/bc-containers-trees-avl-print.adb +include/bc/bc-containers-trees-avl-print.ads +include/bc/bc-containers-trees-avl-validate.adb +include/bc/bc-containers-trees-avl-validate.ads +include/bc/bc-containers-trees-avl.adb +include/bc/bc-containers-trees-avl.ads +include/bc/bc-containers-trees-binary-in_order.adb +include/bc/bc-containers-trees-binary-in_order.ads +include/bc/bc-containers-trees-binary-post_order.adb +include/bc/bc-containers-trees-binary-post_order.ads +include/bc/bc-containers-trees-binary-pre_order.adb +include/bc/bc-containers-trees-binary-pre_order.ads +include/bc/bc-containers-trees-binary.adb +include/bc/bc-containers-trees-binary.ads +include/bc/bc-containers-trees-multiway-post_order.adb +include/bc/bc-containers-trees-multiway-post_order.ads +include/bc/bc-containers-trees-multiway-pre_order.adb +include/bc/bc-containers-trees-multiway-pre_order.ads +include/bc/bc-containers-trees-multiway.adb +include/bc/bc-containers-trees-multiway.ads +include/bc/bc-containers-trees.ads +include/bc/bc-containers.adb +include/bc/bc-containers.ads +include/bc/bc-copy.adb +include/bc/bc-copy.ads +include/bc/bc-filter.adb +include/bc/bc-filter.ads +include/bc/bc-graphs-directed.adb +include/bc/bc-graphs-directed.ads +include/bc/bc-graphs-undirected.adb +include/bc/bc-graphs-undirected.ads +include/bc/bc-graphs.adb +include/bc/bc-graphs.ads +include/bc/bc-indefinite_containers-collections-bounded.adb +include/bc/bc-indefinite_containers-collections-bounded.ads +include/bc/bc-indefinite_containers-collections-dynamic.adb +include/bc/bc-indefinite_containers-collections-dynamic.ads +include/bc/bc-indefinite_containers-collections-ordered-bounded.adb +include/bc/bc-indefinite_containers-collections-ordered-bounded.ads +include/bc/bc-indefinite_containers-collections-ordered-dynamic.adb +include/bc/bc-indefinite_containers-collections-ordered-dynamic.ads +include/bc/bc-indefinite_containers-collections-ordered-unbounded.adb +include/bc/bc-indefinite_containers-collections-ordered-unbounded.ads +include/bc/bc-indefinite_containers-collections-ordered-unmanaged.adb +include/bc/bc-indefinite_containers-collections-ordered-unmanaged.ads +include/bc/bc-indefinite_containers-collections-ordered.ads +include/bc/bc-indefinite_containers-collections-unbounded.adb +include/bc/bc-indefinite_containers-collections-unbounded.ads +include/bc/bc-indefinite_containers-collections-unmanaged.adb +include/bc/bc-indefinite_containers-collections-unmanaged.ads +include/bc/bc-indefinite_containers-collections.adb +include/bc/bc-indefinite_containers-collections.ads +include/bc/bc-indefinite_containers-maps-bounded.adb +include/bc/bc-indefinite_containers-maps-bounded.ads +include/bc/bc-indefinite_containers-maps-unbounded.adb +include/bc/bc-indefinite_containers-maps-unbounded.ads +include/bc/bc-indefinite_containers-maps.adb +include/bc/bc-indefinite_containers-maps.ads +include/bc/bc-indefinite_containers-queues-bounded.adb +include/bc/bc-indefinite_containers-queues-bounded.ads +include/bc/bc-indefinite_containers-queues-dynamic.adb +include/bc/bc-indefinite_containers-queues-dynamic.ads +include/bc/bc-indefinite_containers-queues-ordered-bounded.adb +include/bc/bc-indefinite_containers-queues-ordered-bounded.ads +include/bc/bc-indefinite_containers-queues-ordered-dynamic.adb +include/bc/bc-indefinite_containers-queues-ordered-dynamic.ads +include/bc/bc-indefinite_containers-queues-ordered-unbounded.adb +include/bc/bc-indefinite_containers-queues-ordered-unbounded.ads +include/bc/bc-indefinite_containers-queues-ordered-unmanaged.adb +include/bc/bc-indefinite_containers-queues-ordered-unmanaged.ads +include/bc/bc-indefinite_containers-queues-ordered.ads +include/bc/bc-indefinite_containers-queues-unbounded.adb +include/bc/bc-indefinite_containers-queues-unbounded.ads +include/bc/bc-indefinite_containers-queues-unmanaged.adb +include/bc/bc-indefinite_containers-queues-unmanaged.ads +include/bc/bc-indefinite_containers-queues.adb +include/bc/bc-indefinite_containers-queues.ads +include/bc/bc-indefinite_containers.adb +include/bc/bc-indefinite_containers.ads +include/bc/bc-indefinite_unmanaged_containers-collections-ordered.adb +include/bc/bc-indefinite_unmanaged_containers-collections-ordered.ads +include/bc/bc-indefinite_unmanaged_containers-collections.adb +include/bc/bc-indefinite_unmanaged_containers-collections.ads +include/bc/bc-indefinite_unmanaged_containers-maps.adb +include/bc/bc-indefinite_unmanaged_containers-maps.ads +include/bc/bc-indefinite_unmanaged_containers-queues-ordered.adb +include/bc/bc-indefinite_unmanaged_containers-queues-ordered.ads +include/bc/bc-indefinite_unmanaged_containers-queues.adb +include/bc/bc-indefinite_unmanaged_containers-queues.ads +include/bc/bc-indefinite_unmanaged_containers.adb +include/bc/bc-indefinite_unmanaged_containers.ads +include/bc/bc-lists-double.adb +include/bc/bc-lists-double.ads +include/bc/bc-lists-single.adb +include/bc/bc-lists-single.ads +include/bc/bc-lists.adb +include/bc/bc-lists.ads +include/bc/bc-simple_collections.adb +include/bc/bc-simple_collections.ads +include/bc/bc-support-auto_pointers.adb +include/bc/bc-support-auto_pointers.ads +include/bc/bc-support-avl_trees.adb +include/bc/bc-support-avl_trees.ads +include/bc/bc-support-bounded.adb +include/bc/bc-support-bounded.ads +include/bc/bc-support-bounded_hash_tables.adb +include/bc/bc-support-bounded_hash_tables.ads +include/bc/bc-support-dynamic.adb +include/bc/bc-support-dynamic.ads +include/bc/bc-support-exceptions.ads +include/bc/bc-support-hash_tables.adb +include/bc/bc-support-hash_tables.ads +include/bc/bc-support-high_resolution_time.adb +include/bc/bc-support-high_resolution_time.ads +include/bc/bc-support-indefinite_bounded.adb +include/bc/bc-support-indefinite_bounded.ads +include/bc/bc-support-indefinite_bounded_hash_tables.adb +include/bc/bc-support-indefinite_bounded_hash_tables.ads +include/bc/bc-support-indefinite_dynamic.adb +include/bc/bc-support-indefinite_dynamic.ads +include/bc/bc-support-indefinite_hash_tables.adb +include/bc/bc-support-indefinite_hash_tables.ads +include/bc/bc-support-indefinite_reference.adb +include/bc/bc-support-indefinite_reference.ads +include/bc/bc-support-indefinite_unbounded.adb +include/bc/bc-support-indefinite_unbounded.ads +include/bc/bc-support-indefinite_unmanaged.adb +include/bc/bc-support-indefinite_unmanaged.ads +include/bc/bc-support-managed_storage.ads +include/bc/bc-support-memory_streams.ads +include/bc/bc-support-smart_pointers.adb +include/bc/bc-support-smart_pointers.ads +include/bc/bc-support-standard_storage.ads +include/bc/bc-support-statistics.ads +include/bc/bc-support-synchronization-debug.ads +include/bc/bc-support-synchronization.ads +include/bc/bc-support-unbounded.adb +include/bc/bc-support-unbounded.ads +include/bc/bc-support-unmanaged.adb +include/bc/bc-support-unmanaged.ads +include/bc/bc-support-unmanaged_storage.adb +include/bc/bc-support-unmanaged_storage.ads +include/bc/bc-support.ads +include/bc/bc-trees-avl_trees-iterators.adb +include/bc/bc-trees-avl_trees-iterators.ads +include/bc/bc-trees-avl_trees-print.adb +include/bc/bc-trees-avl_trees-print.ads +include/bc/bc-trees-avl_trees-validate.adb +include/bc/bc-trees-avl_trees-validate.ads +include/bc/bc-trees-avl_trees.adb +include/bc/bc-trees-avl_trees.ads +include/bc/bc-trees-binary_trees-in_order.adb +include/bc/bc-trees-binary_trees-in_order.ads +include/bc/bc-trees-binary_trees-post_order.adb +include/bc/bc-trees-binary_trees-post_order.ads +include/bc/bc-trees-binary_trees-pre_order.adb +include/bc/bc-trees-binary_trees-pre_order.ads +include/bc/bc-trees-binary_trees.adb +include/bc/bc-trees-binary_trees.ads +include/bc/bc-trees-multiway_trees-post_order.adb +include/bc/bc-trees-multiway_trees-post_order.ads +include/bc/bc-trees-multiway_trees-pre_order.adb +include/bc/bc-trees-multiway_trees-pre_order.ads +include/bc/bc-trees-multiway_trees.adb +include/bc/bc-trees-multiway_trees.ads +include/bc/bc-trees.ads +include/bc/bc.ads +lib/bc/lib-relocatable/bc-containers-bags-bounded.ali +lib/bc/lib-relocatable/bc-containers-bags-dynamic.ali +lib/bc/lib-relocatable/bc-containers-bags-unbounded.ali +lib/bc/lib-relocatable/bc-containers-bags-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-bags.ali +lib/bc/lib-relocatable/bc-containers-collections-bounded.ali +lib/bc/lib-relocatable/bc-containers-collections-dynamic.ali +lib/bc/lib-relocatable/bc-containers-collections-ordered-bounded.ali +lib/bc/lib-relocatable/bc-containers-collections-ordered-dynamic.ali +lib/bc/lib-relocatable/bc-containers-collections-ordered-unbounded.ali +lib/bc/lib-relocatable/bc-containers-collections-ordered-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-collections-ordered.ali +lib/bc/lib-relocatable/bc-containers-collections-unbounded.ali +lib/bc/lib-relocatable/bc-containers-collections-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-collections.ali +lib/bc/lib-relocatable/bc-containers-deques-bounded.ali +lib/bc/lib-relocatable/bc-containers-deques-dynamic.ali +lib/bc/lib-relocatable/bc-containers-deques-unbounded.ali +lib/bc/lib-relocatable/bc-containers-deques-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-deques.ali +lib/bc/lib-relocatable/bc-containers-lists-double.ali +lib/bc/lib-relocatable/bc-containers-lists-single.ali +lib/bc/lib-relocatable/bc-containers-lists.ali +lib/bc/lib-relocatable/bc-containers-maps-bounded.ali +lib/bc/lib-relocatable/bc-containers-maps-dynamic.ali +lib/bc/lib-relocatable/bc-containers-maps-unbounded.ali +lib/bc/lib-relocatable/bc-containers-maps-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-maps.ali +lib/bc/lib-relocatable/bc-containers-queues-bounded.ali +lib/bc/lib-relocatable/bc-containers-queues-dynamic.ali +lib/bc/lib-relocatable/bc-containers-queues-ordered-bounded.ali +lib/bc/lib-relocatable/bc-containers-queues-ordered-dynamic.ali +lib/bc/lib-relocatable/bc-containers-queues-ordered-unbounded.ali +lib/bc/lib-relocatable/bc-containers-queues-ordered-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-queues-ordered.ali +lib/bc/lib-relocatable/bc-containers-queues-unbounded.ali +lib/bc/lib-relocatable/bc-containers-queues-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-queues.ali +lib/bc/lib-relocatable/bc-containers-quicksort.ali +lib/bc/lib-relocatable/bc-containers-rings-bounded.ali +lib/bc/lib-relocatable/bc-containers-rings-dynamic.ali +lib/bc/lib-relocatable/bc-containers-rings-unbounded.ali +lib/bc/lib-relocatable/bc-containers-rings-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-rings.ali +lib/bc/lib-relocatable/bc-containers-sets-bounded.ali +lib/bc/lib-relocatable/bc-containers-sets-dynamic.ali +lib/bc/lib-relocatable/bc-containers-sets-unbounded.ali +lib/bc/lib-relocatable/bc-containers-sets-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-sets.ali +lib/bc/lib-relocatable/bc-containers-shellsort.ali +lib/bc/lib-relocatable/bc-containers-stacks-bounded.ali +lib/bc/lib-relocatable/bc-containers-stacks-dynamic.ali +lib/bc/lib-relocatable/bc-containers-stacks-unbounded.ali +lib/bc/lib-relocatable/bc-containers-stacks-unmanaged.ali +lib/bc/lib-relocatable/bc-containers-stacks.ali +lib/bc/lib-relocatable/bc-containers-trees-avl-print.ali +lib/bc/lib-relocatable/bc-containers-trees-avl-validate.ali +lib/bc/lib-relocatable/bc-containers-trees-avl.ali +lib/bc/lib-relocatable/bc-containers-trees-binary-in_order.ali +lib/bc/lib-relocatable/bc-containers-trees-binary-post_order.ali +lib/bc/lib-relocatable/bc-containers-trees-binary-pre_order.ali +lib/bc/lib-relocatable/bc-containers-trees-binary.ali +lib/bc/lib-relocatable/bc-containers-trees-multiway-post_order.ali +lib/bc/lib-relocatable/bc-containers-trees-multiway-pre_order.ali +lib/bc/lib-relocatable/bc-containers-trees-multiway.ali +lib/bc/lib-relocatable/bc-containers-trees.ali +lib/bc/lib-relocatable/bc-containers.ali +lib/bc/lib-relocatable/bc-copy.ali +lib/bc/lib-relocatable/bc-filter.ali +lib/bc/lib-relocatable/bc-graphs-directed.ali +lib/bc/lib-relocatable/bc-graphs-undirected.ali +lib/bc/lib-relocatable/bc-graphs.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-bounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-dynamic.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-ordered-bounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-ordered-dynamic.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-ordered-unbounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-ordered-unmanaged.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-ordered.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-unbounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections-unmanaged.ali +lib/bc/lib-relocatable/bc-indefinite_containers-collections.ali +lib/bc/lib-relocatable/bc-indefinite_containers-maps-bounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-maps-unbounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-maps.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-bounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-dynamic.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-ordered-bounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-ordered-dynamic.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-ordered-unbounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-ordered-unmanaged.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-ordered.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-unbounded.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues-unmanaged.ali +lib/bc/lib-relocatable/bc-indefinite_containers-queues.ali +lib/bc/lib-relocatable/bc-indefinite_containers.ali +lib/bc/lib-relocatable/bc-indefinite_unmanaged_containers-collections-ordered.ali +lib/bc/lib-relocatable/bc-indefinite_unmanaged_containers-collections.ali +lib/bc/lib-relocatable/bc-indefinite_unmanaged_containers-maps.ali +lib/bc/lib-relocatable/bc-indefinite_unmanaged_containers-queues-ordered.ali +lib/bc/lib-relocatable/bc-indefinite_unmanaged_containers-queues.ali +lib/bc/lib-relocatable/bc-indefinite_unmanaged_containers.ali +lib/bc/lib-relocatable/bc-lists-double.ali +lib/bc/lib-relocatable/bc-lists-single.ali +lib/bc/lib-relocatable/bc-lists.ali +lib/bc/lib-relocatable/bc-simple_collections.ali +lib/bc/lib-relocatable/bc-support-auto_pointers.ali +lib/bc/lib-relocatable/bc-support-avl_trees.ali +lib/bc/lib-relocatable/bc-support-bounded.ali +lib/bc/lib-relocatable/bc-support-bounded_hash_tables.ali +lib/bc/lib-relocatable/bc-support-dynamic.ali +lib/bc/lib-relocatable/bc-support-exceptions.ali +lib/bc/lib-relocatable/bc-support-hash_tables.ali +lib/bc/lib-relocatable/bc-support-high_resolution_time.ali +lib/bc/lib-relocatable/bc-support-indefinite_bounded.ali +lib/bc/lib-relocatable/bc-support-indefinite_bounded_hash_tables.ali +lib/bc/lib-relocatable/bc-support-indefinite_dynamic.ali +lib/bc/lib-relocatable/bc-support-indefinite_hash_tables.ali +lib/bc/lib-relocatable/bc-support-indefinite_reference.ali +lib/bc/lib-relocatable/bc-support-indefinite_unbounded.ali +lib/bc/lib-relocatable/bc-support-indefinite_unmanaged.ali +lib/bc/lib-relocatable/bc-support-managed_storage.ali +lib/bc/lib-relocatable/bc-support-memory_streams.ali +lib/bc/lib-relocatable/bc-support-smart_pointers.ali +lib/bc/lib-relocatable/bc-support-standard_storage.ali +lib/bc/lib-relocatable/bc-support-statistics.ali +lib/bc/lib-relocatable/bc-support-synchronization-debug.ali +lib/bc/lib-relocatable/bc-support-synchronization.ali +lib/bc/lib-relocatable/bc-support-unbounded.ali +lib/bc/lib-relocatable/bc-support-unmanaged.ali +lib/bc/lib-relocatable/bc-support-unmanaged_storage.ali +lib/bc/lib-relocatable/bc-support.ali +lib/bc/lib-relocatable/bc-trees-avl_trees-iterators.ali +lib/bc/lib-relocatable/bc-trees-avl_trees-print.ali +lib/bc/lib-relocatable/bc-trees-avl_trees-validate.ali +lib/bc/lib-relocatable/bc-trees-avl_trees.ali +lib/bc/lib-relocatable/bc-trees-binary_trees-in_order.ali +lib/bc/lib-relocatable/bc-trees-binary_trees-post_order.ali +lib/bc/lib-relocatable/bc-trees-binary_trees-pre_order.ali +lib/bc/lib-relocatable/bc-trees-binary_trees.ali +lib/bc/lib-relocatable/bc-trees-multiway_trees-post_order.ali +lib/bc/lib-relocatable/bc-trees-multiway_trees-pre_order.ali +lib/bc/lib-relocatable/bc-trees-multiway_trees.ali +lib/bc/lib-relocatable/bc-trees.ali +lib/bc/lib-relocatable/bc.ali +lib/bc/lib-relocatable/libbc.so +lib/bc/lib-static/bc-containers-bags-bounded.ali +lib/bc/lib-static/bc-containers-bags-dynamic.ali +lib/bc/lib-static/bc-containers-bags-unbounded.ali +lib/bc/lib-static/bc-containers-bags-unmanaged.ali +lib/bc/lib-static/bc-containers-bags.ali +lib/bc/lib-static/bc-containers-collections-bounded.ali +lib/bc/lib-static/bc-containers-collections-dynamic.ali +lib/bc/lib-static/bc-containers-collections-ordered-bounded.ali +lib/bc/lib-static/bc-containers-collections-ordered-dynamic.ali +lib/bc/lib-static/bc-containers-collections-ordered-unbounded.ali +lib/bc/lib-static/bc-containers-collections-ordered-unmanaged.ali +lib/bc/lib-static/bc-containers-collections-ordered.ali +lib/bc/lib-static/bc-containers-collections-unbounded.ali +lib/bc/lib-static/bc-containers-collections-unmanaged.ali +lib/bc/lib-static/bc-containers-collections.ali +lib/bc/lib-static/bc-containers-deques-bounded.ali +lib/bc/lib-static/bc-containers-deques-dynamic.ali +lib/bc/lib-static/bc-containers-deques-unbounded.ali +lib/bc/lib-static/bc-containers-deques-unmanaged.ali +lib/bc/lib-static/bc-containers-deques.ali +lib/bc/lib-static/bc-containers-lists-double.ali +lib/bc/lib-static/bc-containers-lists-single.ali +lib/bc/lib-static/bc-containers-lists.ali +lib/bc/lib-static/bc-containers-maps-bounded.ali +lib/bc/lib-static/bc-containers-maps-dynamic.ali +lib/bc/lib-static/bc-containers-maps-unbounded.ali +lib/bc/lib-static/bc-containers-maps-unmanaged.ali +lib/bc/lib-static/bc-containers-maps.ali +lib/bc/lib-static/bc-containers-queues-bounded.ali +lib/bc/lib-static/bc-containers-queues-dynamic.ali +lib/bc/lib-static/bc-containers-queues-ordered-bounded.ali +lib/bc/lib-static/bc-containers-queues-ordered-dynamic.ali +lib/bc/lib-static/bc-containers-queues-ordered-unbounded.ali +lib/bc/lib-static/bc-containers-queues-ordered-unmanaged.ali +lib/bc/lib-static/bc-containers-queues-ordered.ali +lib/bc/lib-static/bc-containers-queues-unbounded.ali +lib/bc/lib-static/bc-containers-queues-unmanaged.ali +lib/bc/lib-static/bc-containers-queues.ali +lib/bc/lib-static/bc-containers-quicksort.ali +lib/bc/lib-static/bc-containers-rings-bounded.ali +lib/bc/lib-static/bc-containers-rings-dynamic.ali +lib/bc/lib-static/bc-containers-rings-unbounded.ali +lib/bc/lib-static/bc-containers-rings-unmanaged.ali +lib/bc/lib-static/bc-containers-rings.ali +lib/bc/lib-static/bc-containers-sets-bounded.ali +lib/bc/lib-static/bc-containers-sets-dynamic.ali +lib/bc/lib-static/bc-containers-sets-unbounded.ali +lib/bc/lib-static/bc-containers-sets-unmanaged.ali +lib/bc/lib-static/bc-containers-sets.ali +lib/bc/lib-static/bc-containers-shellsort.ali +lib/bc/lib-static/bc-containers-stacks-bounded.ali +lib/bc/lib-static/bc-containers-stacks-dynamic.ali +lib/bc/lib-static/bc-containers-stacks-unbounded.ali +lib/bc/lib-static/bc-containers-stacks-unmanaged.ali +lib/bc/lib-static/bc-containers-stacks.ali +lib/bc/lib-static/bc-containers-trees-avl-print.ali +lib/bc/lib-static/bc-containers-trees-avl-validate.ali +lib/bc/lib-static/bc-containers-trees-avl.ali +lib/bc/lib-static/bc-containers-trees-binary-in_order.ali +lib/bc/lib-static/bc-containers-trees-binary-post_order.ali +lib/bc/lib-static/bc-containers-trees-binary-pre_order.ali +lib/bc/lib-static/bc-containers-trees-binary.ali +lib/bc/lib-static/bc-containers-trees-multiway-post_order.ali +lib/bc/lib-static/bc-containers-trees-multiway-pre_order.ali +lib/bc/lib-static/bc-containers-trees-multiway.ali +lib/bc/lib-static/bc-containers-trees.ali +lib/bc/lib-static/bc-containers.ali +lib/bc/lib-static/bc-copy.ali +lib/bc/lib-static/bc-filter.ali +lib/bc/lib-static/bc-graphs-directed.ali +lib/bc/lib-static/bc-graphs-undirected.ali +lib/bc/lib-static/bc-graphs.ali +lib/bc/lib-static/bc-indefinite_containers-collections-bounded.ali +lib/bc/lib-static/bc-indefinite_containers-collections-dynamic.ali +lib/bc/lib-static/bc-indefinite_containers-collections-ordered-bounded.ali +lib/bc/lib-static/bc-indefinite_containers-collections-ordered-dynamic.ali +lib/bc/lib-static/bc-indefinite_containers-collections-ordered-unbounded.ali +lib/bc/lib-static/bc-indefinite_containers-collections-ordered-unmanaged.ali +lib/bc/lib-static/bc-indefinite_containers-collections-ordered.ali +lib/bc/lib-static/bc-indefinite_containers-collections-unbounded.ali +lib/bc/lib-static/bc-indefinite_containers-collections-unmanaged.ali +lib/bc/lib-static/bc-indefinite_containers-collections.ali +lib/bc/lib-static/bc-indefinite_containers-maps-bounded.ali +lib/bc/lib-static/bc-indefinite_containers-maps-unbounded.ali +lib/bc/lib-static/bc-indefinite_containers-maps.ali +lib/bc/lib-static/bc-indefinite_containers-queues-bounded.ali +lib/bc/lib-static/bc-indefinite_containers-queues-dynamic.ali +lib/bc/lib-static/bc-indefinite_containers-queues-ordered-bounded.ali +lib/bc/lib-static/bc-indefinite_containers-queues-ordered-dynamic.ali +lib/bc/lib-static/bc-indefinite_containers-queues-ordered-unbounded.ali +lib/bc/lib-static/bc-indefinite_containers-queues-ordered-unmanaged.ali +lib/bc/lib-static/bc-indefinite_containers-queues-ordered.ali +lib/bc/lib-static/bc-indefinite_containers-queues-unbounded.ali +lib/bc/lib-static/bc-indefinite_containers-queues-unmanaged.ali +lib/bc/lib-static/bc-indefinite_containers-queues.ali +lib/bc/lib-static/bc-indefinite_containers.ali +lib/bc/lib-static/bc-indefinite_unmanaged_containers-collections-ordered.ali +lib/bc/lib-static/bc-indefinite_unmanaged_containers-collections.ali +lib/bc/lib-static/bc-indefinite_unmanaged_containers-maps.ali +lib/bc/lib-static/bc-indefinite_unmanaged_containers-queues-ordered.ali +lib/bc/lib-static/bc-indefinite_unmanaged_containers-queues.ali +lib/bc/lib-static/bc-indefinite_unmanaged_containers.ali +lib/bc/lib-static/bc-lists-double.ali +lib/bc/lib-static/bc-lists-single.ali +lib/bc/lib-static/bc-lists.ali +lib/bc/lib-static/bc-simple_collections.ali +lib/bc/lib-static/bc-support-auto_pointers.ali +lib/bc/lib-static/bc-support-avl_trees.ali +lib/bc/lib-static/bc-support-bounded.ali +lib/bc/lib-static/bc-support-bounded_hash_tables.ali +lib/bc/lib-static/bc-support-dynamic.ali +lib/bc/lib-static/bc-support-exceptions.ali +lib/bc/lib-static/bc-support-hash_tables.ali +lib/bc/lib-static/bc-support-high_resolution_time.ali +lib/bc/lib-static/bc-support-indefinite_bounded.ali +lib/bc/lib-static/bc-support-indefinite_bounded_hash_tables.ali +lib/bc/lib-static/bc-support-indefinite_dynamic.ali +lib/bc/lib-static/bc-support-indefinite_hash_tables.ali +lib/bc/lib-static/bc-support-indefinite_reference.ali +lib/bc/lib-static/bc-support-indefinite_unbounded.ali +lib/bc/lib-static/bc-support-indefinite_unmanaged.ali +lib/bc/lib-static/bc-support-managed_storage.ali +lib/bc/lib-static/bc-support-memory_streams.ali +lib/bc/lib-static/bc-support-smart_pointers.ali +lib/bc/lib-static/bc-support-standard_storage.ali +lib/bc/lib-static/bc-support-statistics.ali +lib/bc/lib-static/bc-support-synchronization-debug.ali +lib/bc/lib-static/bc-support-synchronization.ali +lib/bc/lib-static/bc-support-unbounded.ali +lib/bc/lib-static/bc-support-unmanaged.ali +lib/bc/lib-static/bc-support-unmanaged_storage.ali +lib/bc/lib-static/bc-support.ali +lib/bc/lib-static/bc-trees-avl_trees-iterators.ali +lib/bc/lib-static/bc-trees-avl_trees-print.ali +lib/bc/lib-static/bc-trees-avl_trees-validate.ali +lib/bc/lib-static/bc-trees-avl_trees.ali +lib/bc/lib-static/bc-trees-binary_trees-in_order.ali +lib/bc/lib-static/bc-trees-binary_trees-post_order.ali +lib/bc/lib-static/bc-trees-binary_trees-pre_order.ali +lib/bc/lib-static/bc-trees-binary_trees.ali +lib/bc/lib-static/bc-trees-multiway_trees-post_order.ali +lib/bc/lib-static/bc-trees-multiway_trees-pre_order.ali +lib/bc/lib-static/bc-trees-multiway_trees.ali +lib/bc/lib-static/bc-trees.ali +lib/bc/lib-static/bc.ali +lib/bc/lib-static/libbc.a +lib/gnat/bc.gpr +%%PORTDOCS%%share/doc/adabooch/ada95lgo.gif +%%PORTDOCS%%share/doc/adabooch/bc.css +%%PORTDOCS%%share/doc/adabooch/car-fleet.jpg +%%PORTDOCS%%share/doc/adabooch/case-study.html +%%PORTDOCS%%share/doc/adabooch/coldframe-hash.tgz +%%PORTDOCS%%share/doc/adabooch/coldframe-hash.zip +%%PORTDOCS%%share/doc/adabooch/compiler-problems.html +%%PORTDOCS%%share/doc/adabooch/demos.html +%%PORTDOCS%%share/doc/adabooch/documentation.html +%%PORTDOCS%%share/doc/adabooch/download.html +%%PORTDOCS%%share/doc/adabooch/greenline.gif +%%PORTDOCS%%share/doc/adabooch/index.html +%%PORTDOCS%%share/doc/adabooch/installation.html +%%PORTDOCS%%share/doc/adabooch/organization.png +%%PORTDOCS%%share/doc/adabooch/overview.html +%%PORTDOCS%%share/doc/adabooch/release.html +%%PORTDOCS%%share/doc/adabooch/x.ada +%%PORTDOCS%%@dirrm share/doc/adabooch +@dirrmtry lib/gnat +@dirrm lib/bc/lib-static +@dirrm lib/bc/lib-relocatable +@dirrm lib/bc +@dirrm include/bc |