--- ace-6.0.1.orig/debian/libtao-doc.docs +++ ace-6.0.1/debian/libtao-doc.docs @@ -0,0 +1,3 @@ +ACE_wrappers/TAO/docs +ACE_wrappers/TAO/examples +ACE_wrappers/html/libtao-doc/* --- ace-6.0.1.orig/debian/TAO_ORB_Options.sgml +++ ace-6.0.1/debian/TAO_ORB_Options.sgml @@ -0,0 +1,518 @@ + + + + + + <schmidt@cs.wustl.edu>"> +]> + + + TAO_ORB_OPTIONS + 1 + + + &applname; + Common options for programs that use TAO + + + SYNOPSIS + + &progname; + ORB_options + program_options + + + + DESCRIPTION + + All programs relying on TAO understand the same set of + parameters: the -ORB options that affect + the ORB behaviour. + + + This manual page describe these parameters. Please note that the + ORB behaviour can also be altered using a + svc.conf. See TAO's documentation for help + on that topic. + + + + OPTIONS + + + -ORBSvcConf configfilename + + + Specifies the name of the file used to read service + configuration directives via the Service Configurator + framework. By default, a service configurator-based + application will look for a file named + svc.conf in the current directory. + + + + + -ORBSvcConfDirective directivestring + + + Specifies a service configuration directive, which is + passed to the Service Configurator. You can pass multiple + of these options on the same command-line. + + + + + -ORBDebug + + + Instructs the ORB to print debugging messages from the + service configurator framework. This option does not have + a value but is used as a toggle to enable or disable + debugging messages. + + + + + -ORBDebugLevel level + + + Control the level of debugging in the ORB. Higher numbers + generate more output (try 10). The default value of this + option is 0. + + + + + -ORBVerboseLogging {0,1,2} + + + Controls the amount of status data printed on each line of + the debug log. Higher numbers generate more output. The + default value of this option is 0. + + + + + -ORBLogFile logfilename + + + Causes all ACE_DEBUG and + ACE_ERROR output to be redirected to + the designated filename. + + + + + -ORBObjRefStyle {IOR,URL} + + + Specifies the user-visible style of object references. The + IOR style (default) is the conventional + CORBA object reference, whereas the URL + style looks more like a URL. + + + + + -ORBCDRTradeoff maxsize + + + Control the strategy to tradeoff between copy vs. no copy + marshaling of octet sequences. If an octet sequence is + smaller than maxsize (which + defaults to + ACE_DEFAULT_CDR_MEMORY_TRADEOFF) -- + and the current message block contains enough space for it + -- the octet sequence is copied instead of appended to the + CDR stream. + + + + + -ORBCollocation {global,per-orb,no} + + + Specifies the use of collocation object optimization. If + global is specified (default), objects + in the same process will be treated as collocated. If + per-orb is specified, only objects in + the same ORB are treated as collocated. When + no is specified, no objects are + treated as collocated. + + + + + -ORBCollocationStrategy {thru_poa,direct} + + + Specifies what type of collocated object to use. If the + thru_poa (default) strategy is used, + TAO uses the collocation object implementation that + respects POA's current state and policies. When using the + direct strategy, method invocations + on collocated objects become direct calls to servant + without checking POA's status, which can increase + performance. If you use the + direct strategy, your interfaces must + be compiled with the -Gd IDL compiler option. + + + + + -ORBNodelay {0,1} + + + Enable or disable the TCP_NODELAY option + (Nagle's algorithm). By default, + TCP_NODELAY is enabled. + + + + + -ORBRcvSock recv_size + + + Specify the size of the socket receive buffer as a + positive, non-zero integer. If not specified, the + ACE_DEFAULT_MAX_SOCKET_BUFSIZ default + is used. + + + + + -ORBSndSock snd_size + + + Specify the size of the socket send buffer as a positive, + non-zero integer. If not specified, the + ACE_DEFAULT_MAX_SOCKET_BUFSIZ default + is used. + + + + + -ORBStdProfileComponents {0,1} + + + If 0 then the ORB does not generate + the OMG standardized profile components, such as the ORB + type and code sets. Notice that the presence of this + components is optional in GIOP 1.1 The default value is + controlled by a compile-time flag (check + orbconf.h). + + + + + -ORBSingleReadOptimization {0,1} + + + This option controls whether TAO's ``single read + optimization'' is used when receiving requests. If this + option is disabled (0), the ORB will + do two reads to read a request: one reads the request + header and the other reads the request payload. If this + option is enabled (1), the ORB will + do a read of size TAO_MAXBUFSIZE, + hoping to read the entire request. If more than one + request is read they will be queued up for processing + later. + + + This option defaults to 1 because it + can provide better performance. However, in the case of + RT-CORBA, this option should be set to + 0. Consider the following scenario: + + + two requests are read from one socket, + + + the additional request is queued, and + + + the ORB uses its Reactor's notification + mechanism to wake up the follower threads. + + + + + If at the same time, however, new requests arrive on + others sockets of higher priority the lower priority + queued message will be processed before the newly arrived + higher priority request since Reactor notifications are + given preferences over normal I/O, thereby causing + priority inversion. + + + + + -ORBDisableRTCollocation {0,1} + + + This option controls whether the application wants to use + or discard RT collocation decisions made by the RT ORB. A + value of 1 disables RT collocation + decisions and falls back on the default collocation + decisions implemented in the default ORB. This is very + useful for applications using the RT ORB and doesn't want + to use the RT collocation decisions but fallback on the + default decisions for better performance. The default + value is 0. + + + + + -ORBDefaultInitRef ior_prefix + + + This argument allows resolution of initial references not + explicitly specified with + -ORBInitRef. It requires a URL prefix + that, after appending a slash `/' (`|' for the UIOP + pluggable protocol) and a simple object key, forms a new + URL to identify an initial object reference. The URL + prefix format currently supported is based on the standard + corbaloc mechanism in the CORBA Interoperable Naming + Service. + + + + + -ORBDottedDecimalAddresses {0,1} + + + Use the dotted decimal notation for addresses. This option + can be used to workaround broken DNS implementations and + may also reduce the time spent resolving IP addresses. By + default, this option is disabled (0) + since domain names are the standard address notation for + IORs. + + + + + -ORBEndpoint endpoint + + + This option is similar to the + -ORBListenEndPoints option described + below. This option will be deprecated in later versions on + TAO since the CORBA specification now defines the + -ORBListenEndpoints option instead. + + + + + -ORBListenEndpoints endpoint + + + This option was introduced with the CORBA ORT (Object + Reference Template) specification. It instructs a server + ORB to listen for requests on the interface specified by + endpoint. TAO endpoints are + specified using a URL style format. An endpoint has the + form: `protocol://V.v@addr1,...,W.w@addrN' + where V.v and W.w are optional protocol versions for each + address. An example of an IIOP endpoint is: + `iiop://hostname:port' + + + Sets of endpoints may be specified using multiple + -ORBEndpoint options or by delimiting + endpoints with a semi-colon (`;'). For example, + + `-ORBEndpoint iiop://localhost:9999 -ORBEndpoint uiop:///tmp/mylocalsock -ORBEndpoint shmiop://10002' + + is equivalent to: + + `-ORBEndpoint 'iiop://localhost:9999;uiop:///tmp/mylocalsock;shmiop://10002'' + + Notice the single quotes (') in the latter option + specification. Single quotes are needed to prevent the + shell from interpreting text after the semi-colon as + another command to run. + + If an endpoint is specified without an addr such as the + following: + + `-ORBEndpoint uiop:// -ORBEndpoint shmiop://' + + then a default endpoint will be created for the specified + protocol. + + + + + -ORBImplRepoServicePort portspec + + + Specifies which port the Implementation Repository is + listening on for multicast requests. By default, the + TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT (10018) is used. + + + + + -ORBInitRef ObjectId=IOR + + + Allows specification of an arbitrary object reference for an + initial service. The IOR could be in any one of the following + formats: OMG IOR, URL, corbaloc (including uioploc) or file. + corbaloc is a multiple end-point IOR understood by + ORB::string_to_object() and used as a + boot-strapping mechanism by the + ORB::resolve_initial_references(). The + mappings specified through this argument override the ORB + install-time defaults. + The file://pathname interprets the contents of the pathname file as + an object reference in any of the above formats. + + + + + -ORBMulticastDiscoveryEndpoint endpoint + + + Specifies the endpoint that should be used for locating the + Naming Service through multicast. + endpoint is of the form + ip-number:port-number (e.g., "tango.cs.wustl.edu:1234" or + "128.252.166.57:1234"). If there is no `:' in the + endpoint it is assumed to be a port + number, with the IP address being INADDR_ANY. + + + + + -ORBNameServicePort portspec + + + Specifies which port the Naming Service is listening on for multicast + requests. By default, the + TAO_DEFAULT_NAME_SERVICE_REQUEST_PORT (10013) + value is used. + + + + + -ORBTradingServicePort portspec + + + Specifies to which port the Trading Service is listening on for + multicast requests. By default, the + TAO_DEFAULT_TRADING_SERVICE_REQUEST_PORT (10016) + value is used. + + + + + -ORBUseIMR {0,1} + + + This argument specifies that for POAs with the PERSISTENT policy, + that the TAO Implementation Repository should be used for + notification of startup and shutdown and object references should + be changed to use the Implementation Repository also. + + + + + -ORBId orb_name + + + This option allows the name of an ORB to be set to + orb_name. The ORBId will be passed to the + ORB_init() method to differentiate coexisting + ORBs (when there are more than one ORBs). + + + + + -ORBServerId server_id + + + This option allows setting a name/id to a server to uniquely + identify a server to TAO's Implementation Repository. + + + + + -ORBDaemon + + + Specifies that the ORB should daemonize itself, i.e., run as a + background process. This option is only meaningful on OS + platforms that support daemonization. + + + + + + + ENVIRONMENT VARIABLES + + Environment variables have a limited use in TAO ORB + configuration. The currently supported environment variables are + listed below. They are used to specify the IOR and port numbers + for three of TAO's ORB services. + + + + + NameServicePort + + + Specifies which port the Naming Service is listening on + for multicast requests. + + + + + TradingServicePort + + + Specifies which port the Trading Service is listening on + for multicast requests. + + + + + ImplRepoServicePort + + + Specifies which port the Implementation Repository is + listening on for multicast requests. + + + + + + + In addition to being able to define the port where these known + services are listening for multicast requests, as above, it is + possible to set an environment variable that specifies the IOR + of any named service. For example + NameServiceIOR=which, + TradingServiceIOR=which, + ImplRepoServiceIOR=which, + MyServiceIOR=which. This will have a + similar effect to defining an -ORBInitRef + value on the command line (see above). Any value set as a + command line -ORBInitRef option will + override any value set as an environment variable for the same + service name. + + In general, setting environment variables is not particularly + portable or convenient, which is why users can also set these + options via command-line options. + + + + AUTHOR + &username; &useremail; + + --- ace-6.0.1.orig/debian/libtao-tkresource-2.0.1.install +++ ace-6.0.1/debian/libtao-tkresource-2.0.1.install @@ -0,0 +1 @@ +usr/lib/libTAO_TkResource-*.so --- ace-6.0.1.orig/debian/tao-imr.docs +++ ace-6.0.1/debian/tao-imr.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/ImplRepo_Service/README.txt --- ace-6.0.1.orig/debian/tao_nslist.sgml +++ ace-6.0.1/debian/tao_nslist.sgml @@ -0,0 +1,165 @@ + + TAO_ORB_Options1"> + tao_cosnaming1"> + tao_cosnaming"> + tao_nsdel1"> + tao_nsadd1"> + +]> + + + + + + + TAO_NSLIST + 1 + + + &applname; + Naming Service listing utility. + + + SYNOPSIS + + &applname; + -ORBoptions + OPTION + + + + DESCRIPTION + + &applname; lists the current entries in the NamingService; in a nicely formatted manner. + + + When invoked without arguments &applname; displays the contents of the default NamingService, + including the protocol and endpoint of each object reference. + + + &applname; requires a running NamingService. + + + + OPTIONS + + + -ORBoptions + + + The program follows the usual TAO ORB command line syntax. See + &man_tao_orb_options;. + + + + + --nsior + + + Display the naming service IOR and exit. This can be used to locate the TAO NameService for non-TAO applications and excludes using any other options. + + + + + --ns IOR + + + Use given IOR for NamingService. + + + + + --ior + + + Print the contents of the NamingService, including the IOR of each + reference entry and the IOR of the NameService itself. + + + + + --ctxior + + + Print additionally the IORs of any subcontexts found within NamingService. + + + + + --tree character + + + Print tree of object registered in NamingService using character for drawing tramlines, defaults to "|" . + + + + + --node character + + + Print tree of object registered in NamingService using character for drawing nodes, defaults to "+" . + + + + + --noloops + + + Inhibit drawing of naming context loops. + + + + + --name name + + + Lists sub-set of name, defaults to root. + + + + + --ctxsep character + + + Set context separation character, defaults to "/". + + + + + --kindsep character + + + Set ID/Kind separation character, defaults to ".". + + + + + --max number + + + Set limit of displayed sub-context depth to number. + + + + + --rtt seconds + + + Set the relative round trip timeout policy to seconds. + + + + + + + + SEE ALSO + &seealso; + + + AUTHOR + Thomas Lockhart<Thomas.Lockhart@jpl.nasa.gov> + Simon Massey <sma@prismtech.com> + + --- ace-6.0.1.orig/debian/TAO-DPKG.mwc +++ ace-6.0.1/debian/TAO-DPKG.mwc @@ -0,0 +1,28 @@ +// $Id$ + +workspace { + exclude { + CIAO + DAnCE + examples + orbsvcs/examples + + performance-tests + orbsvcs/tests/Notify/performance-tests + orbsvcs/performance-tests + + interop-tests + + tests + examples/PluggableUDP/tests + orbsvcs/tests + orbsvcs/examples/CosEC/RtEC_Based/tests + + docs + DevGuideExamples + orbsvcs/DevGuideExamples + utils/logWalker + utils/monitor + } +} + --- ace-6.0.1.orig/debian/copyright +++ ace-6.0.1/debian/copyright @@ -0,0 +1,692 @@ +This package was debianized by: + Ossama Othman on Fri, 25 Sep 1998 16:43:42 -0400. +Then maintained by: + Brian Nelson + Konstantinos Margaritis + Thomas Girard + +It is now maintained by: + Debian ACE+TAO maintainers + +It was downloaded from: + +Files: * +Copyright: © 1993-2011 Douglas C. Schmidt and his research group at + Washington University, University of California, Irvine, + and Vanderbilt University +License: other-BSD + Copyright and Licensing Information for ACE(TM), TAO(TM), CIAO(TM), and + CoSMIC(TM) + + [1]ACE(TM), [2]TAO(TM), [3]CIAO(TM), and [4]CoSMIC(TM) (henceforth + referred to as "DOC software") are copyrighted by [5]Douglas C. + Schmidt and his [6]research group at [7]Washington University, + [8]University of California, Irvine, and [9]Vanderbilt University, + Copyright (c) 1993-2008, all rights reserved. Since DOC software is + open-source, freely available software, you are free to use, modify, + copy, and distribute--perpetually and irrevocably--the DOC software + source code and object code produced from the source, as well as copy + and distribute modified versions of this software. You must, however, + include this copyright statement along with any code built using DOC + software that you release. No copyright statement needs to be provided + if you just ship binary executables of your software products. + + You can use DOC software in commercial and/or binary software releases + and are under no obligation to redistribute any of your source code + that is built using DOC software. Note, however, that you may not do + anything to the DOC software code, such as copyrighting it yourself or + claiming authorship of the DOC software code, that will prevent DOC + software from being distributed freely using an open-source + development model. You needn't inform anyone that you're using DOC + software in your software, though we encourage you to let [10]us know + so we can promote your project in the [11]DOC software success + stories. + + The [12]ACE, [13]TAO, [14]CIAO, and [15]CoSMIC web sites are + maintained by the [16]DOC Group at the [17]Institute for Software + Integrated Systems (ISIS) and the [18]Center for Distributed Object + Computing of Washington University, St. Louis for the development of + open-source software as part of the open-source software community. By + submitting comments, suggestions, code, code snippets, techniques + (including that of usage) and algorithms (collectively + ``Submissions''), submitters acknowledge that they have the right to + do so, that any such Submissions are given freely and unreservedly, + and that they waive any claims to copyright or ownership. In addition, + submitters acknowledge that any such Submission might become part of + the copyright maintained on the overall body of code that comprises + the DOC software. By making a Submission, submitter agree to these + terms. Moreover, submitters acknowledge that the incorporation or + modification of such Submissions is entirely at the discretion of the + moderators of the open-source DOC software projects or their + designees. + + Submissions are provided by the submitter ``as is'' with no warranties + whatsoever, including any warranty of merchantability, noninfringement + of third party intellectual property, or fitness for any particular + purpose. In no event shall the submitter be liable for any direct, + indirect, special, exemplary, punitive, or consequential damages, + including without limitation, lost profits, even if advised of the + possibility of such damages. Likewise, DOC software is provided as is + with no warranties of any kind, including the warranties of design, + merchantability, and fitness for a particular purpose, + noninfringement, or arising from a course of dealing, usage or trade + practice. Washington University, UC Irvine, Vanderbilt University, + their employees, and students shall have no liability with respect to + the infringement of copyrights, trade secrets or any patents by DOC + software or any part thereof. Moreover, in no event will Washington + University, UC Irvine, or Vanderbilt University, their employees, or + students be liable for any lost revenue or profits or other special, + indirect and consequential damages. + + DOC software is provided with no support and without any obligation on + the part of Washington University, UC Irvine, Vanderbilt University, + their employees, or students to assist in its use, correction, + modification, or enhancement. A [19]number of companies around the + world provide commercial support for DOC software, however. + + DOC software is Y2K-compliant, as long as the underlying OS platform + is Y2K-compliant. Likewise, DOC software is compliant with the new US + daylight savings rule passed by Congress as "The Energy Policy Act of + 2005," which established new daylight savings times (DST) rules for + the United States that expand DST as of March 2007. Since DOC software + obtains time/date and calendaring information from operating systems + users will not be affected by the new DST rules as long as they + upgrade their operating systems accordingly. + + The names ACE(TM), TAO(TM), CIAO(TM), CoSMIC(TM), Washington + University, UC Irvine, and Vanderbilt University, may not be used to + endorse or promote products or services derived from this source + without express written permission from Washington University, UC + Irvine, or Vanderbilt University. Further, products or services + derived from this source may not be called ACE(TM), TAO(TM), CIAO(TM), + or CoSMIC(TM) nor may the name Washington University, UC Irvine, or + Vanderbilt University appear in their names, without express written + permission from Washington University, UC Irvine, and Vanderbilt + University. + + If you have any suggestions, additions, comments, or questions, please + let [20]me know. + + [21]Douglas C. Schmidt + _________________________________________________________________ + + Back to the [22]ACE home page. + + References + 1. http://www.cs.wustl.edu/~schmidt/ACE.html + 2. http://www.cs.wustl.edu/~schmidt/TAO.html + 3. http://www.dre.vanderbilt.edu/CIAO/ + 4. http://www.dre.vanderbilt.edu/cosmic/ + 5. http://www.dre.vanderbilt.edu/~schmidt/ + 6. http://www.cs.wustl.edu/~schmidt/ACE-members.html + 7. http://www.wustl.edu/ + 8. http://www.uci.edu/ + 9. http://www.vanderbilt.edu/ + 10. mailto:doc_group@cs.wustl.edu + 11. http://www.cs.wustl.edu/~schmidt/ACE-users.html + 12. http://www.cs.wustl.edu/~schmidt/ACE.html + 13. http://www.cs.wustl.edu/~schmidt/TAO.html + 14. http://www.dre.vanderbilt.edu/CIAO/ + 15. http://www.dre.vanderbilt.edu/cosmic/ + 16. http://www.dre.vanderbilt.edu/ + 17. http://www.isis.vanderbilt.edu/ + 18. http://www.cs.wustl.edu/~schmidt/doc-center.html + 19. http://www.cs.wustl.edu/~schmidt/commercial-support.html + 20. mailto:d.schmidt@vanderbilt.edu + 21. http://www.dre.vanderbilt.edu/~schmidt/ + 22. http://www.cs.wustl.edu/ACE.html + +Files: apps/gperf/* +Copyright: © 1989 Free Software Foundation, Inc. +License: GPL-2+ + On Debian systems the full text of the GNU General Public License (Version 2) + can be found in the `/usr/share/common-licenses/GPL-2' file. + +Files: ACE_wrappers/MPC/* +Copyright: © 2003-2006 OCI. St. Louis MO USA +License: other-BSD + MPC (Licensed Product) is protected by copyright, and is distributed under + the following terms. + + MPC (Make, Project and workspace Creator) is an open source tool, developed + by OCI and written in Perl. It is designed to generate a variety of tool + specific project files from a common baseline. Through the powerful + combination of inheritance and defaults MPC is able to reduce the + maintenance burden normally associated with keeping multiple target + platforms, their unique build tools, and inconsistent feature sets current. + It is also easily extensible to support new build environments. The + objective is to solve the prevalent problem of fragile build environments, + usually experienced by developer groups, by replacing it with a singular + robust build environment, and an active community of users committed to its + evolution. + + Since MPC is open source and free of licensing fees, you are free to use, + modify, and distribute the source code, as long as you include this + copyright statement. + + In particular, you can use MPC to build proprietary software and are under + no obligation to redistribute any of your source code that is built using + MPC. Note, however, that you may not do anything to the MPC code, such as + copyrighting it yourself or claiming authorship of the MPC code, that will + prevent MPC from being distributed freely using an open source development + model. + + Warranty + + LICENSED PRODUCT IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING + THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, OR ARISING FROM A COURSE OF DEALING, USAGE OR + TRADE PRACTICE. + + Support + + LICENSED PRODUCT IS PROVIDED WITH NO SUPPORT AND WITHOUT ANY OBLIGATION ON + THE PART OF OCI OR ANY OF ITS SUBSIDIARIES OR AFFILIATES TO ASSIST IN ITS + USE, CORRECTION, MODIFICATION OR ENHANCEMENT. + + Support may be available from OCI to users who have agreed to a support + contract. + + Liability + + OCI OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH + RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY + LICENSED PRODUCT OR ANY PART THEREOF. + + IN NO EVENT WILL OCI OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR + ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL + DAMAGES, EVEN IF OCI HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + MPC copyright OCI. St. Louis MO USA, 2003-2006 + +Files: ACE_wrappers/contrib/minizip/*.[ch] +Copyright: © 1998-2005 Gilles Vollant +License: ZLIB + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + +Files: ACE_wrappers/contrib/utility/* +Copyright: © 2002-2003 Boris Kolpackov +License: other-BSD + This software or documentation is provided 'as-is', without any + express or implied warranty. In no event will the author or contributors + be held liable for any damages arising from the use of this software + or documentation. + + Permission is granted to anyone to use this software or documentation + for any purpose, including commercial applications, and to alter it and + redistribute it freely, subject to the following restrictions: + + 1. The origin of this software or documentation must not be + misrepresented; you must not claim that you wrote the original + software or documentation. If you use this software or + documentation in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software or documentation. + Altered source versions may be contributed back to the author to be + integrated into the original software or documentation at the + author's discretion. + + 3. Neither this notice or reference to it nor any copyright, author or + contributor clause may be removed from or altered in any software + source distribution or documentation covered by this license. + + 4. Neither the name of the author, nor the names of contributors may be + used to endorse or promote products derived from this software or + documentation without specific prior written permission. + +Files: ACE_wrappers/TAO/TAO_IDL/* + ACE_wrappers/*/drv_*_ifr.* + ACE_wrappers/*/be_produce.cpp + ACE_wrappers/*/be_extern.h +Copyright: © 1992-1995 Sun Micosystems, Inc +License: other + COPYRIGHT + + Copyright 1992, 1993, 1994 Sun Microsystems, Inc. Printed in the + United States of America. All Rights Reserved. + + This product is protected by copyright and distributed under the + following license restricting its use. + + The Interface Definition Language Compiler Front End (CFE) is made + available for your use provided that you include this license and + copyright notice on all media and documentation and the software + program in which this product is incorporated in whole or part. You + may copy and extend functionality (but may not remove functionality) + of the Interface Definition Language CFE without charge, but you are + not authorized to license or distribute it to anyone else except as + part of a product or program developed by you or with the express + written consent of Sun Microsystems, Inc. ("Sun"). + + The names of Sun Microsystems, Inc. and any of its subsidiaries or + affiliates may not be used in advertising or publicity pertaining to + distribution of Interface Definition Language CFE as permitted herein. + + This license is effective until terminated by Sun for failure to + comply with this license. Upon termination, you shall destroy or + return all code and documentation for the Interface Definition + Language CFE. + + INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED AS IS WITH NO WARRANTIES + OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A + COURSE OF DEALING, USAGE OR TRADE PRACTICE. + + INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED WITH NO SUPPORT AND + WITHOUT ANY OBLIGATION ON THE PART OF Sun OR ANY OF ITS SUBSIDIARIES + OR AFFILIATES TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR + ENHANCEMENT. + + SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY + WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY + PATENTS BY INTERFACE DEFINITION LANGUAGE CFE OR ANY PART THEREOF. + + IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE + LIABLE FOR ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND + CONSEQUENTIAL DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY + OF SUCH DAMAGES. + + Use, duplication, or disclosure by the government is subject to + restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in + Technical Data and Computer Software clause at DFARS 252.227-7013 and + FAR 52.227-19. + + Sun, Sun Microsystems and the Sun logo are trademarks or registered + trademarks of Sun Microsystems, Inc. + + SunSoft, Inc. + 2550 Garcia Avenue + Mountain View, California 94043 + + NOTE: + + SunOS, SunSoft, Sun, Solaris, Sun Microsystems or the Sun logo are + trademarks or registered trademarks of Sun Microsystems, Inc. + +Files: ACE_wrappers/TAO/tao/DynamicInterface/Unknown_User_Exception.h + ACE_wrappers/TAO/tao/DynamicInterface/ExceptionList.h + ACE_wrappers/TAO/tao/DynamicInterface/Request.h + ACE_wrappers/TAO/tao/DynamicInterface/Server_Request.h + ACE_wrappers/TAO/tao/default_ports.h + ACE_wrappers/TAO/tao/Stub.h + ACE_wrappers/TAO/tao/corba.h + ACE_wrappers/TAO/tao/GIOP_Message_Base.h + ACE_wrappers/TAO/tao/Stub.cpp + ACE_wrappers/TAO/tao/Object.h + ACE_wrappers/TAO/tao/TAO_Server_Request.h + ACE_wrappers/TAO/tao/CDR.h + ACE_wrappers/TAO/tao/orbconf.h + ACE_wrappers/TAO/tao/AnyTypeCode/Marshal.cpp + ACE_wrappers/TAO/tao/AnyTypeCode/append.cpp + ACE_wrappers/TAO/tao/AnyTypeCode/NVList.h + ACE_wrappers/TAO/tao/Object.cpp + ACE_wrappers/TAO/tao/Principal.h + ACE_wrappers/TAO/tao/Principal.cpp +Copyright: © 1995 Sun Microsystems, Inc +License: other + This notice applies to all files in this software distribution that + were originally derived from SunSoft IIOP code (these files contain + Sun Microsystems copyright notices). + + COPYRIGHT AND LICENSING + ----------------------- + + Copyright 1995 Sun Microsystems, Inc. + Printed in the United States of America. + All Rights Reserved. + + This software product (LICENSED PRODUCT), implementing the Object + Management Group's "Internet Inter-ORB Protocol", is protected by + copyright and is distributed under the following license restricting + its use. Portions of LICENSED PRODUCT may be protected by one or more + U.S. or foreign patents, or pending applications. + + LICENSED PRODUCT is made available for your use provided that you + include this license and copyright notice on all media and + documentation and the software program in which this product is + incorporated in whole or part. + + You may copy, modify, distribute, or sublicense the LICENSED PRODUCT + without charge as part of a product or software program developed by + you, so long as you preserve the functionality of interoperating with + the Object Management Group's "Internet Inter-ORB Protocol" version + one. However, any uses other than the foregoing uses shall require + the express written consent of Sun Microsystems, Inc. + + The names of Sun Microsystems, Inc. and any of its subsidiaries or + affiliates may not be used in advertising or publicity pertaining to + distribution of the LICENSED PRODUCT as permitted herein. + + This license is effective until terminated by Sun for failure to + comply with this license. Upon termination, you shall destroy or + return all code and documentation for the LICENSED PRODUCT. + + LICENSED PRODUCT IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND + INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A + PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF + DEALING, USAGE OR TRADE PRACTICE. + + LICENSED PRODUCT IS PROVIDED WITH NO SUPPORT AND WITHOUT ANY + OBLIGATION ON THE PART OF SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES + TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT. + + SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY + WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY + PATENTS BY LICENSED PRODUCT OR ANY PART THEREOF. + + IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE + LIABLE FOR ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND + CONSEQUENTIAL DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY + OF SUCH DAMAGES. + + Use, duplication, or disclosure by the government is subject to + restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in + Technical Data and Computer Software clause at DFARS 252.227-7013 and + FAR 52.227-19. + + SunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are + trademarks or registered trademarks of Sun Microsystems, Inc. + + SunSoft, Inc. + 2550 Garcia Avenue + Mountain View, California 94043 + +Files: ACE_wrappers/ace/OS_NS_unistd.inl (swab function) +Copyright: © 1994-2006 Red Hat, Inc. +License: BSD-3 + +Files: ACE_wrappers/ace/UTF32_Encoding_Converter.cpp + ACE_wrappers/ace/UTF16_Encoding_Converter.cpp + ACE_wrappers/ace/UTF16_Encoding_Converter.inl +Copyright: © 2001-2004 Unicode, Inc. +License: other + Limitations on Rights to Redistribute This Code + + Unicode, Inc. hereby grants the right to freely use the information + supplied in this file in the creation of products supporting the + Unicode Standard, and to make copies of this file in any form + for internal or external distribution as long as this notice + remains attached. + +Files: ACE_wrappers/apps/JAWS3/* +Copyright: © 2000 James Hu and Entera, Inc. +License: other + Copyright and Licensing Information for JAWS Adaptive Web Server, + version 3 (JAWS3). + + JAWS3 is copyrighted by James Hu and Entera, Inc., Copyright (c) + 2000, all rights reserved. Since JAWS3 is open source, free + software, you are free to use, modify, and distribute the JAWS3 + source code and object code produced or otherwise derived from + JAWS3, provided you include this copyright statement in all versions + of such code. + + In particular, you can use JAWS3 in proprietary software and are + under no obligation to redistribute any of your source code that is + derived from JAWS3. Note, however, that you may not modify the + JAWS3 code in any way, or take any other action such as copyrighting + it yourself or claiming authorship of the JAWS3 code, that will + prevent JAWS3 from being distributed freely using an open source + development model. + + JAWS3 is provided as is with no warranties of any kind, including + the warranties of design, merchantibility and fitness for a + particular purpose, noninfringement, or arising from a course of + dealing, usage or trade practice. Moreover, JAWS3 is provided with + no support and without any obligation on the part of Entera, Inc., + or its employees. + + Entera, Inc., and its employees shall have no liability with respect + to the infringement of copyrights, trade secrets or any patents by + JAWS3 or any part thereof. Moreover, in no event will Entera, Inc., + or its employees, be liable for any lost revenue or profits or other + special, indirect and consequential damages. + + By submitting comments, suggestions, code, code snippets, techniques + (including that of usage), and algorithms, submitters acknowledge + that they have the right to do so, that any such submissions are + given freely and unreservedly, and that they waive any claims to + copyright or ownership. In addition, submitters acknowledge that + any such submission might become part of the copyright maintained on + the overall body of code, which comprises the JAWS3 software. By + making a submission, submitters agree to these terms. Furthermore, + submitters acknowledge that the incorporation or modification of + such submissions is entirely at the discretion of the moderators of + the open source JAWS3 project or their designees. + + The names JAWS3 and Entera, Inc., may not be used to endorse or + promote products or services derived from this source without + express written permission from Entera, Inc. Further, products or + services derived from this source may not be called JAWS3 nor may + the name Entera, Inc., appear in their names, without express + written permission from Entera, Inc. + + If you have any suggestions, additions, comments, or questions, + please let me know. + + James C. Hu + Entera, Inc. + jxh@entera.com + +Files: ACE_wrappers/apps/JAWS/clients/WebSTONE/* +Copyright: © 1995 Silicon Graphics, Inc. +License: other + This file and all files contained in this directory are + copyright 1995, Silicon Graphics, Inc. + + This software is provided without support and without any obligation on the + part of Silicon Graphics, Inc. to assist in its use, correction, modification + or enhancement. There is no guarantee that this software will be included in + future software releases, and it probably will not be included. + + THIS SOFTWARE IS PROVIDED "AS IS" WITH NO WARRANTIES OF ANY KIND INCLUDING THE + WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, + OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. + + In no event will Silicon Graphics, Inc. be liable for any lost revenue or + profits or other special, indirect and consequential damages, even if + Silicon Graphics, Inc. has been advised of the possibility of such damages. + +Files: ACE_wrappers/ASNMP/* +Copyright: © 1996 Hewlett-Packard Company + © 1988, 1989, 1991, 1992 Carnegie Mellon University + © 1997 Cisco Systems, Inc. +License: other-BSD + These copyrights apply to the SNMP++ module shipped with the ACE library: + + /*=================================================================== + Copyright (c) 1996 + Hewlett-Packard Company + + ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. + Permission to use, copy, modify, distribute and/or sell this software + and/or its documentation is hereby granted without fee. User agrees + to display the above copyright notice and this license notice in all + copies of the software and any documentation of the software. User + agrees to assume all liability for the use of the software; Hewlett-Packard + makes no representations about the suitability of this software for any + purpose. It is provided "AS-IS without warranty of any kind,either express + or implied. User hereby grants a royalty-free license to any and all + derivatives based upon this software code base. + + =====================================================================*/ + + /********************************************************************** + Copyright 1988, 1989, 1991, 1992 by Carnegie Mellon University + + All Rights Reserved + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of CMU not be + used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING + ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL + CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR + ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS + SOFTWARE. + ******************************************************************/ + + Certain portions of this version of HP's SNMP++ are: + + /*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- + Copyright 1997 Cisco Systems, Inc. + + Permission to use, copy, modify, and distribute this software for any + purpose and without fee is hereby granted, provided that this + copyright and permission notice appear on all copies of the software and + supporting documentation, the name of Cisco Systems, Inc. not be used + in advertising or publicity pertaining to distribution of the + program without specific prior permission, and notice be given + in supporting documentation that modification, copying and distribution is by + permission of Cisco Systems, Inc. + + Cisco Systems, Inc. makes no representations about the suitability of this + software for any purpose. THIS SOFTWARE IS PROVIDED ``AS IS'' + AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT + LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGMENT AND + FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL CISCO SYSTEMS, INC. BE + LIABLE FOR ANY DAMAGES ARISING OUT OF THIS LICENSE OR YOUR USE OF THE + SOFTWARE INCLUDING WITHOUT LIMITATION, DIRECT, INDIRECT OR CONSEQUENTIAL + DAMAGES. + -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/ + +Files: ACE_wrappers/ace/OS_NS_wchar.cpp (wcs*_emulation functions) +Copyright: © 1991, 1993 The Regents of the University of California +License: BSD-4 + Copyright (c) 1991, 1993 + The Regents of the University of California. All rights reserved. + + This code is derived from software contributed to Berkeley by + James W. Williams of NASA Goddard Space Flight Center. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by the University of + California, Berkeley and its contributors. + 4. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + +Files: ACE_wrappers/ace/Get_Opt.cpp +Copyright: © 1987, 1993, 1994 The Regents of the University of California + © 2000 The NetBSD Foundation, Inc. +License: BSD-4 + Copyright (c) 1987, 1993, 1994 + The Regents of the University of California. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by the University of + California, Berkeley and its contributors. + 4. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ****************************************************************** + + Copyright (c) 2000 The NetBSD Foundation, Inc. + All rights reserved. + + This code is derived from software contributed to The NetBSD Foundation + by Dieter Baron and Thomas Klausner. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by the NetBSD + Foundation, Inc. and its contributors. + 4. Neither the name of The NetBSD Foundation nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS + BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +Files: ACE_wrappers/examples/C++NPv1 + ACE_wrappers/examples/C++NPv2 + ACE_wrappers/examples/APG +Copyright: © 2001, 2003 Addison Wesley +License: other + All of the files in these directories are copyright Addison Wesley, + and they come with absolutely no warranty whatsoever. Permission is + hereby granted to use these programs for educational or commercial + purposes. --- ace-6.0.1.orig/debian/libace-tkreactor-dev.install +++ ace-6.0.1/debian/libace-tkreactor-dev.install @@ -0,0 +1,3 @@ +usr/lib/libACE_TkReactor.so +usr/include/ace/TkReactor +usr/lib/pkgconfig/ACE_TkReactor.pc --- ace-6.0.1.orig/debian/libtao-2.0.1.install +++ ace-6.0.1/debian/libtao-2.0.1.install @@ -0,0 +1,41 @@ +usr/lib/libTAO-*.so +usr/lib/libTAO_AnyTypeCode-*.so +usr/lib/libTAO_BiDirGIOP-*.so +usr/lib/libTAO_CodecFactory-*.so +usr/lib/libTAO_Codeset-*.so +usr/lib/libTAO_Compression-*.so +usr/lib/libTAO_CSD_Framework-*.so +usr/lib/libTAO_CSD_ThreadPool-*.so +usr/lib/libTAO_DynamicAny-*.so +usr/lib/libTAO_DynamicInterface-*.so +usr/lib/libTAO_EndpointPolicy-*.so +usr/lib/libTAO_IFR_Client-*.so +usr/lib/libTAO_IORInterceptor-*.so +usr/lib/libTAO_IORManip-*.so +usr/lib/libTAO_IORTable-*.so +usr/lib/libTAO_Messaging-*.so +usr/lib/libTAO_ObjRefTemplate-*.so +usr/lib/libTAO_PI-*.so +usr/lib/libTAO_PI_Server-*.so +usr/lib/libTAO_PortableServer-*.so +usr/lib/libTAO_RTCORBA-*.so +usr/lib/libTAO_RTPortableServer-*.so +usr/lib/libTAO_RTScheduler-*.so +usr/lib/libTAO_SmartProxies-*.so +usr/lib/libTAO_Strategies-*.so +usr/lib/libTAO_TC-*.so +usr/lib/libTAO_TC_IIOP-*.so +usr/lib/libTAO_TypeCodeFactory-*.so +usr/lib/libTAO_Utils-*.so +usr/lib/libTAO_Valuetype-*.so +usr/lib/libTAO_ImR_Client-*.so +usr/lib/libTAO_DiffServPolicy-*.so +usr/lib/libTAO_ZlibCompressor-*.so +usr/lib/libTAO_Bzip2Compressor-*.so +usr/lib/libTAO_LzoCompressor-*.so +usr/lib/libTAO_IFR_BE-*.so +usr/lib/libTAO_IDL_FE-*.so +usr/lib/libTAO_IDL_BE-*.so +usr/lib/libTAO_ZIOP-*.so +usr/lib/libTAO_ETCL-*.so +usr/lib/libTAO_Monitor-*.so --- ace-6.0.1.orig/debian/libtao-orbsvcs-dev.install +++ ace-6.0.1/debian/libtao-orbsvcs-dev.install @@ -0,0 +1,115 @@ +usr/include/orbsvcs +usr/share/idl/orbsvcs +usr/lib/libTAO_AV.so +usr/lib/libTAO_CosConcurrency.so +usr/lib/libTAO_CosConcurrency_Skel.so +usr/lib/libTAO_CosConcurrency_Serv.so +usr/lib/libTAO_CosEvent.so +usr/lib/libTAO_CosEvent_Skel.so +usr/lib/libTAO_CosEvent_Serv.so +usr/lib/libTAO_CosLifeCycle.so +usr/lib/libTAO_CosLoadBalancing.so +usr/lib/libTAO_CosNaming.so +usr/lib/libTAO_CosNaming_Skel.so +usr/lib/libTAO_CosNaming_Serv.so +usr/lib/libTAO_CosNotification.so +usr/lib/libTAO_CosNotification_Persist.so +usr/lib/libTAO_CosNotification_Skel.so +usr/lib/libTAO_CosNotification_Serv.so +usr/lib/libTAO_CosNotification_MC.so +usr/lib/libTAO_CosNotification_MC_Ext.so +usr/lib/libTAO_CosProperty.so +usr/lib/libTAO_CosProperty_Skel.so +usr/lib/libTAO_CosProperty_Serv.so +usr/lib/libTAO_CosTime.so +usr/lib/libTAO_CosTrading.so +usr/lib/libTAO_CosTrading_Skel.so +usr/lib/libTAO_CosTrading_Serv.so +usr/lib/libTAO_DsEventLogAdmin.so +usr/lib/libTAO_DsEventLogAdmin_Skel.so +usr/lib/libTAO_DsEventLogAdmin_Serv.so +usr/lib/libTAO_DsLogAdmin.so +usr/lib/libTAO_DsLogAdmin_Skel.so +usr/lib/libTAO_DsLogAdmin_Serv.so +usr/lib/libTAO_DsNotifyLogAdmin.so +usr/lib/libTAO_DsNotifyLogAdmin_Skel.so +usr/lib/libTAO_DsNotifyLogAdmin_Serv.so +usr/lib/libTAO_FT_ServerORB.so +usr/lib/libTAO_FT_ClientORB.so +usr/lib/libTAO_FTORB_Utils.so +usr/lib/libTAO_FaultTolerance.so +usr/lib/libTAO_HTIOP.so +usr/lib/libTAO_IFRService.so +usr/lib/libTAO_PortableGroup.so +usr/lib/libTAO_RTCORBAEvent.so +usr/lib/libTAO_RTEvent.so +usr/lib/libTAO_RTEvent_Serv.so +usr/lib/libTAO_RTEvent_Skel.so +usr/lib/libTAO_RTEventLogAdmin.so +usr/lib/libTAO_RTEventLogAdmin_Skel.so +usr/lib/libTAO_RTEventLogAdmin_Serv.so +usr/lib/libTAO_RTKokyuEvent.so +usr/lib/libTAO_RTSched.so +usr/lib/libTAO_RTSchedEvent.so +usr/lib/libTAO_RT_Notification.so +usr/lib/libTAO_SSLIOP.so +usr/lib/libTAO_Security.so +usr/lib/libTAO_Svc_Utils.so +usr/lib/libTAO_FTRT_EventChannel.so +usr/lib/libTAO_FtRtEvent.so +usr/lib/libTAO_FTRT_ClientORB.so +usr/lib/libTAO_CosLifeCycle_Skel.so +usr/lib/libTAO_Notify_Service.so +usr/lib/libTAO_CosTime_Serv.so +usr/lib/libTAO_CosTime_Skel.so +usr/lib/libTAO_Catior_i.so +usr/lib/libTAO_ReplicationManagerLib.so +usr/lib/libTAO_ImR_Activator.so +usr/lib/libTAO_ImR_Locator.so +usr/lib/libTAO_ImR_Locator_IDL.so +usr/lib/libTAO_ImR_Activator_IDL.so +usr/lib/pkgconfig/TAO_CosLoadBalancing.pc +usr/lib/pkgconfig/TAO_CosConcurrency_Serv.pc +usr/lib/pkgconfig/TAO_CosEvent.pc +usr/lib/pkgconfig/TAO_DsLogAdmin_Skel.pc +usr/lib/pkgconfig/TAO_DsEventLogAdmin.pc +usr/lib/pkgconfig/TAO_CosProperty_Skel.pc +usr/lib/pkgconfig/TAO_CosEvent_Serv.pc +usr/lib/pkgconfig/TAO_CosNotification_Skel.pc +usr/lib/pkgconfig/TAO_DsNotifyLogAdmin_Serv.pc +usr/lib/pkgconfig/TAO_CosTime_Skel.pc +usr/lib/pkgconfig/TAO_RTEventLogAdmin_Skel.pc +usr/lib/pkgconfig/TAO_CosProperty.pc +usr/lib/pkgconfig/TAO_CosLifeCycle_Skel.pc +usr/lib/pkgconfig/TAO_RTEvent_Skel.pc +usr/lib/pkgconfig/TAO_FaultTolerance.pc +usr/lib/pkgconfig/TAO_RTEvent.pc +usr/lib/pkgconfig/TAO_CosNaming.pc +usr/lib/pkgconfig/TAO_CosConcurrency_Skel.pc +usr/lib/pkgconfig/TAO_FT_ServerORB.pc +usr/lib/pkgconfig/TAO_DsLogAdmin.pc +usr/lib/pkgconfig/TAO_DsEventLogAdmin_Skel.pc +usr/lib/pkgconfig/TAO_FT_ClientORB.pc +usr/lib/pkgconfig/TAO_CosTrading_Skel.pc +usr/lib/pkgconfig/TAO_CosNotification.pc +usr/lib/pkgconfig/TAO_CosTrading.pc +usr/lib/pkgconfig/TAO_CosTime_Serv.pc +usr/lib/pkgconfig/TAO_CosNaming_Skel.pc +usr/lib/pkgconfig/TAO_CosProperty_Serv.pc +usr/lib/pkgconfig/TAO_DsNotifyLogAdmin_Skel.pc +usr/lib/pkgconfig/TAO_CosEvent_Skel.pc +usr/lib/pkgconfig/TAO_CosNotification_Serv.pc +usr/lib/pkgconfig/TAO_FTORB_Utils.pc +usr/lib/pkgconfig/TAO_CosConcurrency.pc +usr/lib/pkgconfig/TAO_DsNotifyLogAdmin.pc +usr/lib/pkgconfig/TAO_CosNaming_Serv.pc +usr/lib/pkgconfig/TAO_DsLogAdmin_Serv.pc +usr/lib/pkgconfig/TAO_CosTime.pc +usr/lib/pkgconfig/TAO_RTEvent_Serv.pc +usr/lib/pkgconfig/TAO_CosTrading_Serv.pc +usr/lib/pkgconfig/TAO_CosLifeCycle.pc +usr/lib/pkgconfig/TAO_DsEventLogAdmin_Serv.pc +usr/lib/pkgconfig/TAO_RTEventLogAdmin.pc +usr/lib/pkgconfig/TAO_RTEventLogAdmin_Serv.pc +usr/lib/pkgconfig/TAO_Svc_Utils.pc +usr/lib/pkgconfig/TAO_PortableGroup.pc --- ace-6.0.1.orig/debian/libace-qtreactor-6.0.1.install +++ ace-6.0.1/debian/libace-qtreactor-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_QtReactor-*.so --- ace-6.0.1.orig/debian/libace-tkreactor-6.0.1.install +++ ace-6.0.1/debian/libace-tkreactor-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_TkReactor-*.so --- ace-6.0.1.orig/debian/libtao-orbsvcs-2.0.1.install +++ ace-6.0.1/debian/libtao-orbsvcs-2.0.1.install @@ -0,0 +1,68 @@ +usr/lib/libTAO_AV-*.so +usr/lib/libTAO_CosConcurrency-*.so +usr/lib/libTAO_CosConcurrency_Skel-*.so +usr/lib/libTAO_CosConcurrency_Serv-*.so +usr/lib/libTAO_CosEvent-*.so +usr/lib/libTAO_CosEvent_Skel-*.so +usr/lib/libTAO_CosEvent_Serv-*.so +usr/lib/libTAO_CosLifeCycle-*.so +usr/lib/libTAO_CosLoadBalancing-*.so +usr/lib/libTAO_CosNaming-*.so +usr/lib/libTAO_CosNaming_Skel-*.so +usr/lib/libTAO_CosNaming_Serv-*.so +usr/lib/libTAO_CosNotification-*.so +usr/lib/libTAO_CosNotification_Persist-*.so +usr/lib/libTAO_CosNotification_Skel-*.so +usr/lib/libTAO_CosNotification_Serv-*.so +usr/lib/libTAO_CosNotification_MC-*.so +usr/lib/libTAO_CosNotification_MC_Ext-*.so +usr/lib/libTAO_CosProperty-*.so +usr/lib/libTAO_CosProperty_Skel-*.so +usr/lib/libTAO_CosProperty_Serv-*.so +usr/lib/libTAO_CosTime-*.so +usr/lib/libTAO_CosTrading-*.so +usr/lib/libTAO_CosTrading_Skel-*.so +usr/lib/libTAO_CosTrading_Serv-*.so +usr/lib/libTAO_CosLifeCycle_Skel-*.so +usr/lib/libTAO_DsEventLogAdmin-*.so +usr/lib/libTAO_DsEventLogAdmin_Skel-*.so +usr/lib/libTAO_DsEventLogAdmin_Serv-*.so +usr/lib/libTAO_DsLogAdmin-*.so +usr/lib/libTAO_DsLogAdmin_Skel-*.so +usr/lib/libTAO_DsLogAdmin_Serv-*.so +usr/lib/libTAO_DsNotifyLogAdmin-*.so +usr/lib/libTAO_DsNotifyLogAdmin_Skel-*.so +usr/lib/libTAO_DsNotifyLogAdmin_Serv-*.so +usr/lib/libTAO_FaultTolerance-*.so +usr/lib/libTAO_FT_ClientORB-*.so +usr/lib/libTAO_FT_ServerORB-*.so +usr/lib/libTAO_FTORB_Utils-*.so +usr/lib/libTAO_FTRT_EventChannel-*.so +usr/lib/libTAO_FtRtEvent-*.so +usr/lib/libTAO_FTRT_ClientORB-*.so +usr/lib/libTAO_HTIOP-*.so +usr/lib/libTAO_IFRService-*.so +usr/lib/libTAO_PortableGroup-*.so +usr/lib/libTAO_RTCORBAEvent-*.so +usr/lib/libTAO_RTEvent-*.so +usr/lib/libTAO_RTEvent_Serv-*.so +usr/lib/libTAO_RTEvent_Skel-*.so +usr/lib/libTAO_RTEventLogAdmin-*.so +usr/lib/libTAO_RTEventLogAdmin_Skel-*.so +usr/lib/libTAO_RTEventLogAdmin_Serv-*.so +usr/lib/libTAO_RTKokyuEvent-*.so +usr/lib/libTAO_RTSched-*.so +usr/lib/libTAO_RTSchedEvent-*.so +usr/lib/libTAO_RT_Notification-*.so +usr/lib/libTAO_SSLIOP-*.so +usr/lib/libTAO_Security-*.so +usr/lib/libTAO_Svc_Utils-*.so +usr/lib/libTAO_Notify_Service-*.so +usr/lib/libTAO_CosTime_Serv-*.so +usr/lib/libTAO_CosTime_Skel-*.so +usr/lib/libTAO_Catior_i-*.so +usr/lib/libTAO_ImR_Locator_IDL-*.so +usr/lib/libTAO_ImR_Activator-*.so +usr/lib/libTAO_ReplicationManagerLib-*.so +usr/lib/libTAO_ImR_Activator_IDL-*.so +usr/lib/libTAO_ImR_Locator-*.so --- ace-6.0.1.orig/debian/tao_idl +++ ace-6.0.1/debian/tao_idl @@ -0,0 +1,6 @@ +#!/bin/sh + +ACE_ROOT=/usr/lib/ace; export ACE_ROOT; +TAO_ROOT=$ACE_ROOT/TAO; export TAO_ROOT; + +exec $TAO_ROOT/tao_idl "$@" --- ace-6.0.1.orig/debian/libace-inet-ssl-6.0.1.install +++ ace-6.0.1/debian/libace-inet-ssl-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_INet_SSL-*.so --- ace-6.0.1.orig/debian/tao-utils.install +++ ace-6.0.1/debian/tao-utils.install @@ -0,0 +1,2 @@ +usr/bin/tao_ns{add,del,list} +usr/bin/tao_catior --- ace-6.0.1.orig/debian/tao-utils.manpages +++ ace-6.0.1/debian/tao-utils.manpages @@ -0,0 +1,4 @@ +debian/tao_catior.1 +debian/tao_nslist.1 +debian/tao_nsadd.1 +debian/tao_nsdel.1 --- ace-6.0.1.orig/debian/libtao-dev.dirs +++ ace-6.0.1/debian/libtao-dev.dirs @@ -0,0 +1 @@ +usr/lib/ace/TAO/MPC --- ace-6.0.1.orig/debian/control +++ ace-6.0.1/debian/control @@ -0,0 +1,801 @@ +Source: ace +Section: devel +Priority: optional +Maintainer: Debian ACE+TAO maintainers +Uploaders: Thomas Girard , Pau Garcia i Quiles , Marek Brudka +DM-Upload-Allowed: yes +Build-Depends: debhelper (>= 7), libssl-dev (>= 0.9.7d), dpatch (>= 2.0.10), libxt-dev (>= 4.3.0), libfltk1.1-dev (>= 1.1.4), libqt4-dev (>= 4.4~rc1-4), tk-dev (>= 8.5), libfox-1.6-dev, zlib1g-dev, libzzip-dev, liblzo2-dev, docbook-to-man, bzip2, libbz2-dev, doxygen, graphviz +Standards-Version: 3.9.2 +Vcs-Git: git://anonscm.debian.org/pkg-ace/pkg-ace.git +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ace/pkg-ace.git;a=summary +Homepage: http://www.cs.wustl.edu/~schmidt/ACE.html + +Package: mpc-ace +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Recommends: make +Replaces: libace-dev (= 5.6.3-4) +Suggests: libace-dev, pkg-config +Description: makefile, project and workspace creator + This package contains the Makefile, Project and Workspace Creator (MPC) + as distributed with the ACE toolkit. + . + MPC generates platform and compiler specific files to automate the + compilation process. + . + The following programs are included: + * mpc-ace, generating project files for a single target + * mwc-ace, generating workspace files for a set of projects + +Package: libace-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: C++ network programming framework + This package contains the ADAPTIVE Communication Environment (ACE) + framework. + . + It provides platform independent C++ wrappers for interprocess + communication: + * signals + * pipes + * sockets + * message queues + * semaphores + * shared memory + as well as thread, process management routines and much more. + . + Moreover, it defines patterns for common communication tasks. Beyond + these: + * Reactor, to handle event demultiplexing and dispatching + * Proactor, for asynchronous I/O driven programs + +Package: libace-dev +Architecture: any +Section: libdevel +Depends: libace-6.0.1 (= ${binary:Version}), ${misc:Depends} +Suggests: libace-doc, libtao-dev, pkg-config +Replaces: mpc-ace (<< 5.6.3-4) +Description: C++ network programming framework development files + This package contains the header files and static library for the ACE + framework. + +Package: libace-doc +Architecture: all +Section: doc +Depends: ${misc:Depends} +Suggests: libace-dev +Recommends: doc-base +Description: C++ network programming framework documentation + This package contains the ACE overview documentation, tutorials, + examples, and information regarding upstream development. + +Package: libace-ssl-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE secure socket layer library + This package contains wrappers that integrate the OpenSSL library in + the ACE framework. + +Package: libace-ssl-dev +Architecture: any +Section: libdevel +Depends: libace-ssl-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), libssl-dev (>= 0.9.7d), ${misc:Depends} +Description: ACE secure socket layer library development files + This package contains the header files and static library for the ACE + SSL library. + +Package: libace-rmcast-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE reliable multicast library + The RMCast library is a reliable source-ordered multicast protocol + implementation. + . + It uses sequence number for re-ordering, duplicate suppression and + loss detection of messages. + +Package: libace-rmcast-dev +Architecture: any +Section: libdevel +Depends: libace-rmcast-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} +Description: ACE reliable multicast library development files + This package contains the header files and static library for the ACE + reliable multicast library. + +Package: libace-tmcast-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE transactional multicast library + The TMCast library is a transaction multicast protocol + implementation. + . + Each message is delivered to multicast group members as a + transaction: an atomic, consistent and isolated action. + +Package: libace-tmcast-dev +Architecture: any +Section: libdevel +Depends: libace-tmcast-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} +Description: ACE transactional multicast library development files + This package contains the header files and static library for the ACE + transactional multicast library. + +Package: libace-htbp-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE protocol over HTTP tunneling library + The HTTP Tunneling, Bidirectional, Protocol (HTBP) library enables + the writing of stream-based protocols over HTTP. + . + This allows clients behind a firewall to establish a connection with + outbound servers using the HTTP protocol. + +Package: libace-htbp-dev +Architecture: any +Section: libdevel +Depends: libace-htbp-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} +Description: ACE protocol over HTTP tunneling library development files + This package contains the header files and static library for the ACE + HTBP library. + +Package: libace-inet-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE library for Inet protocol clients + ACE addon library for Inet protocol clients (and possibly servers + at some point) like http://, ftp:// etc + +Package: libace-inet-dev +Architecture: any +Section: libdevel +Depends: libace-inet-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} +Description: ACE library for Inet protocol clients development files + ACE addon library for Inet protocol clients (and possibly servers + at some point) like http://, ftp:// etc + +Package: libace-inet-ssl-6.0.1 +Architecture: any +Section: libs +Depends: libace-inet-6.0.1, libace-ssl-6.0.1, ${shlibs:Depends}, ${misc:Depends} +Description: ACE library for Inet protocol clients with SSL support + ACE addon library for Inet protocol clients (and possibly servers + at some point) which support SSL like https://, ftps:// etc + +Package: libace-inet-ssl-dev +Architecture: any +Section: libdevel +Depends: libace-inet-ssl-6.0.1 (= ${binary:Version}), libace-inet-dev (= ${binary:Version}), libace-ssl-dev (= ${binary:Version}), ${misc:Depends} +Description: ACE library for Inet protocol clients with SSL support development files + ACE addon library for Inet protocol clients (and possibly servers + at some point) which support SSL like https://, ftps:// etc + +Package: ace-gperf +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: gperf-ace (<< 5.7.7-1) +Replaces: gperf-ace (<< 5.7.7-1) +Description: ACE perfect hash function generator + ace_gperf is the ACE version of gperf. + . + Both ace_gperf and gperf were written by the same author, and have + basically the same options and functionality. ace_gperf simply takes + advantage of the some of the features provided by the ACE library. + +Package: gperf-ace +Architecture: all +Depends: ace-gperf, ${misc:Depends} +Description: ACE perfect hash function generator (transitional package) + This package is a transitional package to ace-gperf. + . + It can be safely removed after installation. + +Package: libacexml-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE SAX based XML parsing library + This package provides interfaces for XML parsing based on Simple API + for XML (SAX) 2.0, defined by David Megginson. This is an + event-driven parsing approach. + . + ACEXML is a small footprint and portable library. It does not + validate XML documents and supports only Unicode encoding. + +Package: libacexml-dev +Architecture: any +Section: libdevel +Replaces: libace-dev (<< 5.7.7-4) +Depends: libacexml-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} +Description: ACE SAX based XML parsing library development files + This package contains the header files and static library for the ACE + XML parsing library. + +Package: libkokyu-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: libtao-2.0.1, libtao-orbsvcs-2.0.1 +Description: ACE scheduling and dispatching library + Kokyu is a library designed to provide flexible scheduling and + dispatching services. + . + Currently it provides real-time scheduling and dispatching services + for TAO real-time CORBA Event Service. + +Package: libkokyu-dev +Architecture: any +Section: libdevel +Depends: libkokyu-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} +Description: ACE scheduling and dispatching library development files + This package contains the header files and static library for the ACE + scheduling and dispatching library. + +Package: libace-qtreactor-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE-GUI reactor integration for Qt + Recognizing the need to write reactor-based GUI applications, the ACE + community has created several reactor extensions for use with X + Window System. Each of these extends the ACE_Select_Reactor to work + with a specific toolkit. By using these reactors, your GUI + application can remain single threaded yet still respond to both GUI + events, such as button presses, any your own application events. + . + The ACE_QtReactor extends both the ACE_Select_Reactor and the + Trolltech Qt library's QObjects class. Rather then using select(), + the QtWaitForMultipleEvents() function is used. + +Package: libace-qtreactor-dev +Architecture: any +Section: libdevel +Depends: libace-qtreactor-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), libqt4-dev, ${misc:Depends} +Description: ACE-GUI reactor integration for Qt development files + This package contains header files and static library for the ACE-Qt + reactor integration. + +Package: libace-xtreactor-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE-GUI reactor integration for Xt + Recognizing the need to write reactor-based GUI applications, the ACE + community has created several reactor extensions for use with X + Window System. Each of these extends the ACE_Select_Reactor to work + with a specific toolkit. By using these reactors, your GUI + application can remain single threaded yet still respond to both GUI + events, such as button presses, any your own application events. + . + The ACE_XtReactor extends both the ACE_Select_Reactor and the X + Toolkit library function XtWaitForMultipleEvents(). + +Package: libace-xtreactor-dev +Architecture: any +Section: libdevel +Depends: libace-xtreactor-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), libxt-dev (>= 4.3.0), ${misc:Depends} +Description: ACE-GUI reactor integration for Xt development files + This package contains header files and static library for the ACE-Xt + reactor integration. + +Package: libace-tkreactor-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE-GUI reactor integration for Tk + Recognizing the need to write reactor-based GUI applications, the ACE + community has created several reactor extensions for use with X + Window System. Each of these extends the ACE_Select_Reactor to work + with a specific toolkit. By using these reactors, your GUI + application can remain single threaded yet still respond to both GUI + events, such as button presses, any your own application events. + . + The ACE_TkReactor provides reactor functionality around the popular + Tcl/Tk library. The underlying Tcl/Tk method used is + Tcl_DoOneEvent(). + +Package: libace-tkreactor-dev +Architecture: any +Section: libdevel +Depends: libace-tkreactor-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), tk-dev (>= 8.5), ${misc:Depends} +Description: ACE-GUI reactor integration for Tk development files + This package contains header files and static library for the ACE-Tk + reactor integration. + +Package: libace-flreactor-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE-GUI reactor integration for Fl + Recognizing the need to write reactor-based GUI applications, the ACE + community has created several reactor extensions for use with X + Window System. Each of these extends the ACE_Select_Reactor to work + with a specific toolkit. By using these reactors, your GUI + application can remain single threaded yet still respond to both GUI + events, such as button presses, any your own application events. + . + The ACE_FlReactor integrates with the FastLight toolkit's Fl::wait() + method. + +Package: libace-flreactor-dev +Architecture: any +Section: libdevel +Depends: libace-flreactor-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), libfltk1.1-dev (>= 1.1.4), ${misc:Depends} +Description: ACE-GUI reactor integration for Fl development files + This package contains header files and static library for the ACE-Fl + reactor integration. + +Package: libace-foxreactor-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE-GUI reactor integration for FOX + Recognizing the need to write reactor-based GUI applications, the ACE + community has created several reactor extensions for use with X + Window System. Each of these extends the ACE_Select_Reactor to work + with a specific toolkit. By using these reactors, your GUI + application can remain single threaded yet still respond to both GUI + events, such as button presses, any your own application events. + . + The ACE_FoxReactor integrates with the FOX toolkit. + +Package: libace-foxreactor-dev +Architecture: any +Section: libdevel +Depends: libace-foxreactor-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), libfox-1.6-dev, ${misc:Depends} +Description: ACE-GUI reactor integration for FOX development files + This package contains header files and static library for the ACE-FOX + reactor integration. + +Package: libtao-2.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE based CORBA ORB core libraries + The ACE ORB (TAO) is an open-source Common Object Request Broker + Architecture (CORBA) 2.x-compliant Object Request Broker (ORB). It + supports real-time extensions. + . + This package contains TAO core libraries. + +Package: libtao-dev +Architecture: any +Section: libdevel +Replaces: libtao-orbsvcs-dev (<< 5.7.7-4) +Depends: libtao-2.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} +Suggests: libtao-doc, libtao-orbsvcs-dev +Description: ACE based CORBA ORB core libraries development files + This package contains the header files for TAO. Due to the size of + the static libs (> 400MB) they have been left out. + +Package: libtao-doc +Architecture: all +Section: doc +Depends: libace-doc (= ${source:Version}), ${misc:Depends} +Suggests: libtao-dev +Recommends: doc-base +Description: ACE based CORBA ORB core libraries documentation + This package contains the TAO overview documentation, tutorials, + examples, and information regarding upstream development. + +Package: libtao-orbsvcs-2.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO CORBA services libraries + This package contains libraries that are needed by many TAO programs. + +Package: libtao-orbsvcs-dev +Architecture: any +Section: libdevel +Replaces: libtao-dev (<< 5.7.7-4) +Depends: libtao-orbsvcs-2.0.1 (= ${binary:Version}), libtao-dev (= ${binary:Version}), ${misc:Depends} +Description: TAO CORBA services development files + This package contains the header files for the TAO CORBA services. + . + Due to the size of the static libs (> 400MB) they have been left out. + The examples and some documentation have been included as well. + +Package: libtao-qtresource-2.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends}, ${misc:Depends} +Description: TAO-GUI reactor integration for Qt + The Qt resource factory integrates ACE QtReactor into TAO ORB + reactor. + +Package: libtao-qtresource-dev +Architecture: any +Section: libdevel +Depends: libtao-qtresource-2.0.1 (= ${binary:Version}), libace-qtreactor-dev (= ${binary:Version}), libtao-dev (= ${binary:Version}), ${misc:Depends} +Description: TAO-GUI reactor integration for Qt development files + This package contains header files and static library for the TAO-Qt + reactor integration. + +Package: libtao-xtresource-2.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO-GUI reactor integration for Xt + The Xt resource factory integrates ACE XtReactor into TAO ORB + reactor. + +Package: libtao-xtresource-dev +Architecture: any +Section: libdevel +Depends: libtao-xtresource-2.0.1 (= ${binary:Version}), libace-xtreactor-dev (= ${binary:Version}), libtao-dev (= ${binary:Version}), ${misc:Depends} +Description: TAO-GUI reactor integration for Xt development files + This package contains header files and static library for the TAO-Xt + reactor integration. + +Package: libtao-flresource-2.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO-GUI reactor integration for Fl + The Fl resource factory integrates ACE FlReactor into TAO ORB + reactor. + +Package: libtao-flresource-dev +Architecture: any +Section: libdevel +Depends: libtao-flresource-2.0.1 (= ${binary:Version}), libace-flreactor-dev (= ${binary:Version}), libtao-dev (= ${binary:Version}), ${misc:Depends} +Description: TAO-GUI reactor integration for Fl development files + This package contains header files and static library for the TAO-Fl + reactor integration. + +Package: libtao-tkresource-2.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO-GUI reactor integration for Tk + The Tk resource factory integrates ACE TkReactor into TAO ORB + reactor. + +Package: libtao-tkresource-dev +Architecture: any +Section: libdevel +Depends: libtao-tkresource-2.0.1 (= ${binary:Version}), libace-tkreactor-dev (= ${binary:Version}), libtao-dev (= ${binary:Version}), ${misc:Depends} +Description: TAO-GUI reactor integration for Tk development files + This package contains header files and static library for the TAO-Tk + reactor integration. + +Package: libtao-foxresource-2.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO-GUI reactor integration for FOX + The Fl resource factory integrates ACE FoxReactor into TAO ORB + reactor. + +Package: libtao-foxresource-dev +Architecture: any +Section: libdevel +Depends: libtao-foxresource-2.0.1 (= ${binary:Version}), libace-foxreactor-dev (= ${binary:Version}), libtao-dev (= ${binary:Version}), ${misc:Depends} +Description: TAO-GUI reactor integration for FOX development files + This package contains header files and static library for the TAO-FOX + reactor integration. + +Package: tao-idl +Architecture: any +Depends: libtao-2.0.1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: TAO IDL to C++ compiler + This package provides a Interface Definition Language (IDL) to C++ + compiler. + . + Use tao_idl to generate stubs and skeletons to call or implement + CORBA distributed objects in C++. + +Package: tao-ifr +Architecture: any +Depends: libtao-2.0.1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: TAO interface repository + CORBA-aware programs can contact an interface repository to get + objects interfaces at run-time. Then they can use the Dynamic + Invocation Interface (DII) mechanism to invoke requests on those + objects. + . + This package includes the following programs: + * IFR_Service: interface repository server + * tao_ifr: feeds in the interface repository + +Package: tao-imr +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO implementation repository + An implementation repository activates CORBA servers on demand. + . + This package includes the following programs: + * ImplRepo_Service: the main server; delegates call to activators + * ImR_Activator: activates and shuts servers down on demand + * tao_imr: registers servers for later activation + +Package: tao-ft +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO fault tolerant services + TAO supports Fault Tolerance for CORBA Objects. + . + This package includes three FT CORBA infrastructure components: + * Fault_Detector that monitors a process or a host + * Fault_Notifier that receives fault reports from detectors + * FT_ReplicationManager that manages object groups + +Package: tao-utils +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: tao-cosnaming +Description: TAO naming service and IOR utilities + This package includes programs to query or control a CORBA naming + service, and to dump an IOR. + . + The following programs are included: + * tao_nslist, to list naming context and object bindings + * tao_nsadd, to create bindings + * tao_nsdel, to remove bindings + * tao_catior, to dump the content of an Interoperable Object Reference + +Package: tao-cosnaming +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tao-naming (<< 5.7.7-1) +Replaces: tao-naming (<< 5.7.7-1) +Recommends: tao-utils +Description: TAO naming service + TAO implementation of CORBA interoperable naming service (INS). + . + A naming service provides a location service for CORBA objects. + Given a name, it will return the Interoperable Object Reference (IOR) + for the CORBA object that was registered with this name. + . + The following program is included: + * tao_cosnaming + +Package: tao-naming +Architecture: all +Depends: tao-cosnaming, ${misc:Depends} +Description: TAO naming service (transitional package) + This package is a transitional package to tao-cosnaming. + . + It can be safely removed after installation. + +Package: tao-costrading +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tao-trading (<< 5.7.7-1) +Replaces: tao-trading (<< 5.7.7-1) +Description: TAO trading service + TAO implementation of CORBA trading service. + . + A trading service is quite like a naming service except that it + relies on a set of properties instead of a name to find object + references. + . + The following program is included: + * tao_costrading + +Package: tao-trading +Architecture: all +Depends: tao-costrading, ${misc:Depends} +Description: TAO trading service (transitional package) + This package is a transitional package to tao-costrading. + . + It can be safely removed after installation. + +Package: tao-cosevent +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tao-event (<< 5.7.7-1) +Replaces: tao-event (<< 5.7.7-1) +Description: TAO event service + An event service creates channels where suppliers and consumers can + push or pull events. This channel enables asynchronous, message based + communication between consumers and suppliers. + . + This event service supports both the Push and Pull styles for event + communication. + . + The following program is included: + * tao_cosevent + +Package: tao-event +Architecture: all +Depends: tao-cosevent, ${misc:Depends} +Description: TAO event service (transitional package) + This package is a transitional package to tao-cosevent. + . + It can be safely removed after installation. + +Package: tao-rtevent +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO real-time event service + Another TAO implementation of CORBA event service. For more + information on CORBA event service have a look at tao-cosevent + package. + . + This version does not support the Pull style but provides a real-time + event channel. + . + The following program is included: + * tao_rtevent + +Package: tao-ftrtevent +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO fault-tolerant real-time event service + TAO fault-tolerant, real-time CORBA event service. For more + information on CORBA event service have a look at tao-cosevent + package. + . + This package contains: + * ftrt_eventservice, the fault-tolerant event channel + * ftrtec_factory_service, spawning ftrt_eventservice processes + * ftrtec_gateway_service, relaying events to FT CORBA unaware clients + +Package: tao-cosnotification +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tao-notify (<< 5.7.7-1) +Replaces: tao-notify (<< 5.7.7-1) +Description: TAO notification service + A notification service enhances an event service. For more + information on CORBA event service have a look at tao-cosevent + package. + . + The notification service adds: + * quality of service control on reliability and speed + * event filtering + . + This package contains: + * tao_cosnotification + +Package: tao-notify +Architecture: all +Depends: tao-cosnotification, ${misc:Depends} +Description: TAO notification service (transitional package) + This package is a transitional package to tao-cosnotification. + . + It can be safely removed after installation. + +Package: tao-load +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO load balancing service + TAO implementation of OMG Load Balancing and Monitoring + specification. + . + This package provides: + * LoadManager, that distributes loads across objects + * LoadMonitor, that monitors and reports loads to a manager + +Package: tao-tls +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tao-log (<< 5.7.7-1) +Replaces: tao-log (<< 5.7.7-1) +Description: TAO telecom log services + TAO implementations of CORBA telecom log service. + . + Four separate services are provided: + * tao_tls_basic + * tao_tls_event + * tao_tls_notify + * tao_tls_rtevent + +Package: tao-log +Architecture: all +Depends: tao-tls, ${misc:Depends} +Description: TAO telecom log services (transitional package) + This package is a transitional package to tao-tls. + . + It can be safely removed after installation. + +Package: tao-scheduling +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: TAO scheduling service + TAO implementation of CORBA scheduling service. + . + This package contains: + * Scheduling_Service + * Dump_Schedule + +Package: tao-cosconcurrency +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tao-concurrency (<< 5.7.7-1) +Replaces: tao-concurrency (<< 5.7.7-1) +Description: TAO concurrency service + A concurrency service provides a mechanism to acquire and release + locks in a distributed system. + . + TAO version does not support transactions. + +Package: tao-concurrency +Architecture: all +Depends: tao-cosconcurrency, ${misc:Depends} +Description: TAO concurrency service (transitional package) + This package is a transitional package to tao-cosconcurrency. + . + It can be safely removed after installation. + +Package: tao-coslifecycle +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tao-lifecycle (<< 5.7.7-1) +Replaces: tao-lifecycle (<< 5.7.7-1) +Description: TAO lifecycle service + The CORBA lifecycle service allows clients to create, delete, copy + and move objects. + . + This package contains the TAO implementation of such service. + +Package: tao-lifecycle +Architecture: all +Depends: tao-coslifecycle, ${misc:Depends} +Description: TAO lifecycle service (transitional package) + This package is a transitional package to tao-coslifecycle. + . + It can be safely removed after installation. + +Package: tao-costime +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: tao-time (<< 5.7.7-1) +Replaces: tao-time (<< 5.7.7-1) +Description: TAO time service + A time service offers globally synchronized time to clients. + . + This package contains two programs: + * tao_costime_clerk, answering client requests + * tao_costime_server, queried by clerks to keep their time + synchronized + +Package: tao-time +Architecture: all +Depends: tao-costime, ${misc:Depends} +Description: TAO time service (transitional package) + This package is a transitional package to tao-costime. + . + It can be safely removed after installation. + +Package: ace-netsvcs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE network service implementations + ACE network services provide reusable components for common + distributed system tasks such as logging, naming, locking, and time + synchronization. + . + This package contains driver program and exemplary configuration + files that links the various ACE network services together, either + statically or dynamically, to form complete server programs. + +Package: libnetsvcs-6.0.1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ACE network service implementations + ACE network services provide reusable components for common + distributed system tasks such as logging, naming, locking, and time + synchronization. + . + This package contains runtime libraries for ACE network services. + +Package: libnetsvcs-dev +Architecture: any +Section: libdevel +Depends: libnetsvcs-6.0.1 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends} +Description: ACE network service implementations + ACE network services provide reusable components for common + distributed system tasks such as logging, naming, locking, and time + synchronization. + . + This package contains header files and static library for the ACE + network services library. --- ace-6.0.1.orig/debian/tao-load.docs +++ ace-6.0.1/debian/tao-load.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/LoadBalancer/README --- ace-6.0.1.orig/debian/tao-utils.docs +++ ace-6.0.1/debian/tao-utils.docs @@ -0,0 +1,4 @@ +ACE_wrappers/TAO/utils/nslist/README.nslist +ACE_wrappers/TAO/utils/catior/README.catior +ACE_wrappers/TAO/utils/catior/test + --- ace-6.0.1.orig/debian/libtao-dev.install +++ ace-6.0.1/debian/libtao-dev.install @@ -0,0 +1,113 @@ +usr/include/tao/*.{h,i,inl,cpp} +usr/share/idl/tao +usr/lib/libTAO.so +usr/include/tao/AnyTypeCode +usr/lib/libTAO_AnyTypeCode.so +usr/include/tao/BiDir_GIOP +usr/lib/libTAO_BiDirGIOP.so +usr/include/tao/CodecFactory +usr/lib/libTAO_CodecFactory.so +usr/include/tao/Codeset +usr/lib/libTAO_Codeset.so +usr/include/tao/Compression +usr/lib/libTAO_Compression.so +usr/include/tao/CSD_Framework +usr/lib/libTAO_CSD_Framework.so +usr/include/tao/CSD_ThreadPool +usr/lib/libTAO_CSD_ThreadPool.so +usr/include/tao/DynamicAny +usr/lib/libTAO_DynamicAny.so +usr/include/tao/DynamicInterface +usr/lib/libTAO_DynamicInterface.so +usr/include/tao/EndpointPolicy +usr/lib/libTAO_EndpointPolicy.so +usr/include/tao/IFR_Client +usr/lib/libTAO_IFR_Client.so +usr/include/tao/ImR_Client +usr/lib/libTAO_ImR_Client.so +usr/include/tao/IORInterceptor +usr/lib/libTAO_IORInterceptor.so +usr/include/tao/IORManipulation +usr/lib/libTAO_IORManip.so +usr/include/tao/IORTable +usr/lib/libTAO_IORTable.so +usr/include/tao/Messaging +usr/lib/libTAO_Messaging.so +usr/include/tao/ObjRefTemplate +usr/lib/libTAO_ObjRefTemplate.so +usr/include/tao/PI +usr/lib/libTAO_PI.so +usr/include/tao/PI_Server +usr/lib/libTAO_PI_Server.so +usr/include/tao/PortableServer +usr/lib/libTAO_PortableServer.so +usr/include/tao/RTCORBA +usr/lib/libTAO_RTCORBA.so +usr/include/tao/RTPortableServer +usr/lib/libTAO_RTPortableServer.so +usr/include/tao/RTScheduling +usr/lib/libTAO_RTScheduler.so +usr/include/tao/SmartProxies +usr/lib/libTAO_SmartProxies.so +usr/include/tao/Strategies +usr/lib/libTAO_Strategies.so +usr/include/tao/TransportCurrent +usr/lib/libTAO_TC.so +usr/lib/libTAO_TC_IIOP.so +usr/include/tao/TypeCodeFactory +usr/lib/libTAO_TypeCodeFactory.so +usr/include/tao/Utils +usr/lib/libTAO_Utils.so +usr/include/tao/Valuetype +usr/lib/libTAO_Valuetype.so +usr/lib/libTAO_DiffServPolicy.so +usr/include/tao/DiffServPolicy +usr/include/tao/ZIOP +usr/lib/libTAO_ZIOP.so +usr/lib/libTAO_ZlibCompressor.so +usr/lib/libTAO_Bzip2Compressor.so +usr/lib/libTAO_LzoCompressor.so +usr/include/tao/ETCL +usr/lib/libTAO_ETCL.so +usr/include/tao/Monitor +usr/lib/libTAO_Monitor.so +../../ACE_wrappers/TAO/MPC/config usr/lib/ace/TAO/MPC +../../ACE_wrappers/TAO/rules.tao.GNU usr/lib/ace/TAO +usr/lib/libTAO_IFR_BE.so +usr/lib/libTAO_IDL_FE.so +usr/lib/libTAO_IDL_BE.so +usr/lib/pkgconfig/TAO_RTScheduler.pc +usr/lib/pkgconfig/TAO_DynamicInterface.pc +usr/lib/pkgconfig/TAO_ZlibCompressor.pc +usr/lib/pkgconfig/TAO_AnyTypeCode.pc +usr/lib/pkgconfig/TAO_Bzip2Compressor.pc +usr/lib/pkgconfig/TAO_LzoCompressor.pc +usr/lib/pkgconfig/TAO_Valuetype.pc +usr/lib/pkgconfig/TAO_BiDirGIOP.pc +usr/lib/pkgconfig/TAO_IORInterceptor.pc +usr/lib/pkgconfig/TAO_SmartProxies.pc +usr/lib/pkgconfig/TAO_PortableServer.pc +usr/lib/pkgconfig/TAO_TypeCodeFactory.pc +usr/lib/pkgconfig/TAO.pc +usr/lib/pkgconfig/TAO_Messaging.pc +usr/lib/pkgconfig/TAO_CSD_Framework.pc +usr/lib/pkgconfig/TAO_PI_Server.pc +usr/lib/pkgconfig/TAO_ObjRefTemplate.pc +usr/lib/pkgconfig/TAO_DynamicAny.pc +usr/lib/pkgconfig/TAO_Monitor.pc +usr/lib/pkgconfig/TAO_Compression.pc +usr/lib/pkgconfig/TAO_Strategies.pc +usr/lib/pkgconfig/TAO_IORTable.pc +usr/lib/pkgconfig/TAO_CSD_ThreadPool.pc +usr/lib/pkgconfig/TAO_CodecFactory.pc +usr/lib/pkgconfig/TAO_EndpointPolicy.pc +usr/lib/pkgconfig/TAO_IORManip.pc +usr/lib/pkgconfig/TAO_ZIOP.pc +usr/lib/pkgconfig/TAO_DiffServPolicy.pc +usr/lib/pkgconfig/TAO_PI.pc +usr/lib/pkgconfig/TAO_Utils.pc +usr/lib/pkgconfig/TAO_IFR_Client.pc +usr/lib/pkgconfig/TAO_ETCL.pc +usr/lib/pkgconfig/TAO_RTPortableServer.pc +usr/lib/pkgconfig/TAO_RTCORBA.pc +usr/lib/pkgconfig/TAO_ImR_Client.pc --- ace-6.0.1.orig/debian/mpc-ace.install +++ ace-6.0.1/debian/mpc-ace.install @@ -0,0 +1,8 @@ +../../ACE_wrappers/bin/m[p,w]c.pl usr/lib/ace/bin +../../ACE_wrappers/bin/MakeProjectCreator usr/lib/ace/bin +../../ACE_wrappers/MPC/config usr/lib/ace/MPC +../../ACE_wrappers/MPC/modules usr/lib/ace/MPC +../../ACE_wrappers/MPC/templates usr/lib/ace/MPC +../../ACE_wrappers/MPC/*.pl usr/lib/ace/MPC +../../ACE_wrappers/MPC/ChangeLog usr/lib/ace/MPC +../../ACE_wrappers/bin/PerlACE/*.pm usr/lib/ace/bin/PerlACE --- ace-6.0.1.orig/debian/tao-costrading.docs +++ ace-6.0.1/debian/tao-costrading.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/Trading_Service/README --- ace-6.0.1.orig/debian/libace-dev.links +++ ace-6.0.1/debian/libace-dev.links @@ -0,0 +1,2 @@ +usr/include/ace usr/lib/ace/ace +usr/lib usr/lib/ace/lib --- ace-6.0.1.orig/debian/libtao-flresource-2.0.1.install +++ ace-6.0.1/debian/libtao-flresource-2.0.1.install @@ -0,0 +1 @@ +usr/lib/libTAO_FlResource-*.so --- ace-6.0.1.orig/debian/libacexml-dev.links +++ ace-6.0.1/debian/libacexml-dev.links @@ -0,0 +1 @@ +usr/include/ACEXML usr/lib/ace/ACEXML --- ace-6.0.1.orig/debian/mpc-ace.manpages +++ ace-6.0.1/debian/mpc-ace.manpages @@ -0,0 +1 @@ +debian/mpc-ace.1 --- ace-6.0.1.orig/debian/libace-6.0.1.install +++ ace-6.0.1/debian/libace-6.0.1.install @@ -0,0 +1,4 @@ +usr/lib/libACE-*.so +usr/lib/libACE_ETCL-*.so +usr/lib/libACE_Monitor_Control-*.so +usr/lib/libACE_ETCL_Parser-*.so --- ace-6.0.1.orig/debian/ACE-DPKG.mwc +++ ace-6.0.1/debian/ACE-DPKG.mwc @@ -0,0 +1,32 @@ +// $Id$ + +workspace { + exclude { + TAO + performance-tests + + examples + ACEXML/examples + ASNMP + + tests + Kokyu/tests + ACEXML/tests + apps/gperf/tests + apps/drwho + apps/Gateway + apps/AWS + apps/JAWS + apps/JAWS2 + apps/JAWS3 + apps/mkcsregdb + apps/soreduce + + websvcs + contrib + protocols/tests + protocols/examples + + netsvcs/clients + } +} --- ace-6.0.1.orig/debian/libace-6.0.1.docs +++ ace-6.0.1/debian/libace-6.0.1.docs @@ -0,0 +1,8 @@ +ACE_wrappers/README +ACE_wrappers/VERSION +ACE_wrappers/AUTHORS +ACE_wrappers/docs/FAQ +ACE_wrappers/PROBLEM-REPORT-FORM +ACE_wrappers/THANKS +ACE_wrappers/VERSION +ACE_wrappers/NEWS --- ace-6.0.1.orig/debian/tao-scheduling.install +++ ace-6.0.1/debian/tao-scheduling.install @@ -0,0 +1,2 @@ +usr/bin/tao_cosscheduling +usr/bin/tao_dump_schedule --- ace-6.0.1.orig/debian/tao-cosconcurrency.docs +++ ace-6.0.1/debian/tao-cosconcurrency.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/Concurrency_Service/README --- ace-6.0.1.orig/debian/libace-dev.docs +++ ace-6.0.1/debian/libace-dev.docs @@ -0,0 +1,7 @@ +ACE_wrappers/README +ACE_wrappers/VERSION +ACE_wrappers/AUTHORS +ACE_wrappers/docs/FAQ +ACE_wrappers/PROBLEM-REPORT-FORM +ACE_wrappers/THANKS +ACE_wrappers/VERSION --- ace-6.0.1.orig/debian/tao-costime.docs +++ ace-6.0.1/debian/tao-costime.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/Time_Service/README --- ace-6.0.1.orig/debian/libacexml-6.0.1.install +++ ace-6.0.1/debian/libacexml-6.0.1.install @@ -0,0 +1,3 @@ +usr/lib/libACEXML_XML_Svc_Conf_Parser-*.so +usr/lib/libACEXML-*.so +usr/lib/libACEXML_Parser-*.so --- ace-6.0.1.orig/debian/libace-flreactor-6.0.1.install +++ ace-6.0.1/debian/libace-flreactor-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_FlReactor-*.so --- ace-6.0.1.orig/debian/libtao-2.0.1.docs +++ ace-6.0.1/debian/libtao-2.0.1.docs @@ -0,0 +1,4 @@ +ACE_wrappers/TAO/README +ACE_wrappers/TAO/VERSION +ACE_wrappers/TAO/PROBLEM-REPORT-FORM +ACE_wrappers/TAO/NEWS --- ace-6.0.1.orig/debian/TODO +++ ace-6.0.1/debian/TODO @@ -0,0 +1,19 @@ += Misc = + * default tao_idl lookup path? + * current IDL should be in orvsvcs/orbsvcs + * see current bugs: + o package websvcs library? + o create man pages for ace/tao binaries + * rewrite the patch to load TAO libraries by SONAME and RFC it + * add cpp dependency to tao_idl + * install .mpc files? + * What about REACTOR_NOTIFICATION_QUEUE? + * fltk and gl + * Build location leaks in generated documentation + += MWC and MPC = + * some makefile are not regenerated (e.g. JAWS). Seems like a bug. + += CIAO = + * to restore + * autoconf support --- ace-6.0.1.orig/debian/libtao-foxresource-dev.install +++ ace-6.0.1/debian/libtao-foxresource-dev.install @@ -0,0 +1,2 @@ +usr/lib/libTAO_FoxResource.so +usr/include/tao/FoxResource --- ace-6.0.1.orig/debian/libtao-qtresource-2.0.1.install +++ ace-6.0.1/debian/libtao-qtresource-2.0.1.install @@ -0,0 +1 @@ +usr/lib/libTAO_QtResource-*.so --- ace-6.0.1.orig/debian/ace-netsvcs.manpages +++ ace-6.0.1/debian/ace-netsvcs.manpages @@ -0,0 +1 @@ +debian/ace_netsvcs.1 --- ace-6.0.1.orig/debian/tao-ft.docs +++ ace-6.0.1/debian/tao-ft.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/FT_ReplicationManager/README --- ace-6.0.1.orig/debian/tao-costrading.install +++ ace-6.0.1/debian/tao-costrading.install @@ -0,0 +1 @@ +usr/bin/tao_costrading --- ace-6.0.1.orig/debian/libace-dev.install +++ ace-6.0.1/debian/libace-dev.install @@ -0,0 +1,19 @@ +../../ACE_wrappers/bin/generate_export_file.pl usr/lib/ace/bin +../../ACE_wrappers/bin/split-cpp.pl usr/lib/ace/bin +../../ACE_wrappers/bin/g++dep usr/lib/ace/bin +../../ACE_wrappers/bin/add_rel_link.sh usr/lib/ace/bin +../../ACE_wrappers/bin/depgen.pl usr/lib/ace/bin +../../ACE_wrappers/bin/DependencyGenerator usr/lib/ace/bin +../../ACE_wrappers/include usr/lib/ace +../../ACE_wrappers/include/makeinclude/platform_macros.GNU usr/lib/ace/include/makeinclude +usr/include/ace/*.{h,inl,cpp} +usr/include/ace/os_include +usr/lib/libACE.so +usr/include/ace/ETCL/*.{h,inl,cpp} +usr/include/ace/Monitor_Control/*.{h,inl,cpp} +usr/lib/libACE_ETCL_Parser.so +usr/lib/libACE_Monitor_Control.so +usr/lib/libACE_ETCL.so +usr/lib/pkgconfig/ACE.pc +usr/lib/pkgconfig/ACE_ETCL.pc +usr/lib/pkgconfig/ACE_ETCL_Parser.pc --- ace-6.0.1.orig/debian/libace-doc.docs +++ ace-6.0.1/debian/libace-doc.docs @@ -0,0 +1,3 @@ +ACE_wrappers/docs +ACE_wrappers/examples +ACE_wrappers/html/libace-doc/* --- ace-6.0.1.orig/debian/tao_ifr +++ ace-6.0.1/debian/tao_ifr @@ -0,0 +1,6 @@ +#!/bin/sh + +ACE_ROOT=/usr/lib/ace; export ACE_ROOT; +TAO_ROOT=$ACE_ROOT/TAO; export TAO_ROOT; + +exec $TAO_ROOT/tao_ifr "$@" --- ace-6.0.1.orig/debian/platform_macros.GNU +++ ace-6.0.1/debian/platform_macros.GNU @@ -0,0 +1,29 @@ +# $Id$ + +debug = 0 +optimize = 1 +inline = 1 + +ssl = 1 + +xt = 1 +tk = 1 +fl = 1 +fox = 1 +qt4 = 1 +ace_qt4reactor = 1 + +bzip2 = 1 +lzo1 = 1 +zlib = 1 + +# Work-around #593225 +ARMEL_TARGET := $(shell echo '__ARMEL__' | $(CC) -E - | tail -n 1) +ifeq ($(ARMEL_TARGET),1) + no_hidden_visibility = 1 +endif + +include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU + +PLATFORM_FOX_CPPFLAGS=-I/usr/include/fox-1.6 +PLATFORM_FOX_LIBS=-lFOX-1.6 --- ace-6.0.1.orig/debian/tao_nsdel.sgml +++ ace-6.0.1/debian/tao_nsdel.sgml @@ -0,0 +1,120 @@ + + TAO_ORB_Options1"> + tao_cosnaming1"> + tao_nslist1"> + tao_nsadd1"> + tao_cosnaming"> + +]> + + + + + + + TAO_NSDEL + 1 + + + &applname; + Naming Service delete utility. + + + SYNOPSIS + + &applname; + -ORBoptions + OPTION + + + + DESCRIPTION + + &applname; deletes an entry from the NamingService. + + + &applname; requires a running NamingService. + + + + OPTIONS + + + -ORBoptions + + + The program follows the usual TAO ORB command line syntax. See + &man_tao_orb_options;. + + + + + --ns IOR + + + Use NamingService IOR instead of default. + + + + + --name name + + + Delete the entry with name in NamingService. + + + + + --destroy + + + Destroy a naming context before unbinding, otherwise orphan it. + + + + + --quiet + + + Do not display all ID/Kinds found/deleted. + + + + + --ctxsep character + + + Set context separation character, defaults to "/". + + + + + --kindsep character + + + Set ID/Kind separation character, defaults to ".". + + + + + --rtt seconds + + + Set the relative round trip timeout policy to seconds. + + + + + + + SEE ALSO + &seealso; + + + AUTHOR + Carlos O'Ryan <coryan@uci.edu> + Paul Caffrey <denginere@hotmail.com> + Simon Massey <sma@prismtech.com> + + --- ace-6.0.1.orig/debian/mpc-ace.docs +++ ace-6.0.1/debian/mpc-ace.docs @@ -0,0 +1,3 @@ +ACE_wrappers/MPC/ChangeLog +ACE_wrappers/MPC/docs/README +ACE_wrappers/MPC/docs/USAGE --- ace-6.0.1.orig/debian/libace-inet-dev.install +++ ace-6.0.1/debian/libace-inet-dev.install @@ -0,0 +1,66 @@ +usr/lib/libACE_INet.so +usr/include/ace/INet/Sock_IOStream.cpp +usr/include/ace/INet/FTP_IOStream.h +usr/include/ace/INet/HTTP_Request.inl +usr/include/ace/INet/HTTP_IOStream.h +usr/include/ace/INet/HTTP_Session.h +usr/include/ace/INet/HTTP_ClientRequestHandler.h +usr/include/ace/INet/HTTP_BasicAuthentication.h +usr/include/ace/INet/FTP_URL.h +usr/include/ace/INet/Response.h +usr/include/ace/INet/HTTP_SessionBase.inl +usr/include/ace/INet/StreamHandler.cpp +usr/include/ace/INet/BidirStreamBuffer.cpp +usr/include/ace/INet/HTTP_StreamPolicyBase.h +usr/include/ace/INet/RequestHandler.h +usr/include/ace/INet/FTP_Session.cpp +usr/include/ace/INet/String_IOStream.h +usr/include/ace/INet/HTTP_StreamPolicy.cpp +usr/include/ace/INet/FTP_ClientRequestHandler.inl +usr/include/ace/INet/HeaderBase.h +usr/include/ace/INet/HTTP_URL.inl +usr/include/ace/INet/BidirStreamBuffer.h +usr/include/ace/INet/IOS_util.h +usr/include/ace/INet/StreamInterceptor.cpp +usr/include/ace/INet/FTP_IOStream.inl +usr/include/ace/INet/ConnectionCache.inl +usr/include/ace/INet/Sock_IOStream.h +usr/include/ace/INet/ClientRequestHandler.inl +usr/include/ace/INet/HTTP_Header.inl +usr/include/ace/INet/HTTP_ClientRequestHandler.inl +usr/include/ace/INet/HTTP_Session.cpp +usr/include/ace/INet/ClientRequestHandler.h +usr/include/ace/INet/HTTP_IOStream.inl +usr/include/ace/INet/URLBase.inl +usr/include/ace/INet/StreamInterceptor.h +usr/include/ace/INet/AuthenticationBase.h +usr/include/ace/INet/HTTP_URL.h +usr/include/ace/INet/HTTP_Status.h +usr/include/ace/INet/URLBase.h +usr/include/ace/INet/HTTP_Request.h +usr/include/ace/INet/BufferedStreamBuffer.cpp +usr/include/ace/INet/FTP_ClientRequestHandler.h +usr/include/ace/INet/FTP_Session.h +usr/include/ace/INet/FTP_Request.inl +usr/include/ace/INet/FTP_Request.h +usr/include/ace/INet/INet_Export.h +usr/include/ace/INet/FTP_Response.h +usr/include/ace/INet/AuthenticationBase.inl +usr/include/ace/INet/HTTP_StreamPolicyBase.cpp +usr/include/ace/INet/ConnectionCache.h +usr/include/ace/INet/INet_Log.h +usr/include/ace/INet/HTTP_Response.h +usr/include/ace/INet/HTTP_Status.inl +usr/include/ace/INet/HTTP_Response.inl +usr/include/ace/INet/StreamHandler.h +usr/include/ace/INet/HTTP_SessionBase.h +usr/include/ace/INet/String_IOStream.cpp +usr/include/ace/INet/BufferedStreamBuffer.h +usr/include/ace/INet/HeaderBase.inl +usr/include/ace/INet/HTTP_BasicAuthentication.inl +usr/include/ace/INet/HTTP_Header.h +usr/include/ace/INet/FTP_Response.inl +usr/include/ace/INet/FTP_URL.inl +usr/include/ace/INet/HTTP_StreamPolicy.h +usr/include/ace/INet/Request.h +usr/lib/pkgconfig/ACE_INet.pc --- ace-6.0.1.orig/debian/libtao-flresource-dev.install +++ ace-6.0.1/debian/libtao-flresource-dev.install @@ -0,0 +1,2 @@ +usr/lib/libTAO_FlResource.so +usr/include/tao/FlResource --- ace-6.0.1.orig/debian/tao-cosnotification.install +++ ace-6.0.1/debian/tao-cosnotification.install @@ -0,0 +1 @@ +usr/bin/tao_cosnotification --- ace-6.0.1.orig/debian/tao_nsadd.sgml +++ ace-6.0.1/debian/tao_nsadd.sgml @@ -0,0 +1,145 @@ + + TAO_ORB_Options1"> + tao_cosnaming1"> + tao_nslist1"> + tao_nsdel1"> + tao_cosnaming"> + +]> + + + + + + + TAO_NSADD + 1 + + + &applname; + Naming Service add utility. + + + SYNOPSIS + + &applname; + -ORBoptions + OPTION + + + + DESCRIPTION + + &applname; adds or replaces new entry to the NamingService. + + + &applname; requires a running NamingService. + + + + OPTIONS + + + -ORBoptions + + + The program follows the usual TAO ORB command line syntax. See + &man_tao_orb_options;. + + + + + + --ns IOR + + + Use NamingService IOR instead of default. + + + + + + --name name + + + Register name in NamingService. + + + + + + --iorIOR + + + IOR of the object to be registered. + + + + + + --newcontext + --ctx + + + If --ctx is NOT given; binds a final object. + + + If both --ior and --ctx are specified; binds the existing\n" "naming context specified. + + + If --ctx is given without --ior; binds a new naming context. + + + + + + --rebind + + + Replace the existing bindings of the same type (object or context). + + + + + + --quiet + + + Do not display all ID/Kinds found/created. + + + + + + --ctxsep character + + + Set context separation character, defaults to "/". + + + + + + + --kindsep character + + + Set ID/Kind separation character, defaults to ".". + + + + + + + + SEE ALSO + &seealso; + + + AUTHOR + Simon Massey <sma@prismtech.com> + Carlos O'Ryan <coryan@uci.edu> + Paul Caffrey <denginere@hotmail.com> + + --- ace-6.0.1.orig/debian/tao-coslifecycle.install +++ ace-6.0.1/debian/tao-coslifecycle.install @@ -0,0 +1 @@ +usr/bin/tao_coslifecycle --- ace-6.0.1.orig/debian/libtao-xtresource-dev.install +++ ace-6.0.1/debian/libtao-xtresource-dev.install @@ -0,0 +1,2 @@ +usr/lib/libTAO_XtResource.so +usr/include/tao/XtResource --- ace-6.0.1.orig/debian/libace-qtreactor-dev.install +++ ace-6.0.1/debian/libace-qtreactor-dev.install @@ -0,0 +1,3 @@ +usr/lib/libACE_QtReactor.so +usr/include/ace/QtReactor +usr/lib/pkgconfig/ACE_QtReactor.pc --- ace-6.0.1.orig/debian/tao_tls_event.sgml +++ ace-6.0.1/debian/tao_tls_event.sgml @@ -0,0 +1,70 @@ + + + TAO_ORB_Options1"> + tao_cosevent1"> + tao_tls_basic1"> + tao_tls_notify1"> + tao_tls_rtevent1"> + tao_cosnaming1"> + tao_cosnaming"> + tao_tls_event"> + + + + <d.hanvey@qub.ac.uk>"> +]> + + + TAO_TLS_EVENT + 1 + + + &applname; + TAO Event Telecom Log Service + + + SYNOPSIS + + &applname; + -ORBoptions + + + + DESCRIPTION + + &applname; is an implementation of the Telecom Log Service that + integrates with the Event Service. + + + The Telecom Log Service specification may be found on the OMG + website at . + + + &applname; requires a running &tao_cosnaming; and registers with + it as `EventLogFactory'. + + + + OPTIONS + + The program follows the usual TAO ORB command line syntax. See + &man_tao_orb_options;. + + + + BUGS + + Currently all Logs records are stored in memory. + + + + SEE ALSO + &seealso; + + + AUTHOR + &username; &useremail; + + --- ace-6.0.1.orig/debian/cmp-installation.sh +++ ace-6.0.1/debian/cmp-installation.sh @@ -0,0 +1,38 @@ +#!/bin/sh +# $Id$ +# +# This script compares autoconf-based installation against regular builds +# provided files. +# +# This script should be run after `make install DESTDIR=debian/tmp' has been +# run on autoconf-based build. +# + +set -e + +P1=ACE_wrappers +P2=debian/tmp/usr/include + +# Find files +# ff +ff() { + find "$1" -name '*.h' -o -name '*.inl' -o -name '*.hpp' -o -name '*.ipp' +} + +# Remove path with examples, tests and tutorial from STDIN +drop() { + grep -E -v '(examples|tests|tutorials)/' +} + +# Removed unused/unshipped stuff +unused() { + grep -E -v '^/(ASNMP|CIAO|TAO_IDL|ace/QoS|apps|contrib|utils)' +} + +F1=`mktemp -t ace_regular.XXXXXXXXXX` +F2=`mktemp -t ace_autoconf.XXXXXXXXXX` +trap "rm $F1 $F2" 0 + +ff $P1 | sed -e "s@$P1@@" -e "s@/TAO@@" -e "s@/protocols@@" -e "s@^/orbsvcs@@" | drop | unused | sort >> $F1 +ff $P2 | sed -e "s@$P2@@" | sort >> $F2 +diff -u $F1 $F2 --- ace-6.0.1.orig/debian/tao-tls.docs +++ ace-6.0.1/debian/tao-tls.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/Logging_Service/README --- ace-6.0.1.orig/debian/libkokyu-6.0.1.install +++ ace-6.0.1/debian/libkokyu-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libKokyu-*.so --- ace-6.0.1.orig/debian/tao-cosevent.install +++ ace-6.0.1/debian/tao-cosevent.install @@ -0,0 +1 @@ +usr/bin/tao_cosevent --- ace-6.0.1.orig/debian/tao-ftrtevent.install +++ ace-6.0.1/debian/tao-ftrtevent.install @@ -0,0 +1,3 @@ +usr/bin/ftrt_eventservice +usr/bin/ftrtec_factory_service +usr/bin/ftrtec_gateway_service --- ace-6.0.1.orig/debian/default.features +++ ace-6.0.1/debian/default.features @@ -0,0 +1,35 @@ +// Misc +acexml = 1 +ace_svcconf = 1 +ace_token = 1 +ssl = 1 +ipv6 = 1 +exceptions = 1 + +// GUI reactors +xt = 1 +ace_xtreactor = 1 +tao_xtresource = 1 + +tk = 1 +ace_tkreactor = 1 +tao_tkresource = 1 + +fl = 1 +ace_flreactor = 1 +tao_flresource = 1 + +qt = 1 +qt4 = 1 +ace_qtreactor = 1 +tao_qtresource = 1 + +fox = 1 +ace_foxreactor = 1 +tao_foxresource = 1 + +// ZIOP +zlib = 1 +zzip = 1 +bzip2 = 1 +lzo1 = 1 --- ace-6.0.1.orig/debian/tao_tls_rtevent.sgml +++ ace-6.0.1/debian/tao_tls_rtevent.sgml @@ -0,0 +1,70 @@ + + + TAO_ORB_Options1"> + tao_cosevent1"> + tao_tls_basic1"> + tao_tls_notify1"> + tao_tls_event1"> + tao_cosnaming1"> + tao_cosnaming"> + tao_tls_rtevent"> + + + + <d.hanvey@qub.ac.uk>"> +]> + + + TAO_TLS_RTEVENT + 1 + + + &applname; + TAO RTEvent Telecom Log Service + + + SYNOPSIS + + &applname; + -ORBoptions + + + + DESCRIPTION + + &applname; is an implementation of the Telecom Log Service that + integrates with the RTEvent Service. + + + The Telecom Log Service specification may be found on the OMG + website at . + + + &applname; requires a running &tao_cosnaming; and registers with + it as `RTEventLogFactory'. + + + + OPTIONS + + The program follows the usual TAO ORB command line syntax. See + &man_tao_orb_options;. + + + + BUGS + + Currently all Logs records are stored in memory. + + + + SEE ALSO + &seealso; + + + AUTHOR + &username; &useremail; + + --- ace-6.0.1.orig/debian/libtao-tkresource-dev.install +++ ace-6.0.1/debian/libtao-tkresource-dev.install @@ -0,0 +1,2 @@ +usr/lib/libTAO_TkResource.so +usr/include/tao/TkResource --- ace-6.0.1.orig/debian/tao-tls.manpages +++ ace-6.0.1/debian/tao-tls.manpages @@ -0,0 +1,4 @@ +debian/tao_tls_basic.1 +debian/tao_tls_event.1 +debian/tao_tls_notify.1 +debian/tao_tls_rtevent.1 --- ace-6.0.1.orig/debian/libtao-dev.docs +++ ace-6.0.1/debian/libtao-dev.docs @@ -0,0 +1,3 @@ +ACE_wrappers/TAO/README +ACE_wrappers/TAO/VERSION +ACE_wrappers/TAO/PROBLEM-REPORT-FORM --- ace-6.0.1.orig/debian/libnetsvcs-6.0.1.docs +++ ace-6.0.1/debian/libnetsvcs-6.0.1.docs @@ -0,0 +1,2 @@ +ACE_wrappers/netsvcs/lib/README +ACE_wrappers/PROBLEM-REPORT-FORM --- ace-6.0.1.orig/debian/tao_tls_notify.sgml +++ ace-6.0.1/debian/tao_tls_notify.sgml @@ -0,0 +1,70 @@ + + + TAO_ORB_Options1"> + tao_cosnotify1"> + tao_tls_basic1"> + tao_tls_event1"> + tao_tls_rtevent1"> + tao_cosnaming1"> + tao_cosnaming"> + tao_tls_notify"> + + + + <d.hanvey@qub.ac.uk>"> +]> + + + TAO_TLS_NOTIFY + 1 + + + &applname; + TAO Notify Telecom Log Service + + + SYNOPSIS + + &applname; + -ORBoptions + + + + DESCRIPTION + + &applname; is an implementation of the Telecom Log Service that + integrates with the Notification Service. + + + The Telecom Log Service specification may be found on the OMG + website at . + + + &applname; requires a running &tao_cosnaming; and registers with + it as `NotifyLogFactory'. + + + + OPTIONS + + The program follows the usual TAO ORB command line syntax. See + &man_tao_orb_options;. + + + + BUGS + + Currently all Logs records are stored in memory. + + + + SEE ALSO + &seealso; + + + AUTHOR + &username; &useremail; + + --- ace-6.0.1.orig/debian/fix_doxygen.sh +++ ace-6.0.1/debian/fix_doxygen.sh @@ -0,0 +1,32 @@ +#!/bin/sh +# +# This script regenerates changes on the Doxygen templates. +# + +rm -Rf ACE_wrappers.orig +cp -a ACE_wrappers ACE_wrappers.orig + +for f in $(find ACE_wrappers -name '*.doxygen') +do + sed -e 's#GENERATE_HTMLHELP = YES#GENERATE_HTMLHELP = NO#' \ + -e 's#COLLABORATION_GRAPH = YES#COLLABORATION_GRAPH = NO#' \ + -e 's#INCLUDE_GRAPH = YES#INCLUDE_GRAPH = NO#' \ + -e 's#INCLUDED_BY_GRAPH = YES#INCLUDED_BY_GRAPH = NO#' \ + -e 's#SEARCHENGINE = YES#SEARCHENGINE = NO#' \ + -e 's#DOT_MULTI_TARGETS = YES#DOT_MULTI_TARGETS = YES \ +DOT_GRAPH_MAX_NODES = 15 \ +DOT_IMAGE_FORMAT = png#' < $f > $f.new + + mv $f.new $f +done + +cat > debian/patches/49-reduce-doxygen-doc.dpatch < +## +## DP: Enforce doxygen to generate smaller doxumentation + +@DPATCH@ +EOF + +diff -Nru ACE_wrappers.orig ACE_wrappers >> debian/patches/49-reduce-doxygen-doc.dpatch --- ace-6.0.1.orig/debian/libtao-qtresource-dev.install +++ ace-6.0.1/debian/libtao-qtresource-dev.install @@ -0,0 +1,2 @@ +usr/lib/libTAO_QtResource.so +usr/include/tao/QtResource --- ace-6.0.1.orig/debian/changelog +++ ace-6.0.1/debian/changelog @@ -0,0 +1,1059 @@ +ace (6.0.1-2) unstable; urgency=low + + [ Thomas Girard ] + * Import into git. + * debian/control: change Vcs-* accordingly. + * Restore lost changelog entries, thanks to git! + * Add DM-Upload-Allowed: yes to debian/control. + * Bump Standards-Version: to 3.9.2. + + [ Pau Garcia i Quiles ] + * Disable SSLv2 by adding patch 35_disable_sslv2 (Closes: #622074) + + -- Thomas Girard Sun, 01 May 2011 13:02:17 +0200 + +ace (6.0.1-1) unstable; urgency=low + + [ Pau Garcia i Quiles ] + * New upstream release + * Drop patch 12-add-DESTDIR-to-MPC (applied upstream) + * Drop patch 13-add-QtReactor-export (applied upstream) + * Drop patch 14-fix-tcl-flags (applied upstream) + * Drop patch 16-fix-pidl-install (applied upstream) + * Update patch 11-promote-QtResource-to-qt4 + * Update patch 15-fix-lzo-flags + * Update patch 34-bts386713 + * Require debhelper >= 7 (it was already required, in practice) + * Register documentation with doc-base + * Explicitly set source format 1.0 until we move to 3.0 + * Package ACE_INet and ACE_INet_SSL + + [ Thomas Girard ] + * Build-depend on Tcl/Tk >= 8.5. + + -- Pau Garcia i Quiles Sun, 20 Feb 2011 16:33:13 +0100 + +ace (6.0.0-1) experimental; urgency=low + + * New upstream release: + o use new make install target. + o remove generator_pkgconfig.sh, no longer needed. + o new binary renaming: + - LoadManager => tao_loadmanager + - LoadMonitor => tao_loadmonitor + - ImplRepo_Service => tao_imr_locator + - ImR_Activator => tao_imr_activator + - IFR_Service => tao_ifr_service + - Fault_Detector => tao_fault_detector + - Fault_Notifier => tao_fault_notifier + - Scheduling_Service => tao_cosscheduling + - Dump_Schedule => tao_dump_schedule + o remove libACE_gperf_lib. + o remove patches that were merged upstream: + - 11-create-ace_qt4reactor-mpb.dpatch + - 12-create-config_kfreebsd.dpatch + - 16-rename-tao-programs.dpatch + - 24-add-missing-headers.dpatch + - 25-remove-duplicate-files.dpatch + - 47-change-netsvcs.dpatch + - 48-fix-doxygen-cross-links.dpatch + o remove useless patches: + - 10-fix-prj-install.dpatch + - 19-gcc43.dpatch + o rework existing patches: + - 20-versioned_libs.dpatch, for versioned_so=2 + - 34-bts386713.dpatch + - 90-patch-mpc-basedir.dpatch + o new patches or scripts: + - 12-add-DESTDIR-to-MPC.dpatch, to add and use DESTDIR in make install + - 13-add-QtReactor_export.h.dpatch, to add a missing header in + libace-qtreactor-dev package. + - 16-fix-pidl-install.dpatch, to add missing .pidl files. + - fix_doxygen.sh, to regenerate the patch for Doxygen reduction. + * Bump Standards-Version: to 3.9.1. + + -- Thomas Girard Thu, 06 Jan 2011 07:39:04 +0100 + +ace (5.7.7-4) unstable; urgency=high + [ Marek Brudka ] + * Synchronized *.pc with *.so and created transitional tags. Closes: #598169 + + -- Marek Brudka Mon, 27 Sep 2010 20:36:00 +0200 + +ace (5.7.7-3) unstable; urgency=low + [ Marek Brudka ] + * Configuration file for KFreeBSD created. Closes: #591586. + * Restored pkgconfig files. Closes: #591610. + * Provided manpages for tao_catior, tao_nslist, tao_nsdel, + tao_nsadd, ace_netsvcs. + + [ Thomas Girard ] + * Disable -fvisibility=hidden on armel since it does not seem to work on + that platform. Closes: #593225. + + -- Thomas Girard Tue, 07 Sep 2010 20:04:20 +0200 + +ace (5.7.7-2) unstable; urgency=low + + * Rebuild with sid tk-dev build-dependency. Closes: #590512. + + -- Thomas Girard Mon, 02 Aug 2010 23:49:01 +0200 + +ace (5.7.7-1) unstable; urgency=low + + [ Thomas Girard ] + * Add Marek to Uploaders: field. + * Remove dependencies on autotools; these are no longer needed now that we + have agreed to move back to the traditional compilation method. + * Add bzip2 and lzo ZIOP implementation. + * New patch: 20-versioned_libs.dpatch, to generate libraries with names + following libACE-5.7.7.so pattern instead of libACE.so.5.7.7. + * Rename binaries and packages to follow what is used in RPMs. + * Move $ACE_ROOT to /usr/lib/ace. + + [ Marek Brudka ] + * New upstream release: + o add libACE_gperf, libACE_ETCL and libACE_Monitor_Control to libace + o add headers and libraries for Monitor, ZIOP, ETCL to libtao package + o renamed gperf-ace to ace_gperf to follow the upstream convention + o renamed utilities (ns{add,del,list} to tao_ns{add,del,list}) in tao-utils + to follow the upstream changes + * Change compilation back to traditional ACE+TAO build method: + o adapt existing Debian build mechanism + o remove patches no longer needed because of this switch + o use MPC generated makefiles + o install build result using MPC/prj_install.pl and .ins files + o temporarily excluded logWalker from build + * New patch: 10-fix-prj-install to work-around a problem installing files + * Added PerlACE to mpc-ace. Closes: #522557 + * Created patch to reduce the size of doxygen doc. Closes: #562164 + * Created patch to fix cross references in doxygen tags + * Created libnetsvcs packages. Closes: #466137. Addresses: LP#185285 + * Moved IDL fiels from /usr/include into /usr/share/idl + + [ Pau Garcia i Quiles ] + * New upstream release + * Add dependency on ${misc:Depends} + * Add new libraries and update patch 34-bts386713 accordingly + * Update patch 02-qt4 (partially fixed upstream) + * Drop patch 05-autoconf-fox (fixed upstream) + * Drop patch 06-fix-kokyu-mpc (fixed upstream) + * Drop patch 07-autoconf-fix-gperf (fixed upstream) + * Drop patch 08-fix-perl-shebang (fixed upstream) + * Drop patch 10-fix-fox-resource-export (fixed upstream) + * Drop patch 11-fix-fox-reactor.dpatch (fixed upstream) + * Update patch 12-fix-fox-include + * Drop patch 13-fix-fox-errors (fixed upstream except for the #include, which + I have now merged in 12-fix-fox-include) + * Drop patch 14-autoconf-tao (fixed upstream) + * Drop patch 15-fix-fltk-include (fixed upstream) + * Drop patch 17-protect-mpc-path (fixed upstream) + * Drop patch 18-fix-bswap-detection (fixed upstream) + * Update patch 19-gcc43 + * Drop patch 20-fix-iostream-detection (fixed upstream) + * Drop patch 22-remove-Ge-doc (fixed upstream) + * Drop patch 23-add-sh-shebang (fixed upstream) + * Update patch 24-add-missing-headers (WORK IN PROGRESS) + * Update patch 34-bts386713 + * Drop patch 49-missing-template (fixed upstream) + * Update patch 90-patch-mpc-basedir + * Update patch 91-patch-dg-basedir + * Add patch 93-hack-to-fix-libtoolize + * Add patch 94-build-crosscompile + * Add patch 95-build-ace-for-tao + * Add patch 96-build-athena3d + * Remove DH_COMPAT definition from the debian/rules file, it's already in + debian/compat + * Fix fox-config location, detection method has changed since 5.6.3 + + -- Thomas Girard Sun, 23 May 2010 16:58:42 +0200 + +ace (5.6.3-6) unstable; urgency=low + + [ Thomas Girard ] + * Remove obsolete maintainers: + - Konstantinos Margaritis + - Brian Nelson + Closes: #521487. + * Bump Standards-Version: to 3.8.3. + * Remove erroneous #define ACE_SCANDIR_CMP_USES_CONST_VOIDPTR in config.h; + causing diagnostics to FTBFS. Closes: #552899. + * Remove extra ACLOCAL_AMFLAGS from already existing Makefile.am; causing + recent aclocal to abort. Thanks to Pau Garcia i Quiles for the patch. + Closes: #518735. + * Add README.source. + * Add Pau Garcia i Quiles to the list of maintainers. + * Fix many issues spotted by lintian. + + [ Pau Garcia i Quiles ] + * Add new patches: + - Remove duplicate files from .mpc files so that Makefile.am files do + not have duplicates + - Run autoupdate and autoreconf in the ACE and TAO directories in order + to update from libtool 1.5 (what upstream uses) to libtool 2.2 + + -- Thomas Girard Sun, 13 Dec 2009 11:47:50 +0100 + +ace (5.6.3-5) unstable; urgency=low + + * Do not ship MPC config files in both mpc-ace and libace-dev packages; + they're meant to be only in mpc-ace. Make mpc-ace Replaces: the bogus + previous upload. Closes: #484718. + * Bump Standards-Version: to 3.8.0. + + -- Thomas Girard Fri, 13 Jun 2008 21:52:28 +0000 + +ace (5.6.3-4) unstable; urgency=low + + * Add the following missing programs to libace-dev: + o $ACE_ROOT/bin/generate_export_file.pl + o $ACE_ROOT/bin/split-cpp + o $ACE_ROOT/bin/g++dep + o $ACE_ROOT/bin/add_rel_link.sh + * Move DependencyGenerator from mpc-ace to libace-dev. + * New patch, 22-remove-Ge-doc.dpatch, to remove documentation for + tao_idl -Ge flag that no longer works. Thanks to Pascal Giard for + reporting this. + * Remove PACKAGE_* definitions from /usr/include/ace/config.h. Thanks to + Pascal Giard for reporting this. + * Remove pre-etch Conflicts: and Replaces: information. + * Add missing headers found with cmp-installation.sh. Closes: #481088. + + -- Thomas Girard Sat, 24 May 2008 15:47:01 +0000 + +ace (5.6.3-3) unstable; urgency=low + + * Pass full path to fox-config-1.6 instead of trying to detect fox-config + since fox-config is an alternative. Should fix multiple FTBFS. + * Enable IPv6 again. Disabling it was a mistake: it does work. But on an + IPv4 only host one need to specify the end-point to use, e.g. : + Naming_Service -ORBEndPoint iiop://localhost:1234 + + -- Thomas Girard Thu, 24 Apr 2008 18:27:07 +0000 + +ace (5.6.3-2) unstable; urgency=low + + * Add missing libfox-1.6-dev build dependency. Thanks to Bastian Blank for + the report. Closes: #476822. + * Build depend on libqt4-dev (>= 4.4~rc1-4) to fix FTBFS. Thanks to + Martin Zobel-Helas for the report and to Sune Vuorela for the fix. + Closes: #476505. + * Add platform_macros.GNU.in and have autotools handle it so that it's + possible to ship rules.*.GNU. Closes: #469843, #469845. + * Remove doxygen-generated files we don't need. + * (Build-)Depend on tk-dev instead of tk8.4-dev. + * Rework debian/patches/05-autoconf-fox.dpatch not to link against too + many libs. + * Restore doxygen build-dependency. + + -- Thomas Girard Tue, 22 Apr 2008 18:23:46 +0000 + +ace (5.6.3-1) unstable; urgency=low + + * New upstream release: + o missing os_include/os_byteswap.h is included. Closes: #469844. + * Upload to unstable. + * New packages: libace-foxreactor and libtao-foxresource, integrating + with the FOX toolkit. + * Build doxygen again. + * Rewrite debian/copyright, following proposal from: + http://wiki.debian.org/Proposals/CopyrightFormat + * Add a watch file. + + -- Thomas Girard Sat, 12 Apr 2008 17:10:14 +0000 + +ace (5.6.2-1) experimental; urgency=low + + * New upstream release. + * Generate .am files instead of patching them; hence drop: + o patches/02-tao-sonames-release-am.dpatch + o tao-sonames-release-am.sh + * Fix DEB_BUILD_OPTIONS=noopt. + * Add zlib1g-dev and libzzip-dev build dependencies. + * Enable symbol visibility. + * Manually add missing some autoconf tests to reduce differences against + regular ACE build method. + * Do not generate doxygen; it fails now. + + -- Thomas Girard Sun, 06 Jan 2008 21:05:37 +0100 + +ace (5.5.9-1) experimental; urgency=low + + * New upstream release. We now use the -src.tar.bz2 tarball, hence: + o generate autotools stuff at compile time + o huge patches/06-bootstrap is dropped + * Fix broken libtao-tkresource package. + * Drop no longer needed patches: + o 03-compile-lifecycle + o 04-compile-ftrt + o 07-ace-tao-ssliop-refcount + * New patches: + o 02-qt4 to switch to Qt4 + o 02-fltk-no-gl to avoid linking with libfltk_gl + o 03-g++-new-throws to prevent autoconfiguration from eating all + memory testing whether std::bad_alloc is thrown + * Disable patch 20-check-_REENTRANT; it's not needed when using autotools + method. Closes: #420216. + * Update patch 34-bts386713. + * Use debian/compat instead of DH_COMPAT. + * Drop no longer needed dpkg-dev tightened build-dependency since it is + available in etch. + * Generate doxygen documentation. Closes: #391011. + * Enable ACE reactor notification queue. + * Move $ACE_ROOT/bin/MakeProjectCreator/config files into libace-dev. + * Install $TAO_ROOT/MPC files into libtao-dev. + + -- Thomas Girard Tue, 17 Jul 2007 22:50:36 +0200 + +ace (5.5.6-2) experimental; urgency=low + + * debian/control: fix broken Conflicts: fields. Package split for + libtao-orbsvcs happened in libtao-orbsvcs1.4.7c2a 5.4.7-11 and this should + not be changed. + + -- Thomas Girard Fri, 23 Mar 2007 18:38:41 +0000 + +ace (5.5.6-1) experimental; urgency=low + + Thomas Girard: + * New upstream release. Closes: #381647. + * Switch to the autotools method. Consequences: + o CIAO packages are dropped for now + o static libraries are removed as well + o IPv6 is disabled again + * Drop obsolete patches and scripts. + * We no longer ship TAO_ORB_Options.1 in libtao-orbsvcs. + * debian/patches/01-change-tao-sonames.dpatch: enable TAO_VERSION_NAME + propagation from configure, and use it for TAO libraries. + * debian/patches/02-tao-sonames-release-am.dpatch: diff on Makefile.am + after application of the 01-change-tao-sonames patch. + * debian/patches/03-compile-lifecycle.dpatch: enables LifeCycle + compilation. + * debian/patches/04-compile-ftrt.dpatch: enables FTRT_EventService + compilation. + * debian/patches/07-ace-tao-ssliop-refcount.dpatch: fix ssliop reference + counting problem. + + Konstantinos Margaritis: + * changed URL in copyright to new one. + + -- Thomas Girard Thu, 15 Mar 2007 22:12:29 +0000 + +ace (5.4.7-13) unstable; urgency=low + + * Rename packages: + o libace5.4.7c2a to libace5.4.7ldbl (Closes: #430244) + o libtao1.4.7c2a to libtao1.4.7ldbl (Closes: #430307) + for ldbl128 transition. + * Use debian/compat instead of DH_COMPAT. + + -- Thomas Girard Thu, 06 Sep 2007 09:52:34 +0000 + +ace (5.4.7-12) unstable; urgency=low + + * debian/control: tao-naming recommends tao-utils (Closes: #393032). + * debian/libtao-dev.install: add libTAO.so symlink (Closes: #396303). + * debian/patches/20-check-_REENTRANT.dpatch: do not automatically + define _REENTRANT (Closes: #380739). + + -- Thomas Girard Sun, 5 Nov 2006 11:14:00 +0100 + +ace (5.4.7-11) unstable; urgency=low + + * debian/control: package HTBP, the protocol over HTTP tunneling library. + * debian/control: split libace into libace + libace-ssl. + * debian/control: move binaries in their own tao-* packages. + * debian/patches/34-bts386713.dpatch: dlopen() TAO libraries using their + full name (Closes: #386713). + * debian/generate_pkgconfig.sh: generate .pc files (Closes: #367480). + + -- Thomas Girard Sat, 23 Sep 2006 15:02:12 +0200 + +ace (5.4.7-10) unstable; urgency=low + + * debian/rules: fix and honor DEB_BUILD_OPTIONS. + * debian/libace-dev.install: drop QoS header files as QoS in not compiled + in. + * debian/*.install: fix empty wildcard expansion that produce errors when + DH_COMPAT is 5. + * debian/libtao-dev.install: do not distribute include files from TAO_IDL. + They are not needed and don't get installed when using the autotools + method. + * debian/rules: rename mwc.pl and mpc.pl to mwc-ace and mpc-ace. + * debian/ace-config*,debian/tao-config*: dropped. These files were no + longer installed. + * debian/libace-dev.install: don't install ace-config and tao-config + manpages either (Closes: #367478). + * debian/control: relax mpc-ace dependencies. This package now installs + without pulling any ACE library. Thanks to Alex Bodnaru for noticing. + * debian/control: simplify packages synopsis and descriptions. + * debian/control: drop xerces dependency (Closes: #378605). Xerces is + only needed by DAnCE, which is not packaged yet. + * debian/libace-dev.install: remove generate_export_file.pl for now. + * patches/31-gcc-4.1-fix.dpatch: add other type-punned fixes taken from + upstream. + * debian/mpc.sgml: new man page. + * debian/patches/32-bug1770-fix.dpatch,33-bug1805-fix.dpatch: backport + two patches for SSL wrappers. + + -- Thomas Girard Thu, 20 Jul 2006 20:55:53 +0200 + +ace (5.4.7-9) unstable; urgency=low + + * debian/patches/28-bug2222-fix.dpatch, debian/patches/29-bug2262.dpatch: + backport upstream fixes. + * debian/patches/31-gcc-4.1-fix.dpatch: fix "dereferencing type-punned + pointers" gcc 4.1 warning. + * debian/patches/30-Env_Value-template-specialization-fix.dpatch: + backport template specialization fix (Closes: #358898). + * debian/patches/20-debian-compiler-definitions.dpatch: downgrade + optimization flag from `-O3' to `-O2'. + * debian/rules: add ${perl:Depends} for mpc-ace package. + * debian/control: make a new package, libciao-doc. + * debian/libtao-dev.install: add missing pkg-config file for ImR_Client + library. + + -- Thomas Girard Wed, 29 Mar 2006 22:14:53 +0200 + +ace (5.4.7-8) unstable; urgency=low + + * debian/copy_template_sources.sh: add missing files to `libtao-dev' + package. Thanks to Arren and Bernhard Seibold for reporting this. + * debian/patches/23-PortableGroup-exceptions-propagation.dpatch, + debian/patches/24-collocated-oneway+SYNC_WITH_SERVER-fix.dpatch, + debian/patches/25-TypeCode-equivalent-fix.dpatch, + debian/patches/26-union-_default-fix.dpatch, + debian/patches/27-bug2225-fix.dpatch: backport various upstream + fixes. + * debian/control: tighten build dependency from `xlibs-dev' to + `libxt-dev'. (Closes: #346607). + + -- Thomas Girard Fri, 13 Jan 2006 17:15:37 +0200 + +ace (5.4.7-7) unstable; urgency=low + + * debian/config/config.h: add IPv6 support. Thanks to David Hausheer + for the report and the fix. (Closes: #341988) + * debian/patches/23-TTY_IO-compilation-fix.dpatch: new patch to work + around `struct termios` platform-specific fields. (Closes: #342328). + * debian/patches/84-skip-DAnCE-compilation.dpatch: completely disable + DAnCE compilation, since we don't package it. (Closes: #336020). + * Really close fixed in NMU bugs (Closes: #324271, #339142). + + -- Konstantinos Margaritis Mon, 19 Dec 2005 13:40:48 +0200 + +ace (5.4.7-6) unstable; urgency=low + + * debian/control: consolidate package descriptions. + * debian/patches/16-g++4-visibility-tweaks.dpatch: + Backport upstream tweaks for g++ 4 visibility feature and disable + visibility hiding for now. (Closes: #324271). + * debian/rules: g++ 4.0.2 was ICE'ing on #pragma once. This is no + longer true as of g++-4.0_4.0.2-4, so we can use g++4 again. For the + record, another possible fix was to #define ACE_LACKS_PRAGMA_ONCE in + `$ACE_ROOT/ace/config.h`. + * Add `c2a` suffix to all libs for libstdc++ allocator change. + (Closes: #339142). + + -- Thomas Girard Fri, 18 Nov 2005 20:23:59 +0100 + +ace (5.4.7-5) unstable; urgency=low + + * Force gcc 3.4 for all arches, seems gcc 4.0 produces errors on all of + them. (Closes: #333981) + + -- Konstantinos Margaritis Wed, 12 Oct 2005 03:26:14 +0300 + +ace (5.4.7-4) unstable; urgency=medium + + * Rebuilt package for the Qt C++ transition. (Closes: #327926). + * Also, gcc 4.0 is buggy in some arches, use g++-3.4 on them instead. + Update: Even on i386, cpp-4.0 produces Internal Compiler Errors(ICEs). For + this reason, cpp-3.4 will be used instead (but with gcc/g++ 4.0. + + -- Konstantinos Margaritis Mon, 4 Oct 2005 03:21:20 +0300 + +ace (5.4.7-3) unstable; urgency=low + + * Fixed (another) missing build-dependency. (Closes: #323630) + (this is getting irritating :-) + + -- Konstantinos Margaritis Thu, 18 Aug 2005 10:29:48 +0300 + +ace (5.4.7-2) unstable; urgency=low + + * Fixed missing build-dependency in the .dsc file. (Closes: #323181) + + -- Konstantinos Margaritis Tue, 16 Aug 2005 01:09:09 +0300 + +ace (5.4.7-1) unstable; urgency=low + + * Thomas Girard + - New upstream release. (Closes: #317488) + - Package names were changed to include the full library soname. + (Closes: #288161) + - debian/control: libtao-{xt,qt}reactor are now called + libtao-{xt,qt}resource. Also add libtao-{fl,tk}resource. + - debian/control: add new package libace-tmcast5.4.7. + * Konstantinos Margaritis + - Now use the .bz2 version of the original tarball to save space. + + -- Konstantinos Margaritis Fri, 12 Aug 2005 12:45:13 +0300 + +ace (5.4.2.1.0-4) unstable; urgency=high + + * Thomas Girard + - debian/control: + o libacexml-dev depends on libace-dev. + o libkokyu-dev depends on libace-dev. + o libtao-dev depends on libtao1.4. + o normalize Depends: and Build-Depends: sections. + - debian/ace-config.1 debian/tao-config.1: fix hyphenation problem + reported by lintian. + - debian/libciao-dev.install: add missing .idl and .pidl files. + (Closes: #307258) + + -- Thomas Girard Mon, 2 May 2005 19:30:01 +0200 + +ace (5.4.2.1.0-3) unstable; urgency=high + + * Thomas Girard + - debian/patches/84-mpc-honour-soversion.dpatch: new patch from + upstream to honour the `version' keyword for libraries. + - debian/patches/17-fix-tao-encode_value-memory-leak: new patch + from upstream to fix a potential memory leak. + - debian/mpc-ace.install: add depgen.pl. (Closes: #289157) + - debian/tao_idl: new script that automatically sets ACE_ROOT and + TAO_ROOT environment variables. (Closes: #289158) + - debian/rules: unbreak gperf-ace. (Closes: #294338) + - debian/remove_reactor_dups.sh: new script to ensure that duplicate + reactor header files get deleted. (Closes: #294660) + - debian/patches/21-always-inline.dpatch, debian/config.h: Always + define __ACE_INLINE__, and remove the inline option from the MPC + generated GNUmakefiles. Thanks to Marek Brudka for reporting this and + for providing the fix. (Closes: #290114) + - debian/patches/18-fix-trader-twiddle-operator.dpatch: backport + fix to correct operator ~ in trader constraints. + - debian/patches/19-fix-taoidl-fd-leak.dpatch: backport a fix to + close open file. + - debian/control: lib{ace,tao}qtreactor-dev packages depend on + libqt3-mt-dev. + - debian/libtao-orbsvcs1.4.install: + o Add FT_ReplicationManager. + o Add Fault_Detector and Fault_Notifier. + - debian/control: + o mpc-ace is in devel section. + o lib{ace,tao}-{fl,tk,qt,xt}reactor-dev are in libdevel section. + - debian/tao_ifr: new wrapper script that automatically sets ACE_ROOT + and TAO_ROOT environment variables. + - debian/libtao-orbsvcs1.4.manpages: add TAO_ORB_Options.1 manpage. + + -- Thomas Girard Wed, 30 Mar 2005 23:24:40 +0200 + +ace (5.4.2.1.0-2) unstable; urgency=medium + + * Konstantinos Margaritis + - Changed dependency of libfltk1-dev in libace-flreactor-dev to + libfltk1.1-dev (Closes: #289287) + - Added Uploaders field in control. + + -- Konstantinos Margaritis Sat, 8 Jan 2005 22:39:05 +0200 + +ace (5.4.2.1.0-1) unstable; urgency=low + + * Thomas Girard + - Much lintian cleaning. + - Integrate upstream MPC patch to honour `libout' and `install' keywords. + - Repackage FTRT_EventChannel. + - Bug 242881 was closed in the previous upload. (Closes: #242881) + - debian/control: libtao-dev should depend on libace-dev. + (Closes: #277052) + - debian/{Basic,Event,Notify,RTEvent}_Logging_Service.sgml: new man pages. + - debian/rules: add docbook-to-man calls. + * Raphael Bossek + - debian/config/debian.features: MPC configuration for Debian GNU/Linux added + - debian/config/platform_macros.GNU: Removed due to introduction of + debian.features files. This file will be generated + - debian/rules: Uses dpatch. Simplified clean target by removing temporary + ACE_wrappers subdirectory. Install ace-config and tao-config scripts + with executable bit set (Closes: #278522, #278523) + - debian/control: Added new reactor packages. Removed depricated + suggestions on ace+tao-utilities. Added libssl-dev as recommendation for + libace-dev. Added suggestions for pkg-config + - Upgrade to latest version of TAO (Closes: #265238) + - debian/pkgconfig-ace, debian/pkgconfig-tao, debian/ace.pc.in, + debian/tao.pc.in: Support for pkg-config added + - debian/libace-dev.links: Added sym-link for /usr/share/ace/lib and + /usr/share/ace/bin/generate_export_file.pl + - debian/*.docs, debian/*.manpages: Added source directory ACE_wrappers as prefix + - debian/libace-dev.install: Added ACE_wrappers/bin/generate_export_file.pl + + -- Thomas Girard Mon, 18 Oct 2004 13:35:56 +0200 + +ace (5.4.2.1-1) unstable; urgency=low + + * Thomas Girard + - New upstream release. (Closes: #243062) + - Do not link against Xt libs. (Closes: #251477) + - As such, libace-dev does not need to depend on libxt-dev nor xlibs-dev + (Closes: #253226) + - Add MPC. + - Patch ACE_IOStream to support g++ 3.3. (Closes: #243473) + - Patch MPC to honour `libout' and `install' keywords in GNUmakefile + generation. See DOC Bug#1915. + - Backport a fix to NotifyLoggingService from CVS. + - Make %S work in ACE_DEBUG. + * Konstantinos Margaritis + - Fixed missed path for libACE.so.5.4.2 in dh_shlibdeps + - Fixed incorrect timestamp of original archive (1970 etc). + + -- Konstantinos Margaritis Thu, 2 Sep 2004 23:04:56 +0200 + +ace (5.4.0.1-1.1) unstable; urgency=low + + * Fixed ACE_NDEBUG configuration of ACE. (Closes: #242881) + * Build-depends on libqt3-headers removed qt_reactor not set. + * System capabilities will be determined by including in + . + + -- Raphael Bossek Thu, 8 Apr 2004 15:37:24 +0200 + +ace (5.4.0.1-1) unstable; urgency=low + + * KM: release to fix the timestamp errors in the upstream source. + + -- Konstantinos Margaritis Sun, 29 Feb 2004 21:11:14 +0200 + +ace (5.4-3) unstable; urgency=low + + * KM: backported fixes from CVS to fix 64-bit pointer to int casting in + orbsvcs/RTCosScheduling files. This is to fix FTBFS bug in 64-bit archs, + until 5.4.1 is released (mid-march). + Closes: #233890 + + -- Konstantinos Margaritis Wed, 28 Feb 2004 15:53:30 +0200 + +ace (5.4-2) unstable; urgency=low + + * KM: Includes patch from Raphael Bossek to handle + bug in tao_idl to use ACE_GPERF instead of plain gperf. + * BN: libace-dev now suggests libtao-dev instead of the non-existing tao + package. (Closes: #233488) + * BN: prepended a "-" to the chmod commands in debian/rules so that they + don't fail if used repeatedly. + + -- Brian Nelson Wed, 18 Feb 2004 02:23:07 -0800 + +ace (5.4-1) unstable; urgency=low + + * KM: new upstream release + * KM: Now builds also ACE+SSL library, Kokyu and CIAO libs. + * KM: Due to the orbsvcs executables we can't have 2 different versions + of the libtao-orbsvcs1.x package, so we have to replace. This doesn't apply + for libace5.x, libtao1.x or the rest of the libs. + * Closes: #229134 (fixed dependencies). + + -- Konstantinos Margaritis Sun, 25 Jan 2004 13:33:20 +0200 + +ace (5.3.1-8) unstable; urgency=low + + * KM: Included the .pidl files in libtao-dev package. These + were needed by some .idl files. (Closes: #213568) + + -- Konstantinos Margaritis Wed, 29 Oct 2003 23:46:01 +0200 + +ace (5.3.1-7) unstable; urgency=low + + * BN: Changed maintainer to "Debian ACE+TAO maintainers + " and moved myself to the + Uploaders. + * KM: Fixed conflicting file "/usr/bin/catior" by changing the name to + tao-catior in libtao-dev. (Closes: #214421) + + -- Brian Nelson Thu, 9 Oct 2003 15:05:12 -0700 + +ace (5.3.1-6) unstable; urgency=low + + * Added the ORB services .idl files that were left out from the + libtao-orbsvcs-dev package. (Closes: #213568) + + -- Konstantinos Margaritis Sun, 5 Oct 2003 12:31:21 +0300 + +ace (5.3.1-5) unstable; urgency=low + + * Regenerated .diff.gz so that it is no longer broken (Closes: #211501) + * Back out Debian-specific change in the way that CosNamingC.h is + included in TAO/utils/nslist/nslist.cpp. I'm not sure why this was + changed in the first place, but it broke the build. (Closes: #213611) + + -- Brian Nelson Wed, 1 Oct 2003 10:28:54 -0700 + +ace (5.3.1-4) unstable; urgency=low + + * Moved the manpages back to -dev packages to follow policy. + * Now mostly lintian clean. + * provided manpages for a few executables. + + -- Konstantinos Margaritis Wed, 17 Sep 2003 11:43:55 +0300 + +ace (5.3.1-3) unstable; urgency=low + + * Updated to new standards version 3.6.1 + * Fixed the section of a couple of packages. + * Now the getrlimit, etc functions are always defined + as ints. g++ 3.x does not complain anymore (Closes: #104681). + + -- Konstantinos Margaritis Tue, 16 Sep 2003 10:31:03 +0300 + +ace (5.3.1-2) unstable; urgency=low + + * Now the following TAO packages are created: + libtao1.3.1, libtao-dev, libtao-doc, libtao-orbsvcs1.3.1, + libtao-orbsvcs-dev. + * Also included ACEXML library in two separate packages: + libacexml5.3.1, libacexml-dev. + * Full doxygen documentation not included due to size concerns. + (Closes: #108749). + * tao-config included in libtao-dev. (Closes: #159234). + * All -dev packages carry their respective examples in full and + uncompressed. (Closes: #52145, #76967). + * libACE.a is compiled with thread support enabled. (Closes: #126717). + dbbalancer now builds successfully with -static. + * Moved all manpages to respective -doc pagkaces. (Closes: #73044). + + -- Konstantinos Margaritis Tue, 9 Sep 2003 10:41:14 +0300 + +ace (5.3.1-1) unstable; urgency=low + + * New upstream release + * New maintainers for the package, Brian Nelson and + Konstantinos Margaritis (Closes #199768) + * Removed build-dependency on versioned g++ + * Bumped up standards version to 3.6.0 + * Dropped version string from -dev package name + * libace-dev: downgrade tao to suggests (where did tao go anyway?) + * Use debian/compat for debhelper versioning + * Use dh_install instead of dh_movefiles, and dh_link instead of manual + ln. The debian/rules file is a lot less hairy now. + * Reinstated a libace-doc package (Closes: #192338) + * Added symlinks to /usr/share/ace so that this directory can serve as + $ACE_ROOT. Added a corresponding note to the README.Debian + file. (Closes: #80329) + * Removed the /usr/lib/libACE.so.5 and libACE_RMCast.so.5 symlinks, and + made the package names match the sonames. The sonames now include the + full version string, so ACE libs of different versions from now on + should coexist nicely, even though upstream doesn't use a proper + versioning scheme. (Closes: #147741) + + -- Brian Nelson Fri, 15 Aug 2003 00:15:59 -0700 + +ace (5.2.4-1.2) unstable; urgency=low + + * fix to previous NMU + * (Closes: #190792) + + -- Konstantinos Margaritis Sat, 26 Apr 2003 19:18:49 +0300 + +ace (5.2.4-1.1) unstable; urgency=low + + * gcc-3.2 transition, NMU patch by Andreas Metzler + * (Closes: #188328) + + -- Konstantinos Margaritis Fri, 11 Apr 2003 23:25:38 +0200 + +ace (5.2.4-1) unstable; urgency=low + + * New upstream. + * Incorporated below change from Goswin. (Closes: #159236) + + -- Ossama Othman Sun, 15 Sep 2002 14:14:06 -0700 + +ace (5.2.1-1.1) unstable; urgency=low + + * debian/control: libace5.2-dev recommends tao + * ace-config: export ACE_ROOT + make -f /usr/share/ace/ace-config.GNU + test for tao-confg + unset MAKEs env vars to prevent extranous output + * debian/rules: install platform macros in + $(ACE_PREFIX)/share/ace/include/makeinclude/ + + -- Goswin Brederlow Mon, 02 Sep 2002 02:37:25 +0200 + +ace (5.2.1-1) unstable; urgency=low + + * New upstream. + * Pulled in updated g++ configuration header and Linux Makefile rules + for ACE. They allow implicit template instantiation to occur. + * Disabled support for the ACE_XT_Reactor. Most folks never use it. + + -- Ossama Othman Mon, 25 Feb 2002 13:15:25 -0800 + +ace (5.1.8-7) unstable; urgency=low + + * Really removed the flex/lex checks in configure.in. + + -- Ossama Othman Wed, 28 Nov 2001 15:30:59 -0800 + +ace (5.1.8-6) unstable; urgency=low + + * Added "libtool" to Build-Depend field, and run libtoolize in `rules' + file to pull in links to recent config.sub, config.guess and + ltmain.sh revisions. (Closes: #120141) + * Removed local autoconf test that checks if new() throws exception + on failure. The test caused build hosts to come to a crawl. g++ + does indeed throw an exception. + Just configure that explicitly. (Closes: #90731) + * Removed flex and yacc checks in configure.in. They aren't necessary + to build ACE. + * Closed bug related to gcc internal compiler error. (Closes: #85230) + * Removed unnecessary g++ dependency in control file. (Closes: #84405) + * Added missing xlibs-dev dependency to libace5.1-dev package. + + -- Ossama Othman Mon, 26 Nov 2001 16:53:33 -0800 + +ace (5.1.8-5.1) unstable; urgency=high + + * NMU + * Added the missing build dependencies on flex and xlibs-dev. + (closes: #101170) + + -- Adrian Bunk Sat, 10 Nov 2001 01:17:53 +0100 + +ace (5.1.8-5) unstable; urgency=low + + * libace5.1 and libace5.1-dev now conflict with their corresponding ACE + 5.0 debian packages, since both sets of packages have files with the + same name. libace5.1-dev also conflicts with libace4.6-dev. (#74031) + * Added xlib6g-dev to the list of build dependencies. The X11 libraries + aren't strictly necessary to build ACE, but the Debian packages enable + ACE's XtReactor support. + * Updated `README.Debian'. The Debian ACE packages are no longer built + using experimental ACE Configuration Project distributions. They are + built using the upstream distribution's autoconf support (contributed + by the ACE Configuration Project). + + -- Ossama Othman Thu, 5 Oct 2000 17:35:56 -0700 + +ace (5.1.8-4) unstable; urgency=low + + * Updated configure script from new upstream since it detects the CDROM + and STREAMS ioctl conflict in current kernels and glibc 2.1.94. This + fixes a seg fault that would occur in ACE applications that use the + ACE_Reactor. + + -- Ossama Othman Wed, 4 Oct 2000 14:43:48 -0700 + +ace (5.1.8-3) unstable; urgency=low + + * Rebuilt against glibc 2.1.94 (pre-2.2). + + -- Ossama Othman Fri, 29 Sep 2000 12:40:39 -0700 + +ace (5.1.8-2) unstable; urgency=low + + * Added missing Build-Depends and Build-Depends-Indep fields to the + control file. (#70113) + * Corrected `debian/rules' so that it doesn't erase the installed + `config-all.h' header. + + -- Ossama Othman Sat, 23 Sep 2000 09:54:26 -0700 + +ace (5.1.8-1) unstable; urgency=low + + * New upstream release. + + -- Ossama Othman Fri, 25 Aug 2000 15:45:01 -0700 + +ace (5.0.7-4) frozen unstable; urgency=low + + * Rebuilt the packages so that they get installed in the unstable + distribution archive, in addition to the frozen one. (#58366) + + -- Ossama Othman Wed, 24 May 2000 15:15:21 -0700 + +ace (5.0.7-3) frozen; urgency=high + + * Updated libtool related files from latest libtool multi-language + branch snapshot. Regenerated the configure script. It now has the + appropriate deplibs regex. Apparently, there was a problem with M4 + quoting in the last package upload. (#63932) + * Explicitly enable C++ exception support. A fix to the configure + script caused this to be necessary since the configure script disables + exception handling by default. + * Updated `debian/rules' file to use debhelper v2 support. + * Updated download location in `debian/copyright'. + + -- Ossama Othman Fri, 19 May 2000 15:05:30 -0700 + +ace (5.0.7-2) frozen; urgency=low + + * Updated `acewindex.html' file so that it is no longer empty. (#50704) + * Updated `ACE_Log_Msg.3' man page so that important information is + included when it is generated. This patch was incorporated upstream. + (#51224) + * Replaced configure script and related files with current upstream + configure script. Patched OS.{h,i} with llseek/lseek64 related + upstream fixes. This should correct the lseek64 and llseek problems + encountered in the m68k port. (#50094, #51074) + * Updated ace-config.in with latest upstream since the previous one was + missing a "-lACE" in the library list. + * Fixed "--infodir" and "--mandir" configure script options in `rules' + file. They incorrectly used a the actual install prefix instead of + the debian package install prefix. This fixes a problem where the + gperf-ace documentation wasn't being registered doc-base. + + -- Ossama Othman Mon, 17 Jan 2000 18:39:18 -0800 + +ace (5.0.7-1) unstable; urgency=low + + * New upstream. + * Enabled C++ template repository during build. This will reduce + the size of the resulting binaries by about 20%. + * Updated copyright file. (updated distribution terms contain + suggestions contributed by Richard M. Stallman) + * FHS updates. + * Added versioned shlibs dependencies via "-V" option for dh_makeshlibs. + This is important since new versions of libACE are not always binary + compatible with previous versions. + * Updated libace5.0-dev to use package dh_installinfo to install + gperf-ace.info file. + * Minor update to ACE documentation index.html file. + * Added ACE man pages in HTML format. + + -- Ossama Othman Fri, 29 Oct 1999 21:13:10 -0500 + +ace (4.6.44-1) unstable; urgency=low + + * New upstream. + + -- Ossama Othman Tue, 13 Jul 1999 20:23:11 -0500 + +ace (4.6.42-1) unstable; urgency=low + + * New upstream. + + -- Ossama Othman Sat, 26 Jun 1999 15:46:16 -0500 + +ace (4.6.37-1) unstable; urgency=low + + * New upstream. + * Added doc-base support. + + -- Ossama Othman Tue, 27 Apr 1999 13:28:53 -0500 + +ace (4.6.31-2) unstable; urgency=low + + * Removed clone.1 man page since ACE clone utility isn't needed + for the Debian packages. + + -- Ossama Othman Mon, 22 Mar 1999 14:47:50 -0600 + +ace (4.6.31-1) unstable; urgency=low + + * New upstream beta. + * Added ACE PROBLEM-REPORT-FORM to each package. (#34455) + * Rebuilt against glibc 2.1. (#34573) + * Added check for struct siginfo_t in signal.h. Thanks to + Konstantinos Margaritis for pointing this + configuration bug out. (#34678) + + -- Ossama Othman Sun, 24 Jan 1999 15:49:04 -0500 + +ace (4.6.15-1) unstable; urgency=low + + * Updated to ACE release 4.6.15. + + -- Ossama Othman Sat, 16 Jan 1999 18:47:25 -0500 + +ace (4.6.13-1) unstable; urgency=low + + * Updated to ACE release 4.6.13. + + -- Ossama Othman Thu, 14 Jan 1999 19:54:41 -0500 + +ace (4.6.12-2) unstable; urgency=low + + * Forgot to change libace4.6-dev dependency from version 4.6.7 to 4.6.12. + + -- Ossama Othman Thu, 14 Jan 1999 02:47:13 -0500 + +ace (4.6.12-1) unstable; urgency=low + + * Updated to ACE release 4.6.12. + + -- Ossama Othman Thu, 14 Jan 1999 01:17:16 -0500 + +ace (4.6.7-1) unstable; urgency=low + + * Force libtool to link "-lpthread" into ACE's inter-library dependencies + since the configure script detects that the "-pthread" flag can be used + which make it unneccessary to explicitly link to "-lpthread." However, we + want the "-lpthread" dependency since not all users or programs use the + "-pthread" compiler flag. + * Fixed packaging bug where run-time library package tried to install/remove + the gperf-ace info file. + * Updated to ACE release 4.6.7. + + -- Ossama Othman Tue, 15 Dec 1998 16:29:10 -0500 + +ace (4.6.5-3) unstable; urgency=low + + * Enabled ACE debugging macros. + * Enabled ACE logging macros (LM_DEBUG and LM_INFO). + + -- Ossama Othman Tue, 8 Dec 1998 14:22:02 -0500 + +ace (4.6.5-2) unstable; urgency=low + + * Released ace-4.6.5-2 packages. + * gperf files (gperf, gperf.1 and gperf.info) will be installed as gperf-ace + to prevent conflicts with the existing Cygnus based gperf package. + * Corrected libACE compile list by removing template sources from the + libACE "SOURCES" make variable. + + -- Ossama Othman Thu, 3 Dec 1998 15:59:06 -0500 + +ace (4.6.5-1) unstable; urgency=low + + * Released ace-4.6.5-1 packages + + -- Ossama Othman Tue, 1 Dec 1998 16:09:49 -0500 + +ace (4.6.4-2) unstable; urgency=low + + * Added libnsl to library check for t_accept() (not a Debian issue). + * Moved all pre-processor related lines to the first column of the M4 block + so that they will be in the first column of their respective test programs. + * Made definition of ACE_HAS_NONSTATIC_OBJECT_MANAGER a configure script + option since there was no working autoconf test for it. + + -- Ossama Othman Mon, 30 Nov 1998 17:24:49 -0500 + +ace (4.6.4-1) unstable; urgency=low + + * Added "install-info" commands to postinst and prerm scripts. + * Added a "modernized" gperf.info to the distribution. + * Added "#ifndef" guards to PACKAGE, VERSION, DEBUG and NDEBUG macros in + acconfig.h to prevent redefinition when using ACE with a package that + defines them. + * Added Env_Value_T.cpp to list of template sources to be installed. + * Moved ace-config script to "-dev" package. + * Added gperf to the distribution. + + -- Ossama Othman Fri, 13 Nov 1998 16:02:32 -0500 + +ace (4.6.3-2) unstable; urgency=low + + * Released ace-4.6.3-2 packages. + * Corrected ace-config and configure scripts so that the X11 libraries are + displayed correctly by the ace-config script. + + -- Ossama Othman Thu, 12 Nov 1998 17:24:11 -0500 + +ace (4.6.3-1) unstable; urgency=low + + * Initial Release. + + -- Ossama Othman Thu, 12 Nov 1998 13:13:59 -0500 + --- ace-6.0.1.orig/debian/libace-inet-ssl-dev.install +++ ace-6.0.1/debian/libace-inet-ssl-dev.install @@ -0,0 +1,4 @@ +usr/include/ace/INet/*SSL* +usr/include/ace/INet/*HTTPS* +usr/lib/libACE_INet_SSL.so +usr/lib/pkgconfig/ACE_INet_SSL.pc --- ace-6.0.1.orig/debian/libace-htbp-dev.install +++ ace-6.0.1/debian/libace-htbp-dev.install @@ -0,0 +1,3 @@ +usr/include/ace/HTBP +usr/lib/libACE_HTBP.so +usr/lib/pkgconfig/ACE_HTBP.pc --- ace-6.0.1.orig/debian/config.h +++ ace-6.0.1/debian/config.h @@ -0,0 +1,29 @@ +// $Id$ + +#ifndef ACE_CONFIG_H_INCLUDED +#define ACE_CONFIG_H_INCLUDED +#ifdef __FreeBSD_kernel__ +#include "config-kfreebsd.h" +#else // assume linux +/* + * Macros that were enabled in Debian are stored here. + * + * Rationale: those were captured in the generated libraries on + * compilation; hence the same values must be used when including + * ACE+TAO headers, to avoid unexpected results. + */ +#ifndef ACE_HAS_IPV6 +#define ACE_HAS_IPV6 1 +#endif + +#ifndef ACE_USES_IPV4_IPV6_MIGRATION +#define ACE_USES_IPV4_IPV6_MIGRATION 1 +#endif + +#ifndef __ACE_INLINE__ +#define __ACE_INLINE__ +#endif + +#include "config-linux.h" +#endif // __FreeBSD_version +#endif /* ACE_CONFIG_H_INCLUDED */ --- ace-6.0.1.orig/debian/libacexml-dev.docs +++ ace-6.0.1/debian/libacexml-dev.docs @@ -0,0 +1,3 @@ +ACE_wrappers/ACEXML/README +ACE_wrappers/ACEXML/docs +ACE_wrappers/ACEXML/examples --- ace-6.0.1.orig/debian/libacexml-6.0.1.docs +++ ace-6.0.1/debian/libacexml-6.0.1.docs @@ -0,0 +1 @@ +ACE_wrappers/ACEXML/README --- ace-6.0.1.orig/debian/tao-cosnaming.docs +++ ace-6.0.1/debian/tao-cosnaming.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/Naming_Service/README --- ace-6.0.1.orig/debian/libtao-xtresource-2.0.1.install +++ ace-6.0.1/debian/libtao-xtresource-2.0.1.install @@ -0,0 +1 @@ +usr/lib/libTAO_XtResource-*.so --- ace-6.0.1.orig/debian/ace_netsvcs.sgml +++ ace-6.0.1/debian/ace_netsvcs.sgml @@ -0,0 +1,158 @@ + + +]> + + + + + + + ACE_NETSVCS + 1 + + + &applname; + ACE network services driver. + + + SYNOPSIS + + &applname; + OPTION + + + + DESCRIPTION + + &applname; is a driver to start ACE network services. Currently, + libnetsvcs provides: Naming Service, Time Service, Token Service, + Server Logging Service, Client Logging Service, Logging Strategy Service. + + + + OPTIONS + + + -f svc.conf + + + Specifies a svc.conf configuration file name other + than the default one. Can be specified multiple times to use multiple files. + + + + + -d + + + Turn on debugging mode. + + + + + -n + + + Explicitly disables the use of static services. This flag overrides the @a ignore_static_svcs parameter value. + + + + + -p pathname + + + Specifies a pathname which is used to store the process id. + + + + + -s signal + + + Specifies a signal number other than SIGHUP to trigger + reprocessing of the configuration file(s). Ignored for platforms that do not have + POSIX signals, such as Windows. + + + + + -y + + + Explicitly enables the use of static services. This flag + overrides the @a ignore_static_svcs parameter value. + + + + + -S directive + + + Specifies a service directive string. + Enclose the string in quotes + and escape any embedded quotes with a backslash. This option + specifies service directives without the need for a configuration + file. + + + + + -b + + + Option to indicate that we should be a daemon. Note that when + this option is used, the process will be daemonized before the + service configuration file(s) are read. During daemonization, + (on POSIX systems) the current directory will be changed to "/" + so the caller should either fully specify the file names, or + execute a @c chroot() to the appropriate directory. + @sa ACE::daemonize(). + + + + + -k point + + + Specifies the rendezvous point to use for the ACE distributed + logger. + + + + + + + EXAMPLES + + + &applname; -f /usr/share/ace-netsvcs/svc.conf + + + Starts ACE network services using example configuration. + + + + + &applname; -S 'dynamic Name_Server Service_Object * netsvcs:_make_ACE_Name_Acceptor() ""-p 20006""' + + + Starts ACE Naming service using command line configuration. + + + + + + + + + SEE ALSO + &seealso; + + + AUTHOR + Douglas C. Schmidt<schmidt@cs.wustl.edu> + + + + --- ace-6.0.1.orig/debian/libkokyu-6.0.1.docs +++ ace-6.0.1/debian/libkokyu-6.0.1.docs @@ -0,0 +1 @@ +ACE_wrappers/Kokyu/README --- ace-6.0.1.orig/debian/libkokyu-dev.doc-base.intro +++ ace-6.0.1/debian/libkokyu-dev.doc-base.intro @@ -0,0 +1,9 @@ +Document: libkokyu-intro +Title: Kokyu, middleware framework for flexible scheduling and dispatching +Author: Douglas C. Schmidt and his research group +Abstract: An introduction to Kokyu: what it is, use cases, configuration, usage +Section: Programming/C++ + +Format: html +Index: usr/share/doc/libkokyu-dev/docs/Kokyu.html +Files: usr/share/doc/libkokyu-dev/docs/Kokyu.html --- ace-6.0.1.orig/debian/libace-rmcast-dev.docs +++ ace-6.0.1/debian/libace-rmcast-dev.docs @@ -0,0 +1 @@ +ACE_wrappers/protocols/ace/RMCast/README --- ace-6.0.1.orig/debian/libace-rmcast-6.0.1.install +++ ace-6.0.1/debian/libace-rmcast-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_RMCast-*.so --- ace-6.0.1.orig/debian/tao-idl.install +++ ace-6.0.1/debian/tao-idl.install @@ -0,0 +1,2 @@ +usr/bin/tao_idl +usr/lib/ace/TAO/tao_idl --- ace-6.0.1.orig/debian/tao-cosnaming.install +++ ace-6.0.1/debian/tao-cosnaming.install @@ -0,0 +1 @@ +usr/bin/tao_cosnaming --- ace-6.0.1.orig/debian/tao-ifr.docs +++ ace-6.0.1/debian/tao-ifr.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/IFR_Service/README --- ace-6.0.1.orig/debian/tao-cosevent.docs +++ ace-6.0.1/debian/tao-cosevent.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/CosEvent_Service/README --- ace-6.0.1.orig/debian/libkokyu-dev.links +++ ace-6.0.1/debian/libkokyu-dev.links @@ -0,0 +1 @@ +usr/include/Kokyu usr/lib/ace/Kokyu --- ace-6.0.1.orig/debian/tao-imr.install +++ ace-6.0.1/debian/tao-imr.install @@ -0,0 +1,3 @@ +usr/bin/tao_imr_locator +usr/bin/tao_imr_activator +usr/bin/tao_imr --- ace-6.0.1.orig/debian/libtao-dev.links +++ ace-6.0.1/debian/libtao-dev.links @@ -0,0 +1 @@ +usr/include/tao usr/lib/ace/TAO/tao --- ace-6.0.1.orig/debian/libace-rmcast-dev.install +++ ace-6.0.1/debian/libace-rmcast-dev.install @@ -0,0 +1,3 @@ +usr/include/ace/RMCast +usr/lib/libACE_RMCast.so +usr/lib/pkgconfig/ACE_RMCast.pc --- ace-6.0.1.orig/debian/libace-doc.doc-base.reference +++ ace-6.0.1/debian/libace-doc.doc-base.reference @@ -0,0 +1,10 @@ +Document: libace-reference +Title: ACE online documentation +Author: Douglas C. Schmidt and his research group +Abstract: This set of documents provides help for developing applications + using the ACE, TAO and CIAO libraries. +Section: Programming/C++ + +Format: html +Index: /usr/share/doc/libace-doc/index.html +Files: /usr/share/doc/libace-doc/*.html --- ace-6.0.1.orig/debian/README.source +++ ace-6.0.1/debian/README.source @@ -0,0 +1,44 @@ += Compiling ACE+TAO Debian packages = + + * ACE+TAO+CIAO-src-.tar.bz2 is retrieved from: + http://download.dre.vanderbilt.edu/previous_versions/ + The -src version does not contain pre-generated Makefiles. They are + regenerated in the buid process. + + * Patching relies on dpatch; see: /usr/share/doc/dpatch/README.source.gz + + -- Thomas Girard , Sat, 5 Jun 2010 14:39:44 +0200 + += New releases = + +When preparing a new release, there are several things to remember: + + - Update patch 34-bts386713 (change soversions) + + - Regenerate the list of include files for libace-inet-dev and + libace-inet-ssl-dev: + + From debian/tmp: + + $ find . -type f | grep -vi https | grep -vi ssl --> These go to libace-inet-dev + + The ones matching HTTPS or SSL go in libace-inet-ssl-dev.install: + + usr/include/ace/INet/*SSL* + usr/include/ace/INet/*HTTPS* + + But that might need updating if ACE_INet_SSL starts supporting FTPS or others + + libace-inet-ssl-dev requires libace-inet-dev + + Also, make sure none of the files in libace-inet-dev include anything from + libace-inet-ssl-dev. Test with: + + From debian/tmp/usr/include/ace/INet: + + $ find . -type f | grep -vi https | grep -vi ssl | xargs -I {} grep -Hi "include.*ssl" + + $ find . -type f | grep -vi https | grep -vi ssl | xargs -I {} grep -Hi "include.*https" + + (both should return nothing) + --- ace-6.0.1.orig/debian/tao-idl.manpages +++ ace-6.0.1/debian/tao-idl.manpages @@ -0,0 +1 @@ +ACE_wrappers/TAO/TAO_IDL/tao_idl.1 --- ace-6.0.1.orig/debian/libace-inet-6.0.1.install +++ ace-6.0.1/debian/libace-inet-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_INet-*.so --- ace-6.0.1.orig/debian/tao-tls.install +++ ace-6.0.1/debian/tao-tls.install @@ -0,0 +1,4 @@ +usr/bin/tao_tls_basic +usr/bin/tao_tls_event +usr/bin/tao_tls_notify +usr/bin/tao_tls_rtevent --- ace-6.0.1.orig/debian/libace-foxreactor-6.0.1.install +++ ace-6.0.1/debian/libace-foxreactor-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_FoxReactor-*.so --- ace-6.0.1.orig/debian/mpc-ace.links +++ ace-6.0.1/debian/mpc-ace.links @@ -0,0 +1,3 @@ +usr/lib/ace/bin/mpc.pl usr/bin/mpc-ace +usr/lib/ace/bin/mwc.pl usr/bin/mwc-ace +usr/share/man/man1/mpc-ace.1.gz usr/share/man/man1/mwc-ace.1.gz --- ace-6.0.1.orig/debian/libnetsvcs-dev.docs +++ ace-6.0.1/debian/libnetsvcs-dev.docs @@ -0,0 +1,2 @@ +ACE_wrappers/netsvcs/lib/README +ACE_wrappers/PROBLEM-REPORT-FORM --- ace-6.0.1.orig/debian/libtao-orbsvcs-dev.links +++ ace-6.0.1/debian/libtao-orbsvcs-dev.links @@ -0,0 +1 @@ +usr/include/orbsvcs usr/lib/ace/TAO/orbsvcs --- ace-6.0.1.orig/debian/ace-gperf.docs +++ ace-6.0.1/debian/ace-gperf.docs @@ -0,0 +1,2 @@ +ACE_wrappers/PROBLEM-REPORT-FORM +ACE_wrappers/apps/gperf/README --- ace-6.0.1.orig/debian/compat +++ ace-6.0.1/debian/compat @@ -0,0 +1 @@ +7 --- ace-6.0.1.orig/debian/tao_catior.sgml +++ ace-6.0.1/debian/tao_catior.sgml @@ -0,0 +1,99 @@ + + TAO_ORB_Options1"> + tao_cosnaming1"> + tao_cosnaming"> + +]> + + + + + + + TAO_CatIOR + 1 + + + &applname; + Stringified IOR decoder and viewer. + + + SYNOPSIS + + &applname; + -ORBoptions + -f file + -n name + + + + DESCRIPTION + + &applname; takes in a file which contains the IOR and will then output the +encoded information to stdout. + + + Details of stringified IOR are described for example in page 33 of + OMG CORBA specification, Part 2: Interoperability, v3.1.. + + + Examples of IOR can be found in /usr/share/doc/tao-utils/ directory. + + + + OPTIONS + + + -ORBoptions + + + The program follows the usual TAO ORB command line syntax. See + &man_tao_orb_options;. + + + + + -f filename + + + Takes in a file which contains the IOR and will then output the + encoded information to stdout. + + + + + -n named + + + Displays decoded IOR of the named object registered at NamingService. + + + + + + + EXAMPLES + + + &applname; -f /usr/share/doc/tao-utils/test/test1.ior + + + Displays decoded IOR from /usr/share/doc/tao-utils/test/test1.ior. + + + + + + + SEE ALSO + &seealso; + + + AUTHOR + Jeff Hopper<jrhopper@cts.com> + Jason Cohen<jcohen@atl.lmco.com> + + + --- ace-6.0.1.orig/debian/libace-htbp-6.0.1.install +++ ace-6.0.1/debian/libace-htbp-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_HTBP-*.so --- ace-6.0.1.orig/debian/ace-gperf.install +++ ace-6.0.1/debian/ace-gperf.install @@ -0,0 +1,2 @@ +usr/bin/ace_gperf +usr/share/man/man1/ace_gperf.1 --- ace-6.0.1.orig/debian/tao_tls_basic.sgml +++ ace-6.0.1/debian/tao_tls_basic.sgml @@ -0,0 +1,68 @@ + + + TAO_ORB_Options1"> + tao_tls_notify1"> + tao_tls_event1"> + tao_tls_rtevent1"> + tao_cosnaming1"> + tao_cos_naming"> + tao_tls_basic"> + + + + <d.hanvey@qub.ac.uk>"> +]> + + + TAO_TLS_BASIC + 1 + + + &applname; + TAO Basic Telecom Log Service + + + SYNOPSIS + + &applname; + -ORBoptions + + + + DESCRIPTION + + &applname; is an event-unaware implementation of the Telecom Log Service. + + + The Telecom Log Service specification may be found on the OMG + website at . + + + &applname; requires a running &tao_cosnaming; and registers with + it as `BasicLogFactory'. + + + + OPTIONS + + The program follows the usual TAO ORB command line syntax. See + &man_tao_orb_options;. + + + + BUGS + + Currently all Logs records are stored in memory. + + + + SEE ALSO + &seealso; + + + AUTHOR + &username; &useremail; + + --- ace-6.0.1.orig/debian/tao-cosconcurrency.install +++ ace-6.0.1/debian/tao-cosconcurrency.install @@ -0,0 +1 @@ +usr/bin/tao_cosconcurrency --- ace-6.0.1.orig/debian/libace-xtreactor-6.0.1.install +++ ace-6.0.1/debian/libace-xtreactor-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_XtReactor-*.so --- ace-6.0.1.orig/debian/libace-tmcast-dev.install +++ ace-6.0.1/debian/libace-tmcast-dev.install @@ -0,0 +1,3 @@ +usr/include/ace/TMCast +usr/lib/libACE_TMCast.so +usr/lib/pkgconfig/ACE_TMCast.pc --- ace-6.0.1.orig/debian/libace-tmcast-dev.docs +++ ace-6.0.1/debian/libace-tmcast-dev.docs @@ -0,0 +1 @@ +ACE_wrappers/protocols/ace/TMCast/README --- ace-6.0.1.orig/debian/tao-cosnotification.docs +++ ace-6.0.1/debian/tao-cosnotification.docs @@ -0,0 +1 @@ +ACE_wrappers/TAO/orbsvcs/Notify_Service/README --- ace-6.0.1.orig/debian/libace-htbp-dev.docs +++ ace-6.0.1/debian/libace-htbp-dev.docs @@ -0,0 +1 @@ +ACE_wrappers/protocols/ace/HTBP/README --- ace-6.0.1.orig/debian/tao-load.install +++ ace-6.0.1/debian/tao-load.install @@ -0,0 +1,2 @@ +usr/bin/tao_loadmanager +usr/bin/tao_loadmonitor --- ace-6.0.1.orig/debian/libace-ssl-6.0.1.install +++ ace-6.0.1/debian/libace-ssl-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_SSL-*.so --- ace-6.0.1.orig/debian/tao-ft.install +++ ace-6.0.1/debian/tao-ft.install @@ -0,0 +1,3 @@ +usr/bin/tao_fault_detector +usr/bin/tao_fault_notifier +usr/bin/tao_ft_replicationmanager --- ace-6.0.1.orig/debian/libace-xtreactor-dev.install +++ ace-6.0.1/debian/libace-xtreactor-dev.install @@ -0,0 +1,3 @@ +usr/lib/libACE_XtReactor.so +usr/include/ace/XtReactor +usr/lib/pkgconfig/ACE_XtReactor.pc --- ace-6.0.1.orig/debian/libtao-foxresource-2.0.1.install +++ ace-6.0.1/debian/libtao-foxresource-2.0.1.install @@ -0,0 +1 @@ +usr/lib/libTAO_FoxResource-*.so --- ace-6.0.1.orig/debian/README.Debian +++ ace-6.0.1/debian/README.Debian @@ -0,0 +1,37 @@ +ACE for Debian +-------------- + + +== Environment variables == + +If the software you are compiling requires $ACE_ROOT to be set (for +example, the tutorials), you may set it to /usr/lib/ace. For bash, +the command to do this is + + export ACE_ROOT=/usr/lib/ace + + +Likewise, for TAO: + + export TAO_ROOT=${ACE_ROOT}/TAO + + +== Compiling examples == + +To compile ACE or TAO examples (in libace-doc and libtao-orbsvcs-doc), you'll +need: + 1. to define ACE_ROOT and TAO_ROOT as explained above. + 2. to install mpc-ace package if needed. + 3. to copy and uncompress the example you want to test, e.g.: + + cp /usr/share/doc/libtao-orbsvcs-doc/examples/CosEC $HOME/ex1 + find $HOME/ex1 -type f -name '*.gz' | xargs gunzip + + 4. to regenerate the GNUmakefiles for this new location: + + cd $HOME/ex1 + mwc-ace -recurse -value_project install=. -value_project libout=. + + 5. now you can compile your example. + + -- Thomas Girard , Sun, 23 May 2010 11:04:27 +0200 --- ace-6.0.1.orig/debian/rules +++ ace-6.0.1/debian/rules @@ -0,0 +1,198 @@ +#!/usr/bin/make -f + +# debian/rules file for ACE+TAO Debian GNU/Linux packages +# written February 2002 by Ossama Othman +# Modified August 2003 by Brian Nelson +# Copyright (C) 2004 Raphael Bossek +# Copyright © 2005-2010 Thomas Girard + +INSTALL_755 := install -o root -g root -m 755 + +ACE_SUBDIR := ACE_wrappers +ACE_ARCHIVE := $(shell ls -1 ACE+TAO+CIAO-src-*.tar.bz2 2>/dev/null || echo ace-archive-missing) +MWCFLAGS := -type gnuace -noreldefs +ACE_MAKE_FLAGS := versioned_so=2 + +MAN1 := debian/ace_netsvcs.1 \ + debian/tao_catior.1 \ + debian/tao_nslist.1 \ + debian/tao_nsadd.1 \ + debian/tao_nsdel.1 \ + debian/tao_tls_basic.1 \ + debian/tao_tls_event.1 \ + debian/tao_tls_notify.1 \ + debian/tao_tls_rtevent.1 \ + debian/TAO_ORB_Options.1 \ + debian/mpc-ace.1 +# Where we install every file before calling dh_install +DT := debian/tmp + +DOXYGEN_FILES_TO_REMOVE := -name '*.md5' -o \ + -name '*.dot' -o \ + -name '*.idx' -o \ + -name '*.map' -o \ + -name '*.tag' -o \ + -name 'index.hh?' + +export ACE_ROOT := $(shell pwd)/$(ACE_SUBDIR) +export MPC_ROOT := $(ACE_ROOT)/MPC +export TAO_ROOT := $(ACE_ROOT)/TAO +export CIAO_ROOT := $(TAO_ROOT)/CIAO +export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH):$(ACE_ROOT)/lib +export QTDIR := /usr/share/qt4 + +# This dpatches are only a place holders. The `prepatch' and `postbuild' targets stops +# here by default. +PREPATCH_MARK := 50-prepatch-dummy-mark.dpatch +POST_BUILD_MARK := 75-post-build-dummy-mark.dpatch +UNTIL_BUILD := $(PREPATCH_MARK) +UNTIL_POST_BUILD := $(POST_BUILD_MARK) + +.NOTPARALLEL: debian/mpc-ace.sgml debian/%.1 prepatch extract doxygen clean install build binary-indep binary-arch binary +.PHONY: doxygen patch unpatch prepatch extract build clean binary-indep binary-arch binary install source diff configure + +extract: extract-stamp +extract-stamp: $(ACE_ARCHIVE) + tar -xjf $< + cp debian/platform_macros.GNU $(ACE_ROOT)/include/makeinclude + cp debian/config.h $(ACE_ROOT)/ace/config.h + cp debian/default.features $(ACE_ROOT)/bin/MakeProjectCreator/config + # We need to delete this one to prevent an empty library generation + rm -f $(ACE_ROOT)/ace/ace_qt3reactor.mpc + touch $@ + +debian/mpc-ace.sgml: ACE_wrappers/MPC/docs/MPC.sgml + sed -e 's/mpc\.pl/mpc-ace/g' -e 's/mwc\.pl/mwc-ace/g' $< > $@ + +debian/%.1: debian/%.sgml + docbook-to-man $< > $@ + +# Prepare a ACE_wrappers directory where most of the patches are applied. +prepatch: prepatch-stamp +prepatch-stamp: extract-stamp + dpatch apply-until $(UNTIL_BUILD) + touch $@ + +pl-stamp: prepatch-stamp + for fn in `find "$(ACE_ROOT)" -name "*.pl"`; do (echo '#!/usr/bin/perl'; cat "$$fn") > "$${fn}T"; mv "$${fn}T" "$$fn"; chmod a+x "$$fn"; done + touch $@ + +configure: configure-stamp +configure-stamp: prepatch-stamp pl-stamp + cp debian/ACE-DPKG.mwc $(ACE_ROOT) + cd $(ACE_ROOT) && ./bin/mwc.pl $(MWCFLAGS) ACE-DPKG.mwc + cp debian/TAO-DPKG.mwc $(TAO_ROOT) + cd $(TAO_ROOT) && ./../bin/mwc.pl $(MWCFLAGS) TAO-DPKG.mwc + touch $@ + +patch: patch-stamp +patch-stamp: configure-stamp + dpatch apply-until $(UNTIL_POST_BUILD) + touch $@ + +unpatch: + dpatch deapply-all + rm -rf patch-stamp debian/patched + +doxygen: doxygen-stamp +doxygen-stamp: build-stamp + cd $(ACE_ROOT) && bin/generate_doxygen.pl -is_release -exclude_ciao + find $(ACE_ROOT)/html/libace-doc $(DOXYGEN_FILES_TO_REMOVE) | xargs -r rm -f + find $(ACE_ROOT)/html/libtao-doc $(DOXYGEN_FILES_TO_REMOVE) | xargs -r rm -f +# Somehow search/ is still generated, even if we don't want it. + find $(ACE_ROOT)/html -type d -name search | xargs -r rm -Rf + touch $@ + +build: build-stamp manpages-stamp +build-stamp: patch-stamp + dh_testdir + cd $(ACE_ROOT) && $(MAKE) $(ACE_MAKE_FLAGS) + cd $(TAO_ROOT) && $(MAKE) $(ACE_MAKE_FLAGS) + touch $@ + +manpages-stamp: $(MAN1) + touch $@ + +clean: + dh_testdir + rm -rf $(ACE_SUBDIR) debian/patched $(MAN1) *-stamp debian/mpc-ace.sgml + dh_clean + +post-build-patch: post-build-patch-stamp +post-build-patch-stamp: build-stamp + dpatch apply-all + touch $@ + + +install: post-build-patch + dh_testdir + dh_testroot + dh_prep + dh_installdirs +# Install all files in debian/tmp + cd $(ACE_ROOT) && $(MAKE) install DESTDIR=$(CURDIR)/$(DT)/ INSTALL_PREFIX=/usr install_rpath=0 $(ACE_MAKE_FLAGS) + cd $(TAO_ROOT) && $(MAKE) install DESTDIR=$(CURDIR)/$(DT)/ INSTALL_PREFIX=/usr install_rpath=0 $(ACE_MAKE_FLAGS) + + mkdir -p $(DT)/usr/share/man/man1 + cp $(ACE_ROOT)/apps/gperf/ace_gperf.1 $(DT)/usr/share/man/man1 + +# Relocate .idl and .pidl files + cd $(DT) && for f in $$(find usr/include -name '*.idl' -o -name '*.pidl') ; do \ + g=$$(echo $${f%%include*}share/idl/$${f##*usr/include/}) ; \ + mkdir -p $$(dirname $$g) ; \ + mv $$f $$g ; \ + done + +# We provide scripts replacement for tao_idl and tao_ifr; they +# automatically define ACE_ROOT and TAO_ROOT + mkdir -p $(DT)/usr/lib/ace/TAO + mv $(DT)/usr/bin/tao_idl $(DT)/usr/bin/tao_ifr $(DT)/usr/lib/ace/TAO + + $(INSTALL_755) -D debian/tao_idl $(DT)/usr/bin/tao_idl + $(INSTALL_755) -D debian/tao_ifr $(DT)/usr/bin/tao_ifr + + dh_install --sourcedir=$(DT) --list-missing + +binary-indep: build install doxygen-stamp + dh_testdir -i + dh_testroot -i + dh_installdocs -i + + chmod -x debian/libtao-doc/usr/share/doc/libtao-doc/examples/RTCORBA/Activity/svc.conf.server + chmod -x debian/libtao-doc/usr/share/doc/libtao-doc/examples/Simulator/DOVEBrowser/make.bat + chmod -x debian/libtao-doc/usr/share/doc/libtao-doc/examples/RTCORBA/Activity/svc.conf.client + + dh_installman -i + dh_installchangelogs -i $(ACE_ROOT)/ChangeLog + dh_perl -i + dh_link -i + dh_compress -i -Xexamples -Xtutorials + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installdocs -a -A + dh_installman -a + dh_installinfo -pace-gperf $(ACE_ROOT)/apps/gperf/ace_gperf.info + dh_installchangelogs -a $(ACE_ROOT)/ChangeLog + dh_installchangelogs -pace-gperf $(ACE_ROOT)/apps/gperf/ChangeLog + dh_strip -a + dh_link -a + dh_compress -a + dh_fixperms -a + dh_makeshlibs -a -V + dh_installdeb -a + dh_shlibdeps -a -l `ls -1 debian/lib*.install | sed -e 's#\(.*\)\.install#\1/usr/lib#' | tr '\n' ':' | sed -e 's#:$$##'` + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch --- ace-6.0.1.orig/debian/tao-costime.install +++ ace-6.0.1/debian/tao-costime.install @@ -0,0 +1,2 @@ +usr/bin/tao_costime_clerk +usr/bin/tao_costime_server --- ace-6.0.1.orig/debian/libacexml-dev.install +++ ace-6.0.1/debian/libacexml-dev.install @@ -0,0 +1,7 @@ +usr/include/ACEXML +usr/lib/libACEXML.so +usr/lib/libACEXML_Parser.so +usr/lib/libACEXML_XML_Svc_Conf_Parser.so +usr/lib/pkgconfig/ACEXML.pc +usr/lib/pkgconfig/ACEXML_XML_Svc_Conf_Parser.pc +usr/lib/pkgconfig/ACEXML_Parser.pc --- ace-6.0.1.orig/debian/ace-netsvcs.install +++ ace-6.0.1/debian/ace-netsvcs.install @@ -0,0 +1,2 @@ +../../ACE_wrappers/netsvcs/servers/ace_netsvcs usr/bin +../../ACE_wrappers/netsvcs/servers/svc.conf* usr/share/ace-netsvcs --- ace-6.0.1.orig/debian/libnetsvcs-dev.install +++ ace-6.0.1/debian/libnetsvcs-dev.install @@ -0,0 +1,3 @@ +../../ACE_wrappers/netsvcs/lib/*.h usr/include/netsvcs +../../ACE_wrappers/netsvcs/lib/*_T.cpp usr/include/netsvcs +../../ACE_wrappers/netsvcs/lib/libnetsvcs.so usr/lib --- ace-6.0.1.orig/debian/ace-netsvcs.docs +++ ace-6.0.1/debian/ace-netsvcs.docs @@ -0,0 +1,3 @@ +ACE_wrappers/PROBLEM-REPORT-FORM +ACE_wrappers/netsvcs/servers/README +ACE_wrappers/netsvcs/ACE-netsvcs.html --- ace-6.0.1.orig/debian/libkokyu-dev.install +++ ace-6.0.1/debian/libkokyu-dev.install @@ -0,0 +1,3 @@ +usr/include/Kokyu +usr/lib/libKokyu.so +usr/lib/pkgconfig/Kokyu.pc --- ace-6.0.1.orig/debian/cmp-autoconf-regular.sh +++ ace-6.0.1/debian/cmp-autoconf-regular.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +usage() { + cat >&2 << EOF +usage: $0 +compares ACE config.h files (using cpp) +e.g.: $0 ACE_wrappers/ace/config-linux.h objdir/ace/config.h +EOF +} + +report_to() { + g++ -E -DACE_HAS_LINUX_NPTL -dM -I"$ACE_ROOT" $1 | \ + grep '^#define ACE' | grep -v '^#define ACE_CONFIG' | \ + sed -e 's/^#define \+\([A-Z0-9_]\+\) *$/#define \1 1/g' | \ + sort >> $2 +} + +if test "a$ACE_ROOT" = "a"; then + echo "$0: please define ACE_ROOT" >&2 + exit 1 +fi + +if test "$#" -ne 2; then + usage + exit 2 +fi + +ONE_TMP=`mktemp -t ace_cmp_one.XXXXXXXXXX` || exit 1 +TWO_TMP=`mktemp -t ace_cmp_two.XXXXXXXXXX` || exit 1 + +trap "rm $ONE_TMP $TWO_TMP" EXIT + +report_to $1 $ONE_TMP +report_to $2 $TWO_TMP + +diff -u $ONE_TMP $TWO_TMP + --- ace-6.0.1.orig/debian/libkokyu-dev.docs +++ ace-6.0.1/debian/libkokyu-dev.docs @@ -0,0 +1,3 @@ +ACE_wrappers/Kokyu/README +ACE_wrappers/Kokyu/docs +ACE_wrappers/Kokyu/tests --- ace-6.0.1.orig/debian/tao-ifr.install +++ ace-6.0.1/debian/tao-ifr.install @@ -0,0 +1,3 @@ +usr/bin/tao_ifr_service +usr/bin/tao_ifr +usr/lib/ace/TAO/tao_ifr --- ace-6.0.1.orig/debian/tao-rtevent.install +++ ace-6.0.1/debian/tao-rtevent.install @@ -0,0 +1 @@ +usr/bin/tao_rtevent --- ace-6.0.1.orig/debian/libace-ssl-dev.install +++ ace-6.0.1/debian/libace-ssl-dev.install @@ -0,0 +1,3 @@ +usr/include/ace/SSL +usr/lib/libACE_SSL.so +usr/lib/pkgconfig/ACE_SSL.pc --- ace-6.0.1.orig/debian/watch +++ ace-6.0.1/debian/watch @@ -0,0 +1,3 @@ +version=3 + +ftp://download.dre.vanderbilt.edu/previous_versions/ACE\+TAO\+CIAO-src-(.*)\.tar\.bz2 --- ace-6.0.1.orig/debian/libace-tmcast-6.0.1.install +++ ace-6.0.1/debian/libace-tmcast-6.0.1.install @@ -0,0 +1 @@ +usr/lib/libACE_TMCast-*.so --- ace-6.0.1.orig/debian/libtao-doc.doc-base.reference +++ ace-6.0.1/debian/libtao-doc.doc-base.reference @@ -0,0 +1,10 @@ +Document: libtao-reference +Title: TAO online documentation +Author: Douglas C. Schmidt and his research group +Abstract: This set of documents provides help for developing applications + using the ACE, TAO and CIAO libraries. +Section: Programming/C++ + +Format: html +Index: /usr/share/doc/libtao-doc/index.html +Files: /usr/share/doc/libtao-doc/*.html --- ace-6.0.1.orig/debian/libace-flreactor-dev.install +++ ace-6.0.1/debian/libace-flreactor-dev.install @@ -0,0 +1,3 @@ +usr/lib/libACE_FlReactor.so +usr/include/ace/FlReactor +usr/lib/pkgconfig/ACE_FlReactor.pc --- ace-6.0.1.orig/debian/libnetsvcs-6.0.1.install +++ ace-6.0.1/debian/libnetsvcs-6.0.1.install @@ -0,0 +1 @@ +../../ACE_wrappers/netsvcs/lib/libnetsvcs-*.so usr/lib --- ace-6.0.1.orig/debian/libace-foxreactor-dev.install +++ ace-6.0.1/debian/libace-foxreactor-dev.install @@ -0,0 +1,3 @@ +usr/lib/libACE_FoxReactor.so +usr/include/ace/FoxReactor +usr/lib/pkgconfig/ACE_FoxReactor.pc --- ace-6.0.1.orig/debian/source/format +++ ace-6.0.1/debian/source/format @@ -0,0 +1 @@ +1.0 --- ace-6.0.1.orig/debian/patches/50-prepatch-dummy-mark.dpatch +++ ace-6.0.1/debian/patches/50-prepatch-dummy-mark.dpatch @@ -0,0 +1,8 @@ +#! /bin/sh -e +## 50-prepatch-mark-dummy.dpatch by Raphael Bossek +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: This files does nothing then be a mark for the `autotools' +## DP: debian/rules's target. + +exit 0 --- ace-6.0.1.orig/debian/patches/11-promote-QtResource-to-qt4.dpatch +++ ace-6.0.1/debian/patches/11-promote-QtResource-to-qt4.dpatch @@ -0,0 +1,36 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 11-promote-QtResource-to-qt4.dpatch by Marek Brudka +## +## DP: Moves QtResources dependencies from qt3 to qt4 [should be added to the upstream] + +@DPATCH@ +--- ACE_wrappers/ace/QtReactor/ace_qt3reactor.mpc 2010-09-17 22:16:53.000000000 +0200 ++++ /dev/null 2010-12-30 21:38:16.809455563 +0100 +@@ -1,27 +0,0 @@ +-// -*- MPC -*- now wouldn't this be cool... +-// $Id: ace_qt3reactor.mpc 91839 2010-09-17 20:16:53Z mitza $ +- +-project(ACE_Qt3Reactor_moc) : acedefaults, ace_qt3 { +- custom_only = 1 +- MOC_Files { +- QtReactor.h +- } +-} +- +-project(ACE_Qt3Reactor) : acedefaults, install, acelib, ace_output, ace_qt3 { +- after += ACE_Qt3Reactor_moc +- sharedname = ACE_QtReactor +- dynamicflags += ACE_QTREACTOR_BUILD_DLL +- +- MOC_Files { +- } +- +- Source_Files { +- QtReactor_moc.cpp +- QtReactor.cpp +- } +- +- specific { +- install_dir = ace/QtReactor +- } +-} --- ace-6.0.1.orig/debian/patches/91-patch-dg-basedir.dpatch +++ ace-6.0.1/debian/patches/91-patch-dg-basedir.dpatch @@ -0,0 +1,24 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 91-patch-dg-basedir.dpatch by Thomas Girard +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix path to DependencyGenerator. + +@DPATCH@ +--- ACE_wrappers.orig/bin/depgen.pl 2008-12-09 05:42:49.000000000 +0100 ++++ ACE_wrappers/bin/depgen.pl 2010-12-22 15:15:11.046305586 +0100 +@@ -19,12 +19,8 @@ + use File::Spec; + use File::Basename; + +-my($basePath) = $FindBin::RealBin; +-if ($^O eq 'VMS') { +- $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq ''); +- $basePath = VMS::Filespec::unixify($basePath); +-} +-unshift(@INC, $basePath . '/DependencyGenerator'); ++my($basePath) = '/usr/lib/ace/bin/DependencyGenerator'; ++unshift(@INC, $basePath); + + my($mpcroot) = $ENV{MPC_ROOT}; + my($mpcpath) = (defined $mpcroot ? $mpcroot : --- ace-6.0.1.orig/debian/patches/16-ace-inet-pkgconfig-files.dpatch +++ ace-6.0.1/debian/patches/16-ace-inet-pkgconfig-files.dpatch @@ -0,0 +1,67 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 16_ace_inet_pkgconfig_files.dpatch by Pau Garcia i Quiles +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Generate pkg-config files for libACE_INet and libACE_INet_SSL (they are +## DP: missing upstream) + +@DPATCH@ + +diff -rupdN ACE_wrappers.orig/protocols/ace/INet/ACE_INet.pc.in ACE_wrappers/protocols/ace/INet/ACE_INet.pc.in +--- ACE_wrappers.orig/protocols/ace/INet/ACE_INet.pc.in 1970-01-01 01:00:00.000000000 +0100 ++++ ACE_wrappers/protocols/ace/INet/ACE_INet.pc.in 2011-02-19 19:30:49.620802002 +0100 +@@ -0,0 +1,11 @@ ++prefix=@prefix@ ++exec_prefix=@exec_prefix@ ++libdir=@libdir@ ++includedir=@includedir@ ++ ++Name: ACE_INet ++Description: ACE INet Client Protocols Library ++Requires: ACE ++Version: @VERSION@ ++Libs: -L${libdir} -lACE_INet ++Cflags: -I${includedir} +diff -rupdN ACE_wrappers.orig/protocols/ace/INet/ACE_INet_SSL.pc.in ACE_wrappers/protocols/ace/INet/ACE_INet_SSL.pc.in +--- ACE_wrappers.orig/protocols/ace/INet/ACE_INet_SSL.pc.in 1970-01-01 01:00:00.000000000 +0100 ++++ ACE_wrappers/protocols/ace/INet/ACE_INet_SSL.pc.in 2011-02-19 19:31:26.220802002 +0100 +@@ -0,0 +1,11 @@ ++prefix=@prefix@ ++exec_prefix=@exec_prefix@ ++libdir=@libdir@ ++includedir=@includedir@ ++ ++Name: ACE_INet_SSL ++Description: ACE INet Client Protocols With SSL Library ++Requires: ACE_SSL ++Version: @VERSION@ ++Libs: -L${libdir} -lACE_INet_SSL ++Cflags: -I${includedir} +diff -rupdN ACE_wrappers.orig/protocols/ace/INet/inet.mpc ACE_wrappers/protocols/ace/INet/inet.mpc +--- ACE_wrappers.orig/protocols/ace/INet/inet.mpc 2011-02-19 19:25:01.104802002 +0100 ++++ ACE_wrappers/protocols/ace/INet/inet.mpc 2011-02-19 19:34:49.668802002 +0100 +@@ -54,6 +54,11 @@ project(INet) : acelib, ace_output, inst + specific { + install_dir = ace/INet + } ++ ++ Pkgconfig_Files { ++ ACE_INet.pc.in ++ } ++ + } + + // This project will be generated with and without ssl=1 feature +diff -rupdN ACE_wrappers.orig/protocols/ace/INet/inet_ssl.mpc ACE_wrappers/protocols/ace/INet/inet_ssl.mpc +--- ACE_wrappers.orig/protocols/ace/INet/inet_ssl.mpc 2011-02-19 19:25:01.104802002 +0100 ++++ ACE_wrappers/protocols/ace/INet/inet_ssl.mpc 2011-02-19 19:35:09.832802001 +0100 +@@ -25,4 +25,9 @@ project(INet_SSL) : acelib, ace_output, + specific { + install_dir = ace/INet + } ++ ++ Pkgconfig_Files { ++ ACE_INet_SSL.pc.in ++ } ++ + } --- ace-6.0.1.orig/debian/patches/20-versioned_libs.dpatch +++ ace-6.0.1/debian/patches/20-versioned_libs.dpatch @@ -0,0 +1,136 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 20-versioned_libs.dpatch by Thomas Girard +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Change versioning from libACE.so.x.y.z to libACE-x.y.z.so. + +@DPATCH@ +--- ACE_wrappers.orig/include/makeinclude/wrapper_macros.GNU 2010-10-05 09:27:20.000000000 +0200 ++++ ACE_wrappers/include/makeinclude/wrapper_macros.GNU 2010-12-22 15:40:14.126127937 +0100 +@@ -78,7 +78,10 @@ + # If versioned_so is 1 (enabled), the SOVERSION make + # variable can also be set to specify the version info + # to append to the name - it should have a leading '.' - +-# else it defaults to .ACE_MAJOR.ACE_MINOR.ACE_BETA. ++# else it defaults to .ACE_MAJOR.ACE_MINOR.ACE_BETA. If 2, ++# the version will be appended to the name but *before* the ++# $(SOEXT) - it should have a lead '-' - else it defaults to ++# -ACE_MAJOR.ACE_MINOR.ACE_BETA. + # wfmo Build with wfmo support (Win32 only) + # winregistry Build with windows registry support (Win32 only) + # winnt Build WinNT-specific projects (Win32 only) +--- ACE_wrappers.orig/MPC/prj_install.pl 2010-09-14 21:39:33.000000000 +0200 ++++ ACE_wrappers/MPC/prj_install.pl 2010-12-22 15:38:28.746110985 +0100 +@@ -186,7 +186,7 @@ + my $fh = new FileHandle(); + if (opendir($fh, $odir)) { + foreach my $file (grep(!/^\.\.?$/, readdir($fh))) { +- if ($file =~ /^lib$name\.(a|so|sl)/ || ++ if ($file =~ /^lib$name(-[0-9]+(\.[0-9]+)*)?\.(a|so|sl)/ || + $file =~ /^(lib)?$name.*\.(dll|lib)$/i) { + push(@libs, "$dir$insdir$binarydir$file"); + } +--- ACE_wrappers.orig/include/makeinclude/platform_g++_common.GNU 2010-11-19 16:47:53.000000000 +0100 ++++ ACE_wrappers/include/makeinclude/platform_g++_common.GNU 2010-12-22 16:16:05.914110606 +0100 +@@ -72,7 +72,7 @@ + # If the platform file didn't already set versioned_so, default to 1. + versioned_so ?= 1 + with_ld ?= +-ifeq ($(versioned_so),1) ++ifneq ($(versioned_so),0) + ifeq ($(with_ld),hpux) + SOFLAGS += -Wl,+h -Wl,$(SONAME) + else +--- ACE_wrappers.orig/include/makeinclude/rules.lib.GNU 2010-09-23 18:17:42.000000000 +0200 ++++ ACE_wrappers/include/makeinclude/rules.lib.GNU 2010-12-22 16:38:13.874115232 +0100 +@@ -11,7 +11,7 @@ + # Library versioning + #--------------------------------------------------------------------------- + +-ifeq ($(versioned_so),1) ++ifneq ($(versioned_so),0) + # Turn on symbol versioning. The scheme that we follow is to allow + # applications dependent on libraries, with same version numbers (major, + # minor and beta) to run, but applications with dependencies on libraries +@@ -20,13 +20,23 @@ + # Version number of the libraries + # + ifeq ($(SOVERSION),) +- SOVERSION = .$(GNUACE_PROJECT_VERSION) ++ ifeq ($(versioned_so),1) ++ SOVERSION = .$(GNUACE_PROJECT_VERSION) ++ else ifeq ($(versioned_so),2) ++ SOVERSION = -$(GNUACE_PROJECT_VERSION) ++ else ++ $(error unknown value for versioned_so: $(versioned_so)) ++ endif + endif # SOVERSION + + # Name that will be written into the dynamic library + # + ifeq ($(SONAME),) +- SONAME = $(SHLIB)$(SOVERSION) ++ ifeq ($(versioned_so),1) ++ SONAME = $(SHLIB)$(SOVERSION) ++ else ifeq ($(versioned_so),2) ++ SONAME = $(patsubst %.$(SOEXT),%,$(SHLIB))$(SOVERSION).$(SOEXT) ++ endif + endif # SONAME + endif # versioned_so + +@@ -47,9 +57,15 @@ + # Setup shared library variables, including versions. + VSHLIB_NO_VER = $(ARCH_SHLIB:%.$(SOEXT)=%$(VAR).$(SOEXT)) + CLEANUP_VSHLIB_NO_VER = $(CLEANUP_SHLIB:%.$(SOEXT)=%$(VAR).$(SOEXT)) +-VSHLIB = $(VSHLIB_NO_VER:%=%$(SOVERSION)) +-CLEANUP_VSHLIB = $(CLEANUP_VSHLIB_NO_VER:%=%$(SOVERSION)) +-SHLIB_WITH_VER = $(SHLIB:%=%$(SOVERSION)) ++ifneq ($(versioned_so),2) ++ VSHLIB = $(VSHLIB_NO_VER:%=%$(SOVERSION)) ++ CLEANUP_VSHLIB = $(CLEANUP_VSHLIB_NO_VER:%=%$(SOVERSION)) ++ SHLIB_WITH_VER = $(SHLIB:%=%$(SOVERSION)) ++else ++ VSHLIB = $(patsubst %.$(SOEXT),%,$(VSHLIB_NO_VER))$(SOVERSION).$(SOEXT) ++ CLEANUP_VSHLIB = $(patsubst %.$(SOEXT),%,$(CLEANUP_VSHLIB_NO_VER))$(SOVERSION).$(SOEXT) ++ SHLIB_WITH_VER = $(patsubst %.$(SOEXT),%,$(SHLIB))$(SOVERSION).$(SOEXT) ++endif + + SHLIBA ?= + VSHLIBA = $(ARCH_SHLIBA:%.$(LIBEXT)=%$(VAR).$(LIBEXT)) +--- ACE_wrappers.orig/include/makeinclude/rules.local.GNU 2010-11-05 15:31:15.000000000 +0100 ++++ ACE_wrappers/include/makeinclude/rules.local.GNU 2010-12-22 17:21:40.474300601 +0100 +@@ -297,13 +297,23 @@ + fi + else #firstword of LN_S is not cp, so we're using real symlinks + ifneq ($(SOVERSION),) +- @if test $(ARCH_SOURCE_DIR) != $(@D) ; then \ ++ ifneq ($(versioned_so),2) ++ @if test $(ARCH_SOURCE_DIR) != $(@D) ; then \ + if test ! -s $@ ; then \ + $(RM) $(@:%.$(SOEXT)$(SOVERSION)=%.$(SOEXT)); \ + echo $(LN_S) $(ARCH_SOURCE_DIR)/$(@F) $(@:%.$(SOEXT)$(SOVERSION)=%.$(SOEXT)); \ + $(LN_S) $(ARCH_SOURCE_DIR)/$(@F) $(@:%.$(SOEXT)$(SOVERSION)=%.$(SOEXT)); \ + fi ; \ +- fi ++ fi ++ else ++ @if test $(ARCH_SOURCE_DIR) != $(@D) ; then \ ++ if test ! -s $@ ; then \ ++ $(RM) $(@:%$(SOVERSION).$(SOEXT)=%.$(SOEXT)); \ ++ echo $(LN_S) $(ARCH_SOURCE_DIR)/$(@F) $(@:%$(SOVERSION).$(SOEXT)=%.$(SOEXT)); \ ++ $(LN_S) $(ARCH_SOURCE_DIR)/$(@F) $(@:%$(SOVERSION).$(SOEXT)=%.$(SOEXT)); \ ++ fi ; \ ++ fi ++ endif #versioned_so + endif #SOVERSION + @if test $(ARCH_SOURCE_DIR) != $(@D) ; then \ + if test ! -s $@ ; then \ +@@ -336,6 +346,8 @@ + -$(RM) $(SHLIB_UNCHECKED) + ifeq ($(versioned_so),1) + -$(RM) $(SHLIB_UNCHECKED)$(SOVERSION) ++else ifeq ($(versioned_so),2) ++ -$(RM) $(SHLIB_UNCHECKED:.$(SOEXT)=$(SOVERSION).$(SOEXT)) + endif + endif + --- ace-6.0.1.orig/debian/patches/90-patch-mpc-basedir.dpatch +++ ace-6.0.1/debian/patches/90-patch-mpc-basedir.dpatch @@ -0,0 +1,42 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 90-patch-mpc-basedir.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Set MPC base dir directly, no need to fix the tests performed by ACE +## DP: because there is no Debian/VMS (yet :-) + +@DPATCH@ +--- ACE_wrappers.orig/bin/mpc.pl 2010-03-08 16:38:06.000000000 +0100 ++++ ACE_wrappers/bin/mpc.pl 2010-12-22 15:04:58.478119377 +0100 +@@ -20,13 +20,7 @@ + use File::Spec; + use File::Basename; + +-my($basePath) = (defined $FindBin::RealBin ? $FindBin::RealBin : +- File::Spec->rel2abs(dirname($0))); +-if ($^O eq 'VMS') { +- $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq ''); +- $basePath = VMS::Filespec::unixify($basePath); +-} +-$basePath .= '/MakeProjectCreator'; ++my($basePath) = '/usr/lib/ace/bin/MakeProjectCreator'; + + my($mpcroot) = $ENV{MPC_ROOT}; + my($mpcpath) = (defined $mpcroot ? $mpcroot : +--- ACE_wrappers.orig/bin/mwc.pl 2010-03-08 16:38:06.000000000 +0100 ++++ ACE_wrappers/bin/mwc.pl 2010-12-22 15:05:34.150111643 +0100 +@@ -20,13 +20,7 @@ + use File::Spec; + use File::Basename; + +-my($basePath) = (defined $FindBin::RealBin ? $FindBin::RealBin : +- File::Spec->rel2abs(dirname($0))); +-if ($^O eq 'VMS') { +- $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq ''); +- $basePath = VMS::Filespec::unixify($basePath); +-} +-$basePath .= '/MakeProjectCreator'; ++my($basePath) = '/usr/lib/ace/bin/MakeProjectCreator'; + + my($mpcroot) = $ENV{MPC_ROOT}; + my($mpcpath) = (defined $mpcroot ? $mpcroot : --- ace-6.0.1.orig/debian/patches/35_disable_sslv2.dpatch +++ ace-6.0.1/debian/patches/35_disable_sslv2.dpatch @@ -0,0 +1,121 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 35_disable_sslv2.dpatch by Pau Garcia i Quiles +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: SSLv2 has been disabled in Debian in OpenSSL 1.0.0d, remove it from ACE +## DP: too + +@DPATCH@ + +diff -rupd ACE_wrappers.orig/ace/SSL/SSL_Context.cpp ACE_wrappers/ace/SSL/SSL_Context.cpp +--- ACE_wrappers.orig/ace/SSL/SSL_Context.cpp 2011-04-26 19:06:13.021425002 +0200 ++++ ACE_wrappers/ace/SSL/SSL_Context.cpp 2011-04-26 19:18:33.685425000 +0200 +@@ -236,15 +236,6 @@ ACE_SSL_Context::set_mode (int mode) + + switch (mode) + { +- case ACE_SSL_Context::SSLv2_client: +- method = ::SSLv2_client_method (); +- break; +- case ACE_SSL_Context::SSLv2_server: +- method = ::SSLv2_server_method (); +- break; +- case ACE_SSL_Context::SSLv2: +- method = ::SSLv2_method (); +- break; + case ACE_SSL_Context::SSLv3_client: + method = ::SSLv3_client_method (); + break; +@@ -254,15 +245,6 @@ ACE_SSL_Context::set_mode (int mode) + case ACE_SSL_Context::SSLv3: + method = ::SSLv3_method (); + break; +- case ACE_SSL_Context::SSLv23_client: +- method = ::SSLv23_client_method (); +- break; +- case ACE_SSL_Context::SSLv23_server: +- method = ::SSLv23_server_method (); +- break; +- case ACE_SSL_Context::SSLv23: +- method = ::SSLv23_method (); +- break; + case ACE_SSL_Context::TLSv1_client: + method = ::TLSv1_client_method (); + break; +@@ -335,14 +317,10 @@ ACE_SSL_Context::load_trusted_ca (const + + // For TLS/SSL servers scan all certificates in ca_file and ca_dir and + // list them as acceptable CAs when requesting a client certificate. +- if (mode_ == SSLv23 +- || mode_ == SSLv23_server +- || mode_ == TLSv1 ++ if (mode_ == TLSv1 + || mode_ == TLSv1_server + || mode_ == SSLv3 +- || mode_ == SSLv3_server +- || mode_ == SSLv2 +- || mode_ == SSLv2_server) ++ || mode_ == SSLv3_server) + { + // Note: The STACK_OF(X509_NAME) pointer is a copy of the pointer in + // the CTX; any changes to it by way of these function calls will +diff -rupd ACE_wrappers.orig/ace/SSL/SSL_Context.h ACE_wrappers/ace/SSL/SSL_Context.h +--- ACE_wrappers.orig/ace/SSL/SSL_Context.h 2011-04-26 19:06:13.021425002 +0200 ++++ ACE_wrappers/ace/SSL/SSL_Context.h 2011-04-26 19:16:39.525425001 +0200 +@@ -82,16 +82,16 @@ public: + + enum { + INVALID_METHOD = -1, +- SSLv2_client = 1, ++/* SSLv2_client = 1, + SSLv2_server, +- SSLv2, +- SSLv3_client, ++ SSLv2, */ ++ SSLv3_client = 4, + SSLv3_server, + SSLv3, +- SSLv23_client, ++/* SSLv23_client, + SSLv23_server, +- SSLv23, +- TLSv1_client, ++ SSLv23, */ ++ TLSv1_client = 10, + TLSv1_server, + TLSv1 + }; +@@ -114,7 +114,7 @@ public: + * If the mode is not set, then the class automatically initializes + * itself to the default mode. + */ +- int set_mode (int mode = ACE_SSL_Context::SSLv23); ++ int set_mode (int mode = ACE_SSL_Context::SSLv3); + + int get_mode (void) const; + +diff -rupd ACE_wrappers.orig/protocols/ace/INet/HTTP_Simple_exec.cpp ACE_wrappers/protocols/ace/INet/HTTP_Simple_exec.cpp +--- ACE_wrappers.orig/protocols/ace/INet/HTTP_Simple_exec.cpp 2011-04-26 19:05:58.497425001 +0200 ++++ ACE_wrappers/protocols/ace/INet/HTTP_Simple_exec.cpp 2011-04-26 19:15:15.609425001 +0200 +@@ -35,7 +35,7 @@ usage (void) + std::cout << "\t-p \t\tproxy port to connect to\n"; + std::cout << "\t-o \t\tfile to write output to\n"; + #if defined (ACE_HAS_SSL) && ACE_HAS_SSL == 1 +- std::cout << "\t-v \t\tSSL version to use: 2, 23, 3\n"; ++ std::cout << "\t-v \t\tSSL version to use: '3' for SSLv3 or '1' for TLS 1.0\n"; + std::cout << "\t-n \t\tno peer certificate verification\n"; + std::cout << "\t-i \t\tignore peer certificate verification failures\n"; + std::cout << "\t-c \t\tcertificate file (PEM format)\n"; +@@ -78,10 +78,8 @@ parse_args (int argc, ACE_TCHAR *argv [] + case 'v': + { + ACE_CString ver = ACE_TEXT_ALWAYS_CHAR (get_opt.opt_arg ()); +- if (ver == "2") +- ssl_mode = ACE_SSL_Context::SSLv2; +- else if (ver == "23") +- ssl_mode = ACE_SSL_Context::SSLv23; ++ if (ver == "1") ++ ssl_mode = ACE_SSL_Context::TLSv1; + else if (ver != "3") // default mode + { + std::cerr << "ERROR: Invalid SSL mode [" << ver << "] specfied!" << std::endl; --- ace-6.0.1.orig/debian/patches/00patch-opts +++ ace-6.0.1/debian/patches/00patch-opts @@ -0,0 +1,21 @@ +# -*- shell-script -*- #vim:syntax=sh +# By default dpatch works with -p1 (patch level 1) which works +# fine with one working directory, e.g. ACE_wrappers. While +# two working directories exist the default -p1 makes thinks +# complicate. Instaed of recreate patches we overwrite the +# dpatch_patch and dpatch_unpatch functions with -p0. +# See /usr/share/dpatch/dpatch.lib.sh for more implementation +# details on this issue. +# -- Raphael Bossek + +DPATCH_LIB_NO_DEFAULT="no" + +dpatch_patch () +{ + patch -p0 $* +} + +dpatch_unpatch () +{ + patch -p0 -R $* +} --- ace-6.0.1.orig/debian/patches/00list +++ ace-6.0.1/debian/patches/00list @@ -0,0 +1,12 @@ +11-promote-QtResource-to-qt4.dpatch +15-fix-lzo-flags.dpatch +16-ace-inet-pkgconfig-files.dpatch +20-versioned_libs.dpatch +34-bts386713.dpatch +35_disable_sslv2.dpatch +49-reduce-doxygen-doc.dpatch +50-prepatch-dummy-mark.dpatch +75-post-build-dummy-mark.dpatch +90-patch-mpc-basedir.dpatch +91-patch-dg-basedir.dpatch +92-default-ACE_ROOT.dpatch --- ace-6.0.1.orig/debian/patches/75-post-build-dummy-mark.dpatch +++ ace-6.0.1/debian/patches/75-post-build-dummy-mark.dpatch @@ -0,0 +1,8 @@ +#! /bin/sh -e +## 75-post-build-mark-dummy.dpatch by Raphael Bossek +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: This files does nothing then be a mark for the `autotools' +## DP: debian/rules's target. + +exit 0 --- ace-6.0.1.orig/debian/patches/34-bts386713.dpatch +++ ace-6.0.1/debian/patches/34-bts386713.dpatch @@ -0,0 +1,406 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 34-bts386713.dpatch by Pau Garcia i Quiles +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: load libraries with their complete name + +@DPATCH@ +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.cpp ACE_wrappers/TAO/orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.cpp 2009-12-14 00:42:05.534162607 +0100 ++++ ACE_wrappers/TAO/orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.cpp 2009-12-14 00:59:12.215257079 +0100 +@@ -14,7 +14,7 @@ ACE_RCSID (PortableGroup, + + static const char pg_poa_factory_name[] = "TAO_GOA"; + static const ACE_TCHAR pg_poa_factory_directive[] = ACE_DYNAMIC_SERVICE_DIRECTIVE( +- "TAO_GOA", "TAO_PortableGroup", "_make_TAO_PG_Object_Adapter_Factory", ""); ++ "TAO_GOA", "libTAO_PortableGroup-2.0.1.so", "_make_TAO_PG_Object_Adapter_Factory", ""); + + TAO_BEGIN_VERSIONED_NAMESPACE_DECL + +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/tests/Bug_3486_Regression/server.cpp ACE_wrappers/TAO/orbsvcs/tests/Bug_3486_Regression/server.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/tests/Bug_3486_Regression/server.cpp 2009-12-14 00:42:06.382162746 +0100 ++++ ACE_wrappers/TAO/orbsvcs/tests/Bug_3486_Regression/server.cpp 2009-12-14 00:59:12.215257079 +0100 +@@ -18,7 +18,7 @@ ACE_TCHAR const * const scpc_unloadOrb = + + ACE_TCHAR const * const scpc_loadNamingService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNamingService", +- "TAO_CosNaming_Serv", ++ "libTAO_CosNaming_Serv-2.0.1.so", + "_make_TAO_Naming_Loader", + "" + ); +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_2926_Regression/server.cpp ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_2926_Regression/server.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_2926_Regression/server.cpp 2009-12-14 00:42:06.030162565 +0100 ++++ ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_2926_Regression/server.cpp 2009-12-14 00:59:12.215257079 +0100 +@@ -20,7 +20,7 @@ ACE_TCHAR const * const scpc_unloadOrb = + + ACE_TCHAR const * const scpc_loadNotifyService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNotifyService", +- "TAO_CosNotification_Serv", ++ "libTAO_CosNotification_Serv-2.0.1.so", + "_make_TAO_CosNotify_Service", + "" + ); +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3252_Regression/server.cpp ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3252_Regression/server.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3252_Regression/server.cpp 2009-12-14 00:42:06.026162764 +0100 ++++ ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3252_Regression/server.cpp 2009-12-14 00:59:12.215257079 +0100 +@@ -24,7 +24,7 @@ ACE_TCHAR const * const scpc_unloadOrb = + + ACE_TCHAR const * const scpc_loadNotifyService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNotifyService", +- "TAO_CosNotification_Serv", ++ "libTAO_CosNotification_Serv-2.0.1.so", + "_make_TAO_CosNotify_Service", + "-UseSeparateDispatchingORB 1" + ); +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp 2009-12-14 00:42:06.018162604 +0100 ++++ ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -20,7 +20,7 @@ ACE_TCHAR const * const scpc_unloadOrb = + + ACE_TCHAR const * const scpc_loadNotifyService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNotifyService", +- "TAO_Notify_Service", ++ "libTAO_Notify_Service-2.0.1.so", + "_make_TAO_Notify_Service_Driver", + "-NoNameSvc -RunThreads 0" + ); +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp 2009-12-14 00:42:06.046162766 +0100 ++++ ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -23,7 +23,7 @@ ACE_TCHAR const * const scpc_unloadOrb = + + ACE_TCHAR scpc_loadNotifyService[max_length] = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNotifyService", +- "TAO_Notify_Service", ++ "libTAO_Notify_Service-2.0.1.so", + "_make_TAO_Notify_Service_Driver", + "-Channel -ChannelName Channel1 -ChannelName Channel2 -RunThreads 0 -ORBInitRef NameService=iioploc://%s:%s/NameService -IORoutput %s" + ); +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3646d_Regression/server.cpp ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3646d_Regression/server.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3646d_Regression/server.cpp 2009-12-14 00:42:06.074162491 +0100 ++++ ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3646d_Regression/server.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -20,7 +20,7 @@ ACE_TCHAR const * const scpc_unloadOrb = + + ACE_TCHAR const * const scpc_loadNotifyService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNotifyService", +- "TAO_Notify_Service", ++ "libTAO_Notify_Service-2.0.1.so", + "_make_TAO_Notify_Service_Driver", + "-Channel -ChannelName Channel1 -ChannelName Channel2 -RunThreads 10 -ORBInitRef NameService=file://naming.ior -IORoutput notify.ior" + ); +@@ -29,7 +29,7 @@ ACE_TCHAR const * const scpc_unloadNotif + + ACE_TCHAR const * const scpc_loadNameService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNamingService", +- "TAO_CosNaming_Serv", ++ "libTAO_CosNaming_Serv-2.0.1.so", + "_make_TAO_Naming_Loader", + "testNameService testNameService -ORBId testDllOrb -m 0 -o naming.ior" + ); +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3663_Regression/server.cpp ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3663_Regression/server.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3663_Regression/server.cpp 2009-12-14 00:42:06.038162926 +0100 ++++ ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3663_Regression/server.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -20,7 +20,7 @@ ACE_TCHAR const * const scpc_unloadOrb = + + ACE_TCHAR const * const scpc_loadNotifyService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNotifyService", +- "TAO_Notify_Service", ++ "libTAO_Notify_Service-2.0.1.so", + "_make_TAO_Notify_Service_Driver_INCORRECT", + "-NoNameSvc -RunThreads 0" + ); +diff -rupd ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3688b_Regression/server.cpp ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3688b_Regression/server.cpp +--- ACE_wrappers.orig/TAO/orbsvcs/tests/Notify/Bug_3688b_Regression/server.cpp 2009-12-14 00:42:06.062163609 +0100 ++++ ACE_wrappers/TAO/orbsvcs/tests/Notify/Bug_3688b_Regression/server.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -24,7 +24,7 @@ ACE_TCHAR const * const scpc_unloadOrb = + + ACE_TCHAR const * const scpc_loadNameService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNamingService", +- "TAO_CosNaming_Serv", ++ "libTAO_CosNaming_Serv-2.0.1.so", + "_make_TAO_Naming_Loader", + "testNameService testNameService -ORBId testDllOrb -m 0 -o naming.ior" + ); +@@ -34,7 +34,7 @@ ACE_TCHAR const * const scpc_unloadNameS + + ACE_TCHAR const * const scpc_loadNotifyService = ACE_DYNAMIC_SERVICE_DIRECTIVE( + "testNotifyService", +- "TAO_Notify_Service", ++ "libTAO_Notify_Service-2.0.1.so", + "_make_TAO_Notify_Service_Driver", + "-Channel -ChannelName Channel1 -ChannelName Channel2 -RunThreads 1 -ORBInitRef NameService=file://naming.ior -IORoutput notify.ior" + ); +diff -rupd ACE_wrappers.orig/TAO/tao/Codeset/Codeset_Manager_i.cpp ACE_wrappers/TAO/tao/Codeset/Codeset_Manager_i.cpp +--- ACE_wrappers.orig/TAO/tao/Codeset/Codeset_Manager_i.cpp 2009-12-14 00:42:09.538164079 +0100 ++++ ACE_wrappers/TAO/tao/Codeset/Codeset_Manager_i.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -358,7 +358,7 @@ TAO_Codeset_Manager_i::open(TAO_ORB_Core + if (fact == 0) + ACE_Service_Config::process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE ("UTF8_Latin1_Factory", +- "TAO_Codeset", ++ "libTAO_Codeset-2.0.1.so", + "_make_TAO_UTF8_Latin1_Factory", + "")); + else +@@ -375,7 +375,7 @@ TAO_Codeset_Manager_i::open(TAO_ORB_Core + if (fact == 0) + ACE_Service_Config::process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE ("UTF16_BOM_Factory", +- "TAO_Codeset", ++ "libTAO_Codeset-2.0.1.so", + "_make_TAO_UTF16_BOM_Factory", + "")); + else +diff -rupd ACE_wrappers.orig/TAO/tao/CSD_Framework/CSD_ORBInitializer.cpp ACE_wrappers/TAO/tao/CSD_Framework/CSD_ORBInitializer.cpp +--- ACE_wrappers.orig/TAO/tao/CSD_Framework/CSD_ORBInitializer.cpp 2009-12-14 00:42:09.426163271 +0100 ++++ ACE_wrappers/TAO/tao/CSD_Framework/CSD_ORBInitializer.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -13,7 +13,7 @@ ACE_RCSID (CSD, + static const ACE_TCHAR csd_poa_factory_directive[] = + ACE_DYNAMIC_SERVICE_DIRECTIVE( + "TAO_CSD_Object_Adapter_Factory", +- "TAO_CSD_Framework", ++ "libTAO_CSD_Framework-2.0.1.so", + "_make_TAO_CSD_Object_Adapter_Factory", + ""); + +diff -rupd ACE_wrappers.orig/TAO/tao/ORB_Core.cpp ACE_wrappers/TAO/tao/ORB_Core.cpp +--- ACE_wrappers.orig/TAO/tao/ORB_Core.cpp 2009-12-14 00:42:09.538164079 +0100 ++++ ACE_wrappers/TAO/tao/ORB_Core.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -1643,7 +1643,7 @@ TAO_ORB_Core::policy_factory_registry_i + { + this->configuration ()->process_directive ( + ACE_DYNAMIC_SERVICE_DIRECTIVE("PolicyFactory_Loader", +- "TAO_PI", ++ "libTAO_PI-2.0.1.so", + "_make_TAO_PolicyFactory_Loader", + "")); + loader = +@@ -1695,7 +1695,7 @@ TAO_ORB_Core::orbinitializer_registry_i + { + this->configuration ()->process_directive ( + ACE_DYNAMIC_SERVICE_DIRECTIVE ("ORBInitializer_Registry", +- "TAO_PI", ++ "libTAO_PI-2.0.1.so", + "_make_ORBInitializer_Registry", + "")); + this->orbinitializer_registry_ = +@@ -2429,7 +2429,7 @@ TAO_ORB_Core::resolve_typecodefactory_i + { + this->configuration ()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("TypeCodeFactory", +- "TAO_TypeCodeFactory", ++ "libTAO_TypeCodeFactory-2.0.1.so", + "_make_TAO_TypeCodeFactory_Loader", + "")); + loader = +@@ -2462,7 +2462,7 @@ TAO_ORB_Core::resolve_codecfactory_i (vo + { + this->configuration()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("CodecFactory", +- "TAO_CodecFactory", ++ "libTAO_CodecFactory-2.0.1.so", + "_make_TAO_CodecFactory_Loader", + "")); + loader = +@@ -2489,7 +2489,7 @@ TAO_ORB_Core::resolve_compression_manage + { + this->configuration()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("Compression", +- "TAO_Compression", ++ "libTAO_Compression-2.0.1.so", + "_make_TAO_Compression_Loader", + "")); + loader = +@@ -2515,7 +2515,7 @@ TAO_ORB_Core::resolve_poa_current_i (voi + { + this->configuration()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("TAO_POA_Current_Factory", +- "TAO_PortableServer", ++ "libTAO_PortableServer-2.0.1.so", + "_make_TAO_POA_Current_Factory", + "")); + loader = +@@ -2544,7 +2544,7 @@ TAO_ORB_Core::resolve_picurrent_i (void) + { + this->configuration ()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("PICurrent_Loader", +- "TAO_PI", ++ "libTAO_PI-2.0.1.so", + "_make_TAO_PICurrent_Loader", + "")); + loader = +@@ -2575,7 +2575,7 @@ TAO_ORB_Core::resolve_dynanyfactory_i (v + { + this->configuration ()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("DynamicAny_Loader", +- "TAO_DynamicAny", ++ "libTAO_DynamicAny-2.0.1.so", + "_make_TAO_DynamicAny_Loader", + "")); + loader = +@@ -2602,7 +2602,7 @@ TAO_ORB_Core::resolve_iormanipulation_i + { + this->configuration()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("IORManip_Loader", +- "TAO_IORManip", ++ "libTAO_IORManip-2.0.1.so", + "_make_TAO_IORManip_Loader", + "")); + loader = +@@ -2628,7 +2628,7 @@ TAO_ORB_Core::resolve_ior_table_i (void) + { + this->configuration ()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("TAO_IORTable", +- "TAO_IORTable", ++ "libTAO_IORTable-2.0.1.so", + "_make_TAO_Table_Adapter_Factory", + "")); + factory = +@@ -2663,7 +2663,7 @@ TAO_ORB_Core::resolve_monitor_i (void) + { + this->configuration ()->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("Monitor_Init", +- "TAO_Monitor", ++ "libTAO_Monitor-2.0.1.so", + "_make_TAO_Monitor_Init", + "")); + loader = +diff -rupd ACE_wrappers.orig/TAO/tao/ORBInitializer_Registry.cpp ACE_wrappers/TAO/tao/ORBInitializer_Registry.cpp +--- ACE_wrappers.orig/TAO/tao/ORBInitializer_Registry.cpp 2009-12-14 00:42:09.662163328 +0100 ++++ ACE_wrappers/TAO/tao/ORBInitializer_Registry.cpp 2009-12-14 00:59:12.219164079 +0100 +@@ -53,7 +53,7 @@ namespace PortableInterceptor + { + ACE_Service_Config::process_directive ( + ACE_DYNAMIC_SERVICE_DIRECTIVE("ORBInitializer_Registry", +- "TAO_PI", ++ "libTAO_PI-2.0.1.so", + "_make_ORBInitializer_Registry", + "")); + orbinitializer_registry_ = +diff -rupd ACE_wrappers.orig/TAO/tao/params.cpp ACE_wrappers/TAO/tao/params.cpp +--- ACE_wrappers.orig/TAO/tao/params.cpp 2009-12-14 00:42:09.170163692 +0100 ++++ ACE_wrappers/TAO/tao/params.cpp 2009-12-14 00:59:12.259162724 +0100 +@@ -59,7 +59,7 @@ TAO_ORB_Parameters::TAO_ORB_Parameters ( + , poa_factory_name_ ("TAO_Object_Adapter_Factory") + , poa_factory_directive_ + (ACE_DYNAMIC_SERVICE_DIRECTIVE("TAO_Object_Adapter_Factory", +- "TAO_PortableServer", ++ "libTAO_PortableServer-2.0.1.so", + "_make_TAO_Object_Adapter_Factory", + "")) + , forward_invocation_on_object_not_exist_ (false) +diff -rupd ACE_wrappers.orig/TAO/tao/PI/ORBInitInfo.cpp ACE_wrappers/TAO/tao/PI/ORBInitInfo.cpp +--- ACE_wrappers.orig/TAO/tao/PI/ORBInitInfo.cpp 2009-12-14 00:42:09.534163639 +0100 ++++ ACE_wrappers/TAO/tao/PI/ORBInitInfo.cpp 2009-12-14 00:59:12.223163120 +0100 +@@ -121,7 +121,7 @@ TAO_ORBInitInfo::codec_factory (void) + { + ACE_Service_Config::process_directive ( + ACE_DYNAMIC_SERVICE_DIRECTIVE("CodecFactory", +- "TAO_CodecFactory", ++ "libTAO_CodecFactory-2.0.1.so", + "_make_TAO_CodecFactory_Loader", + "")); + loader = +diff -rupd ACE_wrappers.orig/TAO/tao/PortableServer/LifespanStrategyPersistent.cpp ACE_wrappers/TAO/tao/PortableServer/LifespanStrategyPersistent.cpp +--- ACE_wrappers.orig/TAO/tao/PortableServer/LifespanStrategyPersistent.cpp 2009-12-14 00:42:09.422163150 +0100 ++++ ACE_wrappers/TAO/tao/PortableServer/LifespanStrategyPersistent.cpp 2009-12-14 00:59:12.223163120 +0100 +@@ -83,7 +83,7 @@ namespace TAO + { + ACE_Service_Config::process_directive ( + ACE_DYNAMIC_SERVICE_DIRECTIVE( +- "ImR_Client_Adapter", "TAO_ImR_Client", ++ "ImR_Client_Adapter", "libTAO_ImR_Client-2.0.1.so", + "_make_ImR_Client_Adapter_Impl", "")); + + adapter = +diff -rupd ACE_wrappers.orig/TAO/tao/RTCORBA/RT_ORBInitializer.cpp ACE_wrappers/TAO/tao/RTCORBA/RT_ORBInitializer.cpp +--- ACE_wrappers.orig/TAO/tao/RTCORBA/RT_ORBInitializer.cpp 2009-12-14 00:42:09.774162647 +0100 ++++ ACE_wrappers/TAO/tao/RTCORBA/RT_ORBInitializer.cpp 2009-12-14 00:59:12.223163120 +0100 +@@ -41,7 +41,7 @@ static const char rt_poa_factory_name[] + static const ACE_TCHAR rt_poa_factory_directive[] = + ACE_DYNAMIC_SERVICE_DIRECTIVE( + "TAO_RT_Object_Adapter_Factory", +- "TAO_RTPortableServer", ++ "libTAO_RTPortableServer-2.0.1.so", + "_make_TAO_RT_Object_Adapter_Factory", + ""); + +diff -rupd ACE_wrappers.orig/TAO/tao/TAO_Internal.cpp ACE_wrappers/TAO/tao/TAO_Internal.cpp +--- ACE_wrappers.orig/TAO/tao/TAO_Internal.cpp 2009-12-14 00:42:10.102163319 +0100 ++++ ACE_wrappers/TAO/tao/TAO_Internal.cpp 2009-12-14 00:59:12.223163120 +0100 +@@ -534,7 +534,7 @@ namespace + ACE_Service_Config::process_directive ( + ACE_DYNAMIC_SERVICE_DIRECTIVE ( + "TAO_Codeset", +- "TAO_Codeset", ++ "libTAO_Codeset-2.0.1.so", + "_make_TAO_Codeset_Manager_Factory", + "")); + +diff -rupd ACE_wrappers.orig/TAO/tests/DLL_ORB/client.cpp ACE_wrappers/TAO/tests/DLL_ORB/client.cpp +--- ACE_wrappers.orig/TAO/tests/DLL_ORB/client.cpp 2009-12-14 00:42:12.254247172 +0100 ++++ ACE_wrappers/TAO/tests/DLL_ORB/client.cpp 2009-12-14 01:19:12.378162468 +0100 +@@ -30,7 +30,7 @@ ACE_TMAIN(int, ACE_TCHAR *[]) + if (ACE_Service_Config::process_directive ( + ACE_DYNAMIC_SERVICE_DIRECTIVE( + "Client_Module", +- "Test_Client_Module", ++ "libTest_Client_Module-2.0.1.so", + "_make_Test_Client_Module", + "-k file://test.ior")) != 0) + { +diff -rupd ACE_wrappers.orig/TAO/tests/ORB_Local_Config/Bug_2612/Test.cpp ACE_wrappers/TAO/tests/ORB_Local_Config/Bug_2612/Test.cpp +--- ACE_wrappers.orig/TAO/tests/ORB_Local_Config/Bug_2612/Test.cpp 2009-12-14 00:42:13.546163086 +0100 ++++ ACE_wrappers/TAO/tests/ORB_Local_Config/Bug_2612/Test.cpp 2009-12-14 01:26:03.054181888 +0100 +@@ -13,7 +13,7 @@ ACE_TCHAR const * const scpc_loadOrb = / + // each parameter CANNOT be split into multiple quoted strings "line1" "nextline" with the expectation that + // they will be join together. Hence the long parameter 4. + ACE_DYNAMIC_SERVICE_DIRECTIVE ("testDllOrb", +- "DllOrb", ++ "DllOrb.so", + "_make_DllOrb", + "DllOrb -t 1 -ORBGestalt Local -ORBDebugLevel 3 -ORBId testORB -ORBInitRef NameService=file:///tmp/test-ns.ior -ORBDottedDecimalAddresses 1" + ); +diff -rupd ACE_wrappers.orig/TAO/tests/ORB_Local_Config/Service_Dependency/Test.cpp ACE_wrappers/TAO/tests/ORB_Local_Config/Service_Dependency/Test.cpp +--- ACE_wrappers.orig/TAO/tests/ORB_Local_Config/Service_Dependency/Test.cpp 2009-12-14 00:42:13.650166654 +0100 ++++ ACE_wrappers/TAO/tests/ORB_Local_Config/Service_Dependency/Test.cpp 2009-12-14 00:59:12.259162724 +0100 +@@ -153,7 +153,7 @@ testORBInitializer_Registry (int , ACE_T + { + one->process_directive ( + ACE_DYNAMIC_SERVICE_DIRECTIVE("ORBInitializer_Registry", +- "TAO_PI", ++ "libTAO_PI-2.0.1.so", + "_make_ORBInitializer_Registry", + "")); + oir = +@@ -252,7 +252,7 @@ testORBInitializer_Registry (int , ACE_T + + one->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("PolicyFactory_Loader", +- "TAO_PI", ++ "libTAO_PI-2.0.1.so", + "_make_TAO_PolicyFactory_Loader", + "")); + +@@ -292,7 +292,7 @@ testServiceDependency (int , ACE_TCHAR * + + int result = one->process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("TAO_Codeset", +- "TAO_Codeset", ++ "libTAO_Codeset-2.0.1.so", + "_make_TAO_Codeset_Manager_Factory", + "")); + if (result != 0) +diff -rupd ACE_wrappers.orig/TAO/tests/TransportCurrent/Framework/simple.cpp ACE_wrappers/TAO/tests/TransportCurrent/Framework/simple.cpp +--- ACE_wrappers.orig/TAO/tests/TransportCurrent/Framework/simple.cpp 2009-12-14 00:42:10.274245769 +0100 ++++ ACE_wrappers/TAO/tests/TransportCurrent/Framework/simple.cpp 2009-12-14 00:59:12.259162724 +0100 +@@ -59,7 +59,7 @@ testCurrentLoader (int, char *[]) + #if !defined (TAO_AS_STATIC_LIBS) + int ret = ACE_Service_Config::process_directive + (ACE_DYNAMIC_SERVICE_DIRECTIVE("TAO_Transport_Current_Loader", +- "TAO_Transport_Current", ++ "libTAO_Transport_Current-2.0.1.so", + "_make_TAO_Transport_Current_Loader", + "")); + ACE_ASSERT (ret == 0); --- ace-6.0.1.orig/debian/patches/49-reduce-doxygen-doc.dpatch +++ ace-6.0.1/debian/patches/49-reduce-doxygen-doc.dpatch @@ -0,0 +1,1356 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 49-reduce-doxygen-doc.dpatch by Marek Brudka +## +## DP: Enforce doxygen to generate smaller doxumentation + +@DPATCH@ +diff -Nru ACE_wrappers.orig/etc/ace.doxygen ACE_wrappers/etc/ace.doxygen +--- ACE_wrappers.orig/etc/ace.doxygen 2010-08-27 08:55:58.000000000 +0200 ++++ ACE_wrappers/etc/ace.doxygen 2010-12-22 12:30:24.662111324 +0100 +@@ -89,7 +89,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -162,11 +162,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + + # The tag DOT_PATH can be used to specify the path where the dot tool can be +@@ -177,4 +179,4 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO +diff -Nru ACE_wrappers.orig/etc/ace_inet.doxygen ACE_wrappers/etc/ace_inet.doxygen +--- ACE_wrappers.orig/etc/ace_inet.doxygen 2010-08-26 15:03:59.000000000 +0200 ++++ ACE_wrappers/etc/ace_inet.doxygen 2010-12-22 12:30:24.658111164 +0100 +@@ -79,7 +79,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + + # The tag DOT_PATH can be used to specify the path where the dot tool can be +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/etc/ace_man.doxygen ACE_wrappers/etc/ace_man.doxygen +--- ACE_wrappers.orig/etc/ace_man.doxygen 2010-07-15 14:53:52.000000000 +0200 ++++ ACE_wrappers/etc/ace_man.doxygen 2010-12-22 12:30:24.646112292 +0100 +@@ -79,7 +79,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -153,7 +153,9 @@ + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = NO +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + + # The tag DOT_PATH can be used to specify the path where the dot tool can be +diff -Nru ACE_wrappers.orig/etc/ace_qos.doxygen ACE_wrappers/etc/ace_qos.doxygen +--- ACE_wrappers.orig/etc/ace_qos.doxygen 2010-08-26 15:03:59.000000000 +0200 ++++ ACE_wrappers/etc/ace_qos.doxygen 2010-12-22 12:30:24.666112600 +0100 +@@ -79,7 +79,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + + # The tag DOT_PATH can be used to specify the path where the dot tool can be +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/etc/ace_rmcast.doxygen ACE_wrappers/etc/ace_rmcast.doxygen +--- ACE_wrappers.orig/etc/ace_rmcast.doxygen 2010-08-26 15:03:59.000000000 +0200 ++++ ACE_wrappers/etc/ace_rmcast.doxygen 2010-12-22 12:30:24.654111074 +0100 +@@ -79,7 +79,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + + # The tag DOT_PATH can be used to specify the path where the dot tool can be +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/etc/ace_ssl.doxygen ACE_wrappers/etc/ace_ssl.doxygen +--- ACE_wrappers.orig/etc/ace_ssl.doxygen 2010-08-26 15:03:59.000000000 +0200 ++++ ACE_wrappers/etc/ace_ssl.doxygen 2010-12-22 12:30:24.658111164 +0100 +@@ -79,7 +79,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + + # The tag DOT_PATH can be used to specify the path where the dot tool can be +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/etc/acexml.doxygen ACE_wrappers/etc/acexml.doxygen +--- ACE_wrappers.orig/etc/acexml.doxygen 2010-08-27 08:55:58.000000000 +0200 ++++ ACE_wrappers/etc/acexml.doxygen 2010-12-22 12:30:24.650111474 +0100 +@@ -79,7 +79,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + + # The tag DOT_PATH can be used to specify the path where the dot tool can be +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/CIAO/etc/ciao_dds4ccm.doxygen ACE_wrappers/TAO/CIAO/etc/ciao_dds4ccm.doxygen +--- ACE_wrappers.orig/TAO/CIAO/etc/ciao_dds4ccm.doxygen 2010-08-26 15:02:28.000000000 +0200 ++++ ACE_wrappers/TAO/CIAO/etc/ciao_dds4ccm.doxygen 2010-12-22 12:30:24.642111085 +0100 +@@ -78,7 +78,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -156,11 +156,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -170,4 +172,4 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO +diff -Nru ACE_wrappers.orig/TAO/CIAO/etc/ciao.doxygen ACE_wrappers/TAO/CIAO/etc/ciao.doxygen +--- ACE_wrappers.orig/TAO/CIAO/etc/ciao.doxygen 2010-08-26 15:02:28.000000000 +0200 ++++ ACE_wrappers/TAO/CIAO/etc/ciao.doxygen 2010-12-22 12:30:24.638112112 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -157,11 +157,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -171,5 +173,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/DAnCE/etc/DAnCE.doxygen ACE_wrappers/TAO/DAnCE/etc/DAnCE.doxygen +--- ACE_wrappers.orig/TAO/DAnCE/etc/DAnCE.doxygen 2010-10-18 15:04:02.000000000 +0200 ++++ ACE_wrappers/TAO/DAnCE/etc/DAnCE.doxygen 2010-12-22 12:30:20.295124601 +0100 +@@ -76,7 +76,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -157,11 +157,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -171,4 +173,4 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO +diff -Nru ACE_wrappers.orig/TAO/etc/tao_anytypecode.doxygen ACE_wrappers/TAO/etc/tao_anytypecode.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_anytypecode.doxygen 2010-08-29 11:59:08.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_anytypecode.doxygen 2010-12-22 12:30:24.602110537 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_av.doxygen ACE_wrappers/TAO/etc/tao_av.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_av.doxygen 2010-08-27 13:53:52.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_av.doxygen 2010-12-22 12:30:24.582110786 +0100 +@@ -80,7 +80,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -154,11 +154,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -168,5 +170,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_compression.doxygen ACE_wrappers/TAO/etc/tao_compression.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_compression.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_compression.doxygen 2010-12-22 12:30:20.878131085 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_cosevent.doxygen ACE_wrappers/TAO/etc/tao_cosevent.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_cosevent.doxygen 2010-08-27 13:38:20.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_cosevent.doxygen 2010-12-22 12:30:24.598111145 +0100 +@@ -80,7 +80,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -155,11 +155,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -169,5 +171,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_cosnaming.doxygen ACE_wrappers/TAO/etc/tao_cosnaming.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_cosnaming.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_cosnaming.doxygen 2010-12-22 12:30:21.223110624 +0100 +@@ -78,7 +78,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -151,11 +151,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -165,5 +167,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_cosnotification.doxygen ACE_wrappers/TAO/etc/tao_cosnotification.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_cosnotification.doxygen 2010-08-27 08:56:43.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_cosnotification.doxygen 2010-12-22 12:30:24.618111943 +0100 +@@ -85,7 +85,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -161,11 +161,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -175,5 +177,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_costime.doxygen ACE_wrappers/TAO/etc/tao_costime.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_costime.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_costime.doxygen 2010-12-22 12:30:24.630111165 +0100 +@@ -78,7 +78,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -152,11 +152,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -166,5 +168,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_costrader.doxygen ACE_wrappers/TAO/etc/tao_costrader.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_costrader.doxygen 2010-08-27 08:56:43.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_costrader.doxygen 2010-12-22 12:30:24.610111414 +0100 +@@ -80,7 +80,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -154,11 +154,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -168,5 +170,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao.doxygen ACE_wrappers/TAO/etc/tao.doxygen +--- ACE_wrappers.orig/TAO/etc/tao.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao.doxygen 2010-12-22 12:30:24.590120464 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -163,5 +165,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_dynamicany.doxygen ACE_wrappers/TAO/etc/tao_dynamicany.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_dynamicany.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_dynamicany.doxygen 2010-12-22 12:30:20.830123725 +0100 +@@ -78,7 +78,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_dynamicinterface.doxygen ACE_wrappers/TAO/etc/tao_dynamicinterface.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_dynamicinterface.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_dynamicinterface.doxygen 2010-12-22 12:30:24.634110975 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -163,5 +165,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_esf.doxygen ACE_wrappers/TAO/etc/tao_esf.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_esf.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_esf.doxygen 2010-12-22 12:30:21.518127442 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -151,11 +151,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -165,5 +167,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_ifr.doxygen ACE_wrappers/TAO/etc/tao_ifr.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_ifr.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_ifr.doxygen 2010-12-22 12:30:22.870128736 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -153,11 +153,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -167,5 +169,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_implrepo.doxygen ACE_wrappers/TAO/etc/tao_implrepo.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_implrepo.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_implrepo.doxygen 2010-12-22 12:30:24.618111943 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -152,11 +152,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -166,5 +168,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_iormanip.doxygen ACE_wrappers/TAO/etc/tao_iormanip.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_iormanip.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_iormanip.doxygen 2010-12-22 12:30:21.158130577 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_iortable.doxygen ACE_wrappers/TAO/etc/tao_iortable.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_iortable.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_iortable.doxygen 2010-12-22 12:30:24.606110976 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_pi.doxygen ACE_wrappers/TAO/etc/tao_pi.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_pi.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_pi.doxygen 2010-12-22 12:30:22.062125221 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_pi_server.doxygen ACE_wrappers/TAO/etc/tao_pi_server.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_pi_server.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_pi_server.doxygen 2010-12-22 12:30:21.526111070 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_portablegroup.doxygen ACE_wrappers/TAO/etc/tao_portablegroup.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_portablegroup.doxygen 2010-08-27 08:56:43.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_portablegroup.doxygen 2010-12-22 12:30:21.034131295 +0100 +@@ -80,7 +80,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -154,11 +154,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -168,5 +170,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_portableserver.doxygen ACE_wrappers/TAO/etc/tao_portableserver.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_portableserver.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_portableserver.doxygen 2010-12-22 12:30:21.634129344 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_rtcorba.doxygen ACE_wrappers/TAO/etc/tao_rtcorba.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_rtcorba.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_rtcorba.doxygen 2010-12-22 12:30:20.890112008 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_rtevent.doxygen ACE_wrappers/TAO/etc/tao_rtevent.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_rtevent.doxygen 2010-08-27 08:56:43.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_rtevent.doxygen 2010-12-22 12:30:24.598111145 +0100 +@@ -86,7 +86,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -161,11 +161,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -175,5 +177,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_rtportableserver.doxygen ACE_wrappers/TAO/etc/tao_rtportableserver.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_rtportableserver.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_rtportableserver.doxygen 2010-12-22 12:30:22.962130865 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -150,11 +150,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -164,5 +166,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_security.doxygen ACE_wrappers/TAO/etc/tao_security.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_security.doxygen 2010-08-27 08:56:43.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_security.doxygen 2010-12-22 12:30:24.594110497 +0100 +@@ -82,7 +82,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -156,11 +156,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -170,5 +172,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_smartproxies.doxygen ACE_wrappers/TAO/etc/tao_smartproxies.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_smartproxies.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_smartproxies.doxygen 2010-12-22 12:30:24.586111085 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -163,5 +165,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_ssliop.doxygen ACE_wrappers/TAO/etc/tao_ssliop.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_ssliop.doxygen 2010-08-27 08:56:43.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_ssliop.doxygen 2010-12-22 12:30:24.622110636 +0100 +@@ -82,7 +82,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -157,11 +157,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -171,5 +173,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_strategies.doxygen ACE_wrappers/TAO/etc/tao_strategies.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_strategies.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_strategies.doxygen 2010-12-22 12:30:24.634110975 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -149,11 +149,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -163,5 +165,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_transportcurrent.doxygen ACE_wrappers/TAO/etc/tao_transportcurrent.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_transportcurrent.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_transportcurrent.doxygen 2010-12-22 12:30:24.614111155 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -151,11 +151,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -165,5 +167,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + +diff -Nru ACE_wrappers.orig/TAO/etc/tao_ziop.doxygen ACE_wrappers/TAO/etc/tao_ziop.doxygen +--- ACE_wrappers.orig/TAO/etc/tao_ziop.doxygen 2010-08-26 15:03:34.000000000 +0200 ++++ ACE_wrappers/TAO/etc/tao_ziop.doxygen 2010-12-22 12:30:24.626110796 +0100 +@@ -77,7 +77,7 @@ + HTML_FOOTER = + HTML_STYLESHEET = + HTML_ALIGN_MEMBERS = YES +-GENERATE_HTMLHELP = YES ++GENERATE_HTMLHELP = NO + + #--------------------------------------------------------------------------- + # configuration options related to the LaTeX output +@@ -151,11 +151,13 @@ + + HAVE_DOT = YES + CLASS_GRAPH = YES +-COLLABORATION_GRAPH = YES ++COLLABORATION_GRAPH = NO + INCLUDE_GRAPH = NO + INCLUDED_BY_GRAPH = NO + GRAPHICAL_HIERARCHY = YES +-DOT_MULTI_TARGETS = YES ++DOT_MULTI_TARGETS = YES ++DOT_GRAPH_MAX_NODES = 15 ++DOT_IMAGE_FORMAT = png + MAX_DOT_GRAPH_DEPTH = 3 + # The tag DOT_PATH can be used to specify the path where the dot tool can be + # found. If left blank, it is assumed the dot tool can be found on the path. +@@ -165,5 +167,5 @@ + # Configuration::additions related to the search engine + #--------------------------------------------------------------------------- + +-SEARCHENGINE = YES ++SEARCHENGINE = NO + --- ace-6.0.1.orig/debian/patches/92-default-ACE_ROOT.dpatch +++ ace-6.0.1/debian/patches/92-default-ACE_ROOT.dpatch @@ -0,0 +1,20 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 92-default-ACE_ROOT.dpatch by Thomas Girard +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Automatically set ACE_ROOT to /usr/share/ace in MPC generated +## DP: GNUmakefile if no ACE_ROOT is set. + +@DPATCH@ +--- ACE_wrappers.orig/bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm ++++ ACE_wrappers/bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm +@@ -89,6 +89,9 @@ + "ifeq (\$(findstring k,\$(MAKEFLAGS)),k)$crlf", + " KEEP_GOING = -$crlf", + "endif$crlf$crlf", ++ "ifndef ACE_ROOT$crlf", ++ " export ACE_ROOT = /usr/lib/ace$crlf", ++ "endif$crlf", + "include \$(ACE_ROOT)/include/makeinclude/macros.GNU$crlf"; + + if ($named) { --- ace-6.0.1.orig/debian/patches/15-fix-lzo-flags.dpatch +++ ace-6.0.1/debian/patches/15-fix-lzo-flags.dpatch @@ -0,0 +1,25 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 15-fix-lzo-flags.dpatch by Thomas Girard +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: hardcode LZO headers location. + +@DPATCH@ + +diff -rupd ACE_wrappers.orig/MPC/config/lzo1.mpb ACE_wrappers/MPC/config/lzo1.mpb +--- ACE_wrappers.orig/MPC/config/lzo1.mpb 2011-02-13 20:54:12.115281001 +0100 ++++ ACE_wrappers/MPC/config/lzo1.mpb 2011-02-13 20:54:51.187281001 +0100 +@@ -8,11 +8,11 @@ feature(lzo1) { + LZO1_INCDIR + $(LZO1_ROOT)/include + } +- includes += $(LZO1_INCDIR) ++ includes += /usr/include/lzo + libpaths += $(LZO1_ROOT)/lib + specific (prop:microsoft) { + lit_libs += liblzo + } else { +- lit_libs += lzo ++ lit_libs += lzo2 + } + }