New port: adabooch is a Booch implementation for Ada95
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 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.
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/
PR: ports/46448
Submitted by: David Holm <david@realityrift.com>
2003-09-27 06:33:07 +00:00
|
|
|
# New ports collection makefile for: adabooch
|
|
|
|
# Date created: 21 December 2002
|
|
|
|
# Whom: David Holm <david@realityrift.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2004-04-10 17:26:55 +00:00
|
|
|
PORTNAME= adabooch
|
2007-01-15 20:06:56 +00:00
|
|
|
PORTVERSION= 20030309
|
2004-04-10 17:26:55 +00:00
|
|
|
CATEGORIES= devel
|
2011-05-12 19:06:49 +00:00
|
|
|
MASTER_SITES= ${MASTER_SITE}
|
2004-04-10 17:26:55 +00:00
|
|
|
DISTNAME= bc-${PORTVERSION}
|
|
|
|
EXTRACT_SUFX= .tgz
|
New port: adabooch is a Booch implementation for Ada95
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 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.
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/
PR: ports/46448
Submitted by: David Holm <david@realityrift.com>
2003-09-27 06:33:07 +00:00
|
|
|
|
2009-11-27 22:52:30 +00:00
|
|
|
MAINTAINER= sylvio@FreeBSD.org
|
New port: adabooch is a Booch implementation for Ada95
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 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.
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/
PR: ports/46448
Submitted by: David Holm <david@realityrift.com>
2003-09-27 06:33:07 +00:00
|
|
|
COMMENT= Library which provide container classes as well as powertools for Ada
|
|
|
|
|
2011-05-20 19:49:23 +00:00
|
|
|
LICENSE= GPLv2
|
|
|
|
|
2004-04-10 17:26:55 +00:00
|
|
|
NO_BUILD= yes
|
New port: adabooch is a Booch implementation for Ada95
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 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.
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/
PR: ports/46448
Submitted by: David Holm <david@realityrift.com>
2003-09-27 06:33:07 +00:00
|
|
|
|
|
|
|
do-install:
|
|
|
|
@${ECHO} Installing library files
|
|
|
|
@${MKDIR} ${PREFIX}/lib/adabooch
|
|
|
|
@for i in `cat pkg-plist|grep "lib/adabooch/"|sed "s/lib\/adabooch\///"`; do \
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/$${i} ${PREFIX}/lib/adabooch; \
|
|
|
|
done
|
|
|
|
|
|
|
|
@${MKDIR} ${PREFIX}/share/adabooch
|
|
|
|
@${ECHO} Installing demos and tests
|
|
|
|
@${MKDIR} ${PREFIX}/share/adabooch/demo
|
|
|
|
@for i in `cat pkg-plist|grep "share/adabooch/demo/"|sed "s/share\/adabooch\/demo\///"`; do \
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/demo/$${i} ${PREFIX}/share/adabooch/demo; \
|
|
|
|
done
|
|
|
|
|
|
|
|
@${MKDIR} ${PREFIX}/share/adabooch/test
|
|
|
|
@for i in `cat pkg-plist|grep "share/adabooch/test/"|sed "s/share\/adabooch\/test\///"`; do \
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/test/$${i} ${PREFIX}/share/adabooch/test; \
|
|
|
|
done
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
@${ECHO}
|
|
|
|
@${ECHO} "The booch library has been installed into ${PREFIX}/lib/adabooch"
|
|
|
|
@${ECHO}
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|