diff options
Diffstat (limited to 'textproc/xalan-c')
-rw-r--r-- | textproc/xalan-c/Makefile | 126 | ||||
-rw-r--r-- | textproc/xalan-c/Makefile.inc-sample-src | 113 | ||||
-rw-r--r-- | textproc/xalan-c/distinfo | 4 | ||||
-rw-r--r-- | textproc/xalan-c/pkg-descr | 5 | ||||
-rw-r--r-- | textproc/xalan-c/pkg-plist | 576 |
5 files changed, 0 insertions, 824 deletions
diff --git a/textproc/xalan-c/Makefile b/textproc/xalan-c/Makefile deleted file mode 100644 index 4b7f01591572..000000000000 --- a/textproc/xalan-c/Makefile +++ /dev/null @@ -1,126 +0,0 @@ -# Created by: Bjoern A. Zeeb <bz@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= xalan-c -PORTVERSION= 1.11 -CATEGORIES= textproc -MASTER_SITES= ${MASTER_SITE_APACHE:S/$/:msax,docs/} -MASTER_SITE_SUBDIR= xalan/${PORTNAME}/sources/:msax xalan/${PORTNAME}/docs/:docs -DISTNAME= xalan_c-${PORTVERSION}-src:msax -DISTFILES+= xalan_c-${PORTVERSION}-src${EXTRACT_SUFX}:msax - -MAINTAINER= ports@FreeBSD.org -COMMENT= XSLT processor from the Apache XML Project - -OPTIONS_DEFINE= DEBUG DOCS EXAMPLES - -NO_STAGE= yes -.include <bsd.port.options.mk> - -# move this further down though portlint might not like it but without -# this I will not be able to make use of make config in the future. -.if ${PORT_OPTIONS:MDEBUG} -PKGNAMESUFFIX+= -debug -.endif -.if ${PORT_OPTIONS:MDOCS} -DISTFILES+= ${DOCS_TARBALL}:docs -EXTRACT_ONLY= xalan_c-${PORTVERSION}-src${EXTRACT_SUFX} -DOCS_TARBALL= xalan_c-${PORTVERSION}-docs-html-nograf${EXTRACT_SUFX} -.endif - -# we need the _extracted_ xerces-c3 port sources to build this one -# (installed version of port is enough) -XERCESC_LIB_VER?= 3 -LIB_DEPENDS+= libxerces-c.${XERCESC_LIB_VER}.so:${PORTSDIR}/textproc/xerces-c3 -XERCESCROOT?= ${LOCALBASE} - -USE_LDCONFIG= yes - -WRKSRC= ${WRKDIR}/xalan-c-${PORTVERSION}/c - -USES= gmake -MAKE_ENV+= XALANCROOT=${WRKSRC} -MAKE_ENV+= XERCESCROOT=${XERCESCROOT} -MAKE_JOBS_UNSAFE= - -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= runConfigure -CONFIGURE_ENV+= XALANCROOT=${WRKSRC} -CONFIGURE_ENV+= XERCESCROOT=${XERCESCROOT} -CONFIGURE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" -CONFIGURE_ARGS+= -p freebsd -c ${CC} -x ${CXX} -l ${PTHREAD_LIBS} \ - -z ${EXTRA_CFLAGS} -I${LOCALBASE}/include -C --prefix=${PREFIX} - -CONFIGURE_ARGS+= -m inmem - -.if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= -d -STRIP= -.endif - -.if defined(ARCH) && \ - (${ARCH} == "alpha" || ${ARCH} == "sparc64" || \ - ${ARCH} == "amd64" || ${ARCH} == "ia64") -# set bitsToBuild to 64 -CONFIGURE_ARGS+= -b 64 -SAMPLES_CONFIG_ARGS+= -b 64 -.endif - -XALANC_LIB_VERSION= ${PORTVERSION:S/.//:R} -XALANC_LIB= libxalan-c.so.${PORTVERSION:S/.//}.0 -XALANMSG_LIB= libxalanMsg.so.${PORTVERSION:S/.//}.0 -PLIST_SUB+= XALANC_LIB=${XALANC_LIB} \ - XALANMSG_LIB=${XALANMSG_LIB} \ - XALANC_LIB_VERSION=${XALANC_LIB_VERSION} - -.if ${PORT_OPTIONS:MEXAMPLES} -ALL_TARGET?= all samples -SAMPLE_BINS= CompileStylesheet DocumentBuilder ExternalFunction \ - ParsedSourceWrappers SerializeNodeSet SimpleTransform \ - SimpleXPathAPI SimpleXPathCAPI StreamTransform \ - TraceListen TransformToXercesDOM UseStylesheetParam \ - XalanTransform XalanTransformerCallback ThreadSafe -.endif - -.if ${PORT_OPTIONS:MDOCS} -PORTDOCS= * -.endif - -post-patch: - ${RM} -f ${WRKSRC}/src/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp.orig \ - ${WRKSRC}/src/xalanc/PlatformSupport/XalanArrayAllocator.hpp.orig \ - ${WRKSRC}/src/xalanc/XMLSupport/FormatterToText.hpp.orig \ - ${WRKSRC}/src/xalanc/XPath/ElementPrefixResolverProxy.hpp.orig \ - ${WRKSRC}/src/xalanc/XPath/NameSpace.hpp.orig \ - ${WRKSRC}/src/xalanc/XPath/XalanQNameByValue.hpp.orig \ - ${WRKSRC}/src/xalanc/XSLT/FunctionSystemProperty.hpp.orig \ - ${WRKSRC}/src/xalanc/XSLT/TopLevelArg.hpp.orig - ${CHMOD} 755 ${WRKSRC}/runConfigure ${WRKSRC}/configure - -post-install: -.if !${PORT_OPTIONS:MDEBUG} - @${STRIP_CMD} ${PREFIX}/lib/${XALANC_LIB} -.endif -.if ${PORT_OPTIONS:MEXAMPLES} -.for i in ${SAMPLE_BINS} - @${INSTALL_PROGRAM} ${WRKSRC}/bin/$i ${PREFIX}/bin -.endfor -.if exists(${.CURDIR}/Makefile.inc-sample-src) -.include "${.CURDIR}/Makefile.inc-sample-src" -.endif -.endif -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - cd ${DOCSDIR} && \ - ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ - ${_DISTDIR}/${DOCS_TARBALL} ${EXTRACT_AFTER_ARGS} && \ - ${MV} ${DOCSDIR}/docs/xalan-c/* ${DOCSDIR} && \ - ${RMDIR} ${DOCSDIR}/docs/xalan-c && \ - ${RMDIR} ${DOCSDIR}/docs -.endif - -post-clean: - @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -.include <bsd.port.mk> diff --git a/textproc/xalan-c/Makefile.inc-sample-src b/textproc/xalan-c/Makefile.inc-sample-src deleted file mode 100644 index f80689e8f027..000000000000 --- a/textproc/xalan-c/Makefile.inc-sample-src +++ /dev/null @@ -1,113 +0,0 @@ - ${MKDIR} ${EXAMPLESDIR}/ApacheModuleXSLT - ${INSTALL_DATA} \ - ${WRKSRC}/samples/ApacheModuleXSLT/mod_xslt.c \ - ${EXAMPLESDIR}/ApacheModuleXSLT/ - ${MKDIR} ${EXAMPLESDIR}/ApacheModuleXSLT/xslt - ${INSTALL_DATA} \ - ${WRKSRC}/samples/ApacheModuleXSLT/xslt/apachemod.xml \ - ${WRKSRC}/samples/ApacheModuleXSLT/xslt/apachemod.xsl \ - ${WRKSRC}/samples/ApacheModuleXSLT/xslt/foo.xml \ - ${WRKSRC}/samples/ApacheModuleXSLT/xslt/foo.xsl \ - ${EXAMPLESDIR}/ApacheModuleXSLT/xslt/ - ${MKDIR} ${EXAMPLESDIR}/CompileStylesheet - ${INSTALL_DATA} \ - ${WRKSRC}/samples/CompileStylesheet/CompileStylesheet.cpp \ - ${WRKSRC}/samples/CompileStylesheet/foo.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo.xsl \ - ${WRKSRC}/samples/CompileStylesheet/foo1.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo10.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo2.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo3.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo4.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo5.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo6.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo7.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo8.xml \ - ${WRKSRC}/samples/CompileStylesheet/foo9.xml \ - ${EXAMPLESDIR}/CompileStylesheet/ - ${MKDIR} ${EXAMPLESDIR}/DocumentBuilder - ${INSTALL_DATA} \ - ${WRKSRC}/samples/DocumentBuilder/DocumentBuilder.cpp \ - ${WRKSRC}/samples/DocumentBuilder/foo.xsl \ - ${EXAMPLESDIR}/DocumentBuilder/ - ${MKDIR} ${EXAMPLESDIR}/ExternalFunction - ${INSTALL_DATA} \ - ${WRKSRC}/samples/ExternalFunction/ExternalFunction.cpp \ - ${WRKSRC}/samples/ExternalFunction/foo.xml \ - ${WRKSRC}/samples/ExternalFunction/foo.xsl \ - ${EXAMPLESDIR}/ExternalFunction/ - ${MKDIR} ${EXAMPLESDIR}/ParsedSourceWrappers - ${INSTALL_DATA} \ - ${WRKSRC}/samples/ParsedSourceWrappers/foo.xml \ - ${WRKSRC}/samples/ParsedSourceWrappers/foo.xsl \ - ${WRKSRC}/samples/ParsedSourceWrappers/ParsedSourceWrappers.cpp \ - ${EXAMPLESDIR}/ParsedSourceWrappers/ - ${MKDIR} ${EXAMPLESDIR}/SerializeNodeSet - ${INSTALL_DATA} \ - ${WRKSRC}/samples/SerializeNodeSet/foo.xml \ - ${WRKSRC}/samples/SerializeNodeSet/SerializeNodeSet.cpp \ - ${EXAMPLESDIR}/SerializeNodeSet/ - ${MKDIR} ${EXAMPLESDIR}/SimpleTransform - ${INSTALL_DATA} \ - ${WRKSRC}/samples/SimpleTransform/foo.xml \ - ${WRKSRC}/samples/SimpleTransform/foo.xsl \ - ${WRKSRC}/samples/SimpleTransform/SimpleTransform.cpp \ - ${WRKSRC}/samples/SimpleTransform/XalanMemoryManagerImpl.hpp \ - ${EXAMPLESDIR}/SimpleTransform/ - ${MKDIR} ${EXAMPLESDIR}/SimpleXPathAPI - ${INSTALL_DATA} \ - ${WRKSRC}/samples/SimpleXPathAPI/foo.xml \ - ${WRKSRC}/samples/SimpleXPathAPI/SimpleXPathAPI.cpp \ - ${EXAMPLESDIR}/SimpleXPathAPI/ - ${MKDIR} ${EXAMPLESDIR}/SimpleXPathCAPI - ${INSTALL_DATA} \ - ${WRKSRC}/samples/SimpleXPathCAPI/foo.xml \ - ${WRKSRC}/samples/SimpleXPathCAPI/SimpleXPathCAPI.c \ - ${EXAMPLESDIR}/SimpleXPathCAPI/ - ${MKDIR} ${EXAMPLESDIR}/StreamTransform - ${INSTALL_DATA} \ - ${WRKSRC}/samples/StreamTransform/StreamTransform.cpp \ - ${EXAMPLESDIR}/StreamTransform/ - ${MKDIR} ${EXAMPLESDIR}/ThreadSafe - ${INSTALL_DATA} \ - ${WRKSRC}/samples/ThreadSafe/birds.xml \ - ${WRKSRC}/samples/ThreadSafe/birds.xsl \ - ${WRKSRC}/samples/ThreadSafe/ThreadSafe.cpp \ - ${EXAMPLESDIR}/ThreadSafe/ - ${MKDIR} ${EXAMPLESDIR}/TraceListen - ${INSTALL_DATA} \ - ${WRKSRC}/samples/TraceListen/birds.xml \ - ${WRKSRC}/samples/TraceListen/birds.xsl \ - ${WRKSRC}/samples/TraceListen/TraceListen.cpp \ - ${EXAMPLESDIR}/TraceListen/ - ${MKDIR} ${EXAMPLESDIR}/TransformToXercesDOM - ${INSTALL_DATA} \ - ${WRKSRC}/samples/TransformToXercesDOM/birds.xml \ - ${WRKSRC}/samples/TransformToXercesDOM/birds.xsl \ - ${WRKSRC}/samples/TransformToXercesDOM/TransformToXercesDOM.cpp \ - ${EXAMPLESDIR}/TransformToXercesDOM/ - ${MKDIR} ${EXAMPLESDIR}/UseStylesheetParam - ${INSTALL_DATA} \ - ${WRKSRC}/samples/UseStylesheetParam/foo.xml \ - ${WRKSRC}/samples/UseStylesheetParam/foo.xslt \ - ${WRKSRC}/samples/UseStylesheetParam/UseStylesheetParam.cpp \ - ${EXAMPLESDIR}/UseStylesheetParam/ - ${MKDIR} ${EXAMPLESDIR}/XalanTransform - ${INSTALL_DATA} \ - ${WRKSRC}/samples/XalanTransform/foo.xml \ - ${WRKSRC}/samples/XalanTransform/foo.xsl \ - ${WRKSRC}/samples/XalanTransform/XalanTransform.cpp \ - ${EXAMPLESDIR}/XalanTransform/ - ${MKDIR} ${EXAMPLESDIR}/XalanTransformerCallback - ${INSTALL_DATA} \ - ${WRKSRC}/samples/XalanTransformerCallback/foo.xml \ - ${WRKSRC}/samples/XalanTransformerCallback/foo.xsl \ - ${WRKSRC}/samples/XalanTransformerCallback/XalanTransformerCallback.cpp \ - ${EXAMPLESDIR}/XalanTransformerCallback/ - ${MKDIR} ${EXAMPLESDIR}/XPathWrapper - ${INSTALL_DATA} \ - ${WRKSRC}/samples/XPathWrapper/foo.xml \ - ${WRKSRC}/samples/XPathWrapper/TestDriver.cpp \ - ${WRKSRC}/samples/XPathWrapper/XPathWrapper.cpp \ - ${WRKSRC}/samples/XPathWrapper/XPathWrapper.hpp \ - ${EXAMPLESDIR}/XPathWrapper/ diff --git a/textproc/xalan-c/distinfo b/textproc/xalan-c/distinfo deleted file mode 100644 index 40d98032dc81..000000000000 --- a/textproc/xalan-c/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -SHA256 (xalan_c-1.11-src.tar.gz) = 4f5e7f75733d72e30a2165f9fdb9371831cf6ff0d1997b1fb64cdd5dc2126a28 -SIZE (xalan_c-1.11-src.tar.gz) = 1689986 -SHA256 (xalan_c-1.11-docs-html-nograf.tar.gz) = fd272adcdd161c4580d63437dcd7f11121d74dde8f793e2947cc3449a66eaa16 -SIZE (xalan_c-1.11-docs-html-nograf.tar.gz) = 5488363 diff --git a/textproc/xalan-c/pkg-descr b/textproc/xalan-c/pkg-descr deleted file mode 100644 index 2a79e39dbfbc..000000000000 --- a/textproc/xalan-c/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Xalan-C++ is an implementation of XSL Transformations (XSLT) and -XML Path Language (XPath). -It works hand in hand with the XML parser Xerces-C++ version 3. - -WWW: http://xalan.apache.org/xalan-c/index.html diff --git a/textproc/xalan-c/pkg-plist b/textproc/xalan-c/pkg-plist deleted file mode 100644 index f927f6acdf8a..000000000000 --- a/textproc/xalan-c/pkg-plist +++ /dev/null @@ -1,576 +0,0 @@ -include/xalanc/DOMSupport/DOMServices.hpp -include/xalanc/DOMSupport/DOMSupport.hpp -include/xalanc/DOMSupport/DOMSupportDefault.hpp -include/xalanc/DOMSupport/DOMSupportDefinitions.hpp -include/xalanc/DOMSupport/DOMSupportException.hpp -include/xalanc/DOMSupport/DOMSupportInit.hpp -include/xalanc/DOMSupport/TreeWalker.hpp -include/xalanc/DOMSupport/XalanDocumentPrefixResolver.hpp -include/xalanc/DOMSupport/XalanNamespacesStack.hpp -include/xalanc/Harness/XalanDiagnosticMemoryManager.hpp -include/xalanc/Harness/XalanFileUtility.hpp -include/xalanc/Harness/XalanHarnessDefinitions.hpp -include/xalanc/Harness/XalanXMLFileReporter.hpp -include/xalanc/Include/AIXDefinitions.hpp -include/xalanc/Include/GCCDefinitions.hpp -include/xalanc/Include/HPUXDefinitions.hpp -include/xalanc/Include/IntelDefinitions.hpp -include/xalanc/Include/OS390Definitions.hpp -include/xalanc/Include/OS400Definitions.hpp -include/xalanc/Include/PlatformDefinitions.hpp -include/xalanc/Include/STLHelper.hpp -include/xalanc/Include/SolarisDefinitions.hpp -include/xalanc/Include/TRU64Definitions.hpp -include/xalanc/Include/VCPPDefinitions.hpp -include/xalanc/Include/XalanAutoPtr.hpp -include/xalanc/Include/XalanDeque.hpp -include/xalanc/Include/XalanList.hpp -include/xalanc/Include/XalanMap.hpp -include/xalanc/Include/XalanMemMgrAutoPtr.hpp -include/xalanc/Include/XalanMemoryManagement.hpp -include/xalanc/Include/XalanObjectCache.hpp -include/xalanc/Include/XalanObjectStackCache.hpp -include/xalanc/Include/XalanSet.hpp -include/xalanc/Include/XalanVector.hpp -include/xalanc/Include/XalanVersion.hpp -include/xalanc/PlatformSupport/ArenaAllocator.hpp -include/xalanc/PlatformSupport/ArenaBlock.hpp -include/xalanc/PlatformSupport/ArenaBlockBase.hpp -include/xalanc/PlatformSupport/AttributeListImpl.hpp -include/xalanc/PlatformSupport/AttributeVectorEntry.hpp -include/xalanc/PlatformSupport/AttributeVectorEntryExtended.hpp -include/xalanc/PlatformSupport/AttributesImpl.hpp -include/xalanc/PlatformSupport/DOMStringHelper.hpp -include/xalanc/PlatformSupport/DOMStringPrintWriter.hpp -include/xalanc/PlatformSupport/DirectoryEnumerator.hpp -include/xalanc/PlatformSupport/DoubleSupport.hpp -include/xalanc/PlatformSupport/ExecutionContext.hpp -include/xalanc/PlatformSupport/FormatterListener.hpp -include/xalanc/PlatformSupport/LocalMsgIndex.hpp -include/xalanc/PlatformSupport/NamedNodeMapAttributeList.hpp -include/xalanc/PlatformSupport/NullPrintWriter.hpp -include/xalanc/PlatformSupport/PlatformSupportDefinitions.hpp -include/xalanc/PlatformSupport/PlatformSupportInit.hpp -include/xalanc/PlatformSupport/PrefixResolver.hpp -include/xalanc/PlatformSupport/PrintWriter.hpp -include/xalanc/PlatformSupport/ProblemListenerBase.hpp -include/xalanc/PlatformSupport/ReusableArenaAllocator.hpp -include/xalanc/PlatformSupport/ReusableArenaBlock.hpp -include/xalanc/PlatformSupport/StdBinInputStream.hpp -include/xalanc/PlatformSupport/StringTokenizer.hpp -include/xalanc/PlatformSupport/URISupport.hpp -include/xalanc/PlatformSupport/Writer.hpp -include/xalanc/PlatformSupport/XSLException.hpp -include/xalanc/PlatformSupport/XalanAllocator.hpp -include/xalanc/PlatformSupport/XalanArrayAllocator.hpp -include/xalanc/PlatformSupport/XalanBitmap.hpp -include/xalanc/PlatformSupport/XalanCollationServices.hpp -include/xalanc/PlatformSupport/XalanDOMStringAllocator.hpp -include/xalanc/PlatformSupport/XalanDOMStringCache.hpp -include/xalanc/PlatformSupport/XalanDOMStringHashTable.hpp -include/xalanc/PlatformSupport/XalanDOMStringPool.hpp -include/xalanc/PlatformSupport/XalanDOMStringReusableAllocator.hpp -include/xalanc/PlatformSupport/XalanDecimalFormatSymbols.hpp -include/xalanc/PlatformSupport/XalanEncodingPropertyCache.hpp -include/xalanc/PlatformSupport/XalanFStreamOutputStream.hpp -include/xalanc/PlatformSupport/XalanFileOutputStream.hpp -include/xalanc/PlatformSupport/XalanICUMessageLoader.hpp -include/xalanc/PlatformSupport/XalanInMemoryMessageLoader.hpp -include/xalanc/PlatformSupport/XalanLocator.hpp -include/xalanc/PlatformSupport/XalanMemoryManagerDefault.hpp -include/xalanc/PlatformSupport/XalanMessageLoader.hpp -include/xalanc/PlatformSupport/XalanNLSMessageLoader.hpp -include/xalanc/PlatformSupport/XalanNamespace.hpp -include/xalanc/PlatformSupport/XalanNullOutputStream.hpp -include/xalanc/PlatformSupport/XalanNumberFormat.hpp -include/xalanc/PlatformSupport/XalanOutputStream.hpp -include/xalanc/PlatformSupport/XalanOutputStreamPrintWriter.hpp -include/xalanc/PlatformSupport/XalanParsedURI.hpp -include/xalanc/PlatformSupport/XalanReferenceCountedObject.hpp -include/xalanc/PlatformSupport/XalanSimplePrefixResolver.hpp -include/xalanc/PlatformSupport/XalanStdOutputStream.hpp -include/xalanc/PlatformSupport/XalanToXercesTranscoderWrapper.hpp -include/xalanc/PlatformSupport/XalanTranscodingServices.hpp -include/xalanc/PlatformSupport/XalanUTF16Transcoder.hpp -include/xalanc/PlatformSupport/XalanUnicode.hpp -include/xalanc/PlatformSupport/XalanXMLChar.hpp -include/xalanc/XMLSupport/FormatterToHTML.hpp -include/xalanc/XMLSupport/FormatterToNull.hpp -include/xalanc/XMLSupport/FormatterToText.hpp -include/xalanc/XMLSupport/FormatterToXML.hpp -include/xalanc/XMLSupport/FormatterToXMLUnicode.hpp -include/xalanc/XMLSupport/FormatterTreeWalker.hpp -include/xalanc/XMLSupport/XMLParserLiaison.hpp -include/xalanc/XMLSupport/XMLSupportDefinitions.hpp -include/xalanc/XMLSupport/XMLSupportException.hpp -include/xalanc/XMLSupport/XMLSupportInit.hpp -include/xalanc/XMLSupport/XalanDummyIndentWriter.hpp -include/xalanc/XMLSupport/XalanFormatterWriter.hpp -include/xalanc/XMLSupport/XalanHTMLElementsProperties.hpp -include/xalanc/XMLSupport/XalanIndentWriter.hpp -include/xalanc/XMLSupport/XalanOtherEncodingWriter.hpp -include/xalanc/XMLSupport/XalanUTF16Writer.hpp -include/xalanc/XMLSupport/XalanUTF8Writer.hpp -include/xalanc/XMLSupport/XalanXMLSerializerBase.hpp -include/xalanc/XMLSupport/XalanXMLSerializerFactory.hpp -include/xalanc/XPath/ElementPrefixResolverProxy.hpp -include/xalanc/XPath/FormatterStringLengthCounter.hpp -include/xalanc/XPath/Function.hpp -include/xalanc/XPath/FunctionConcat.hpp -include/xalanc/XPath/FunctionContains.hpp -include/xalanc/XPath/FunctionID.hpp -include/xalanc/XPath/FunctionLang.hpp -include/xalanc/XPath/FunctionNamespaceURI.hpp -include/xalanc/XPath/FunctionNormalizeSpace.hpp -include/xalanc/XPath/FunctionStartsWith.hpp -include/xalanc/XPath/FunctionString.hpp -include/xalanc/XPath/FunctionSubstring.hpp -include/xalanc/XPath/FunctionSubstringAfter.hpp -include/xalanc/XPath/FunctionSubstringBefore.hpp -include/xalanc/XPath/FunctionTranslate.hpp -include/xalanc/XPath/MutableNodeRefList.hpp -include/xalanc/XPath/NameSpace.hpp -include/xalanc/XPath/NodeRefList.hpp -include/xalanc/XPath/NodeRefListBase.hpp -include/xalanc/XPath/XBoolean.hpp -include/xalanc/XPath/XNodeSet.hpp -include/xalanc/XPath/XNodeSetAllocator.hpp -include/xalanc/XPath/XNodeSetBase.hpp -include/xalanc/XPath/XNodeSetNodeProxy.hpp -include/xalanc/XPath/XNodeSetNodeProxyAllocator.hpp -include/xalanc/XPath/XNodeSetResultTreeFragProxy.hpp -include/xalanc/XPath/XNumber.hpp -include/xalanc/XPath/XNumberAllocator.hpp -include/xalanc/XPath/XNumberBase.hpp -include/xalanc/XPath/XObject.hpp -include/xalanc/XPath/XObjectFactory.hpp -include/xalanc/XPath/XObjectFactoryDefault.hpp -include/xalanc/XPath/XObjectResultTreeFragProxy.hpp -include/xalanc/XPath/XObjectResultTreeFragProxyBase.hpp -include/xalanc/XPath/XObjectResultTreeFragProxyText.hpp -include/xalanc/XPath/XObjectTypeCallback.hpp -include/xalanc/XPath/XPath.hpp -include/xalanc/XPath/XPathAllocator.hpp -include/xalanc/XPath/XPathConstructionContext.hpp -include/xalanc/XPath/XPathConstructionContextDefault.hpp -include/xalanc/XPath/XPathDefinitions.hpp -include/xalanc/XPath/XPathEnvSupport.hpp -include/xalanc/XPath/XPathEnvSupportDefault.hpp -include/xalanc/XPath/XPathEvaluator.hpp -include/xalanc/XPath/XPathExecutionContext.hpp -include/xalanc/XPath/XPathExecutionContextDefault.hpp -include/xalanc/XPath/XPathExpression.hpp -include/xalanc/XPath/XPathFactory.hpp -include/xalanc/XPath/XPathFactoryBlock.hpp -include/xalanc/XPath/XPathFactoryDefault.hpp -include/xalanc/XPath/XPathFunctionTable.hpp -include/xalanc/XPath/XPathInit.hpp -include/xalanc/XPath/XPathParserException.hpp -include/xalanc/XPath/XPathProcessor.hpp -include/xalanc/XPath/XPathProcessorImpl.hpp -include/xalanc/XPath/XString.hpp -include/xalanc/XPath/XStringAdapter.hpp -include/xalanc/XPath/XStringAdapterAllocator.hpp -include/xalanc/XPath/XStringAllocator.hpp -include/xalanc/XPath/XStringBase.hpp -include/xalanc/XPath/XStringCached.hpp -include/xalanc/XPath/XStringCachedAllocator.hpp -include/xalanc/XPath/XStringReference.hpp -include/xalanc/XPath/XStringReferenceAllocator.hpp -include/xalanc/XPath/XToken.hpp -include/xalanc/XPath/XTokenNumberAdapter.hpp -include/xalanc/XPath/XTokenNumberAdapterAllocator.hpp -include/xalanc/XPath/XTokenStringAdapter.hpp -include/xalanc/XPath/XTokenStringAdapterAllocator.hpp -include/xalanc/XPath/XUnknown.hpp -include/xalanc/XPath/XalanDocumentFragmentNodeRefListBaseProxy.hpp -include/xalanc/XPath/XalanQName.hpp -include/xalanc/XPath/XalanQNameByReference.hpp -include/xalanc/XPath/XalanQNameByValue.hpp -include/xalanc/XPath/XalanQNameByValueAllocator.hpp -include/xalanc/XPath/XalanXPathException.hpp -include/xalanc/XPathCAPI/XPathCAPI.h -include/xalanc/XSLT/AVT.hpp -include/xalanc/XSLT/AVTPart.hpp -include/xalanc/XSLT/AVTPartSimple.hpp -include/xalanc/XSLT/AVTPartXPath.hpp -include/xalanc/XSLT/Constants.hpp -include/xalanc/XSLT/CountersTable.hpp -include/xalanc/XSLT/DecimalToRoman.hpp -include/xalanc/XSLT/ElemApplyImport.hpp -include/xalanc/XSLT/ElemApplyTemplates.hpp -include/xalanc/XSLT/ElemAttribute.hpp -include/xalanc/XSLT/ElemAttributeSet.hpp -include/xalanc/XSLT/ElemCallTemplate.hpp -include/xalanc/XSLT/ElemChoose.hpp -include/xalanc/XSLT/ElemComment.hpp -include/xalanc/XSLT/ElemCopy.hpp -include/xalanc/XSLT/ElemCopyOf.hpp -include/xalanc/XSLT/ElemDecimalFormat.hpp -include/xalanc/XSLT/ElemElement.hpp -include/xalanc/XSLT/ElemEmpty.hpp -include/xalanc/XSLT/ElemExtensionCall.hpp -include/xalanc/XSLT/ElemFallback.hpp -include/xalanc/XSLT/ElemForEach.hpp -include/xalanc/XSLT/ElemForwardCompatible.hpp -include/xalanc/XSLT/ElemIf.hpp -include/xalanc/XSLT/ElemLiteralResult.hpp -include/xalanc/XSLT/ElemMessage.hpp -include/xalanc/XSLT/ElemNumber.hpp -include/xalanc/XSLT/ElemOtherwise.hpp -include/xalanc/XSLT/ElemPI.hpp -include/xalanc/XSLT/ElemParam.hpp -include/xalanc/XSLT/ElemSort.hpp -include/xalanc/XSLT/ElemTemplate.hpp -include/xalanc/XSLT/ElemTemplateElement.hpp -include/xalanc/XSLT/ElemText.hpp -include/xalanc/XSLT/ElemTextLiteral.hpp -include/xalanc/XSLT/ElemUse.hpp -include/xalanc/XSLT/ElemValueOf.hpp -include/xalanc/XSLT/ElemVariable.hpp -include/xalanc/XSLT/ElemWhen.hpp -include/xalanc/XSLT/ElemWithParam.hpp -include/xalanc/XSLT/ExtensionFunctionHandler.hpp -include/xalanc/XSLT/ExtensionNSHandler.hpp -include/xalanc/XSLT/FunctionCurrent.hpp -include/xalanc/XSLT/FunctionDocument.hpp -include/xalanc/XSLT/FunctionElementAvailable.hpp -include/xalanc/XSLT/FunctionFormatNumber.hpp -include/xalanc/XSLT/FunctionFunctionAvailable.hpp -include/xalanc/XSLT/FunctionGenerateID.hpp -include/xalanc/XSLT/FunctionKey.hpp -include/xalanc/XSLT/FunctionSystemProperty.hpp -include/xalanc/XSLT/FunctionUnparsedEntityURI.hpp -include/xalanc/XSLT/GenerateEvent.hpp -include/xalanc/XSLT/KeyDeclaration.hpp -include/xalanc/XSLT/KeyTable.hpp -include/xalanc/XSLT/NamespacesHandler.hpp -include/xalanc/XSLT/NodeSortKey.hpp -include/xalanc/XSLT/NodeSorter.hpp -include/xalanc/XSLT/OutputContextStack.hpp -include/xalanc/XSLT/ProblemListener.hpp -include/xalanc/XSLT/ProblemListenerDefault.hpp -include/xalanc/XSLT/ResultNamespacesStack.hpp -include/xalanc/XSLT/SelectionEvent.hpp -include/xalanc/XSLT/Stylesheet.hpp -include/xalanc/XSLT/StylesheetConstructionContext.hpp -include/xalanc/XSLT/StylesheetConstructionContextDefault.hpp -include/xalanc/XSLT/StylesheetExecutionContext.hpp -include/xalanc/XSLT/StylesheetExecutionContextDefault.hpp -include/xalanc/XSLT/StylesheetHandler.hpp -include/xalanc/XSLT/StylesheetRoot.hpp -include/xalanc/XSLT/TopLevelArg.hpp -include/xalanc/XSLT/TraceListener.hpp -include/xalanc/XSLT/TraceListenerDefault.hpp -include/xalanc/XSLT/TracerEvent.hpp -include/xalanc/XSLT/VariablesStack.hpp -include/xalanc/XSLT/XResultTreeFrag.hpp -include/xalanc/XSLT/XResultTreeFragAllocator.hpp -include/xalanc/XSLT/XSLTDefinitions.hpp -include/xalanc/XSLT/XSLTEngineImpl.hpp -include/xalanc/XSLT/XSLTInit.hpp -include/xalanc/XSLT/XSLTInputSource.hpp -include/xalanc/XSLT/XSLTProcessor.hpp -include/xalanc/XSLT/XSLTProcessorEnvSupport.hpp -include/xalanc/XSLT/XSLTProcessorEnvSupportDefault.hpp -include/xalanc/XSLT/XSLTProcessorException.hpp -include/xalanc/XSLT/XSLTResultTarget.hpp -include/xalanc/XSLT/XalanAVTAllocator.hpp -include/xalanc/XSLT/XalanAVTPartSimpleAllocator.hpp -include/xalanc/XSLT/XalanAVTPartXPathAllocator.hpp -include/xalanc/XSLT/XalanElemApplyTemplatesAllocator.hpp -include/xalanc/XSLT/XalanElemAttributeAllocator.hpp -include/xalanc/XSLT/XalanElemAttributeSetAllocator.hpp -include/xalanc/XSLT/XalanElemCallTemplateAllocator.hpp -include/xalanc/XSLT/XalanElemElementAllocator.hpp -include/xalanc/XSLT/XalanElemEmptyAllocator.hpp -include/xalanc/XSLT/XalanElemLiteralResultAllocator.hpp -include/xalanc/XSLT/XalanElemTemplateAllocator.hpp -include/xalanc/XSLT/XalanElemTextAllocator.hpp -include/xalanc/XSLT/XalanElemTextLiteralAllocator.hpp -include/xalanc/XSLT/XalanElemValueOfAllocator.hpp -include/xalanc/XSLT/XalanElemVariableAllocator.hpp -include/xalanc/XSLT/XalanMatchPatternData.hpp -include/xalanc/XSLT/XalanMatchPatternDataAllocator.hpp -include/xalanc/XSLT/XalanNumberingResourceBundle.hpp -include/xalanc/XSLT/XalanParamHolder.hpp -include/xalanc/XSLT/XalanSourceTreeDocumentAllocator.hpp -include/xalanc/XSLT/XalanSourceTreeDocumentFragmentAllocator.hpp -include/xalanc/XSLT/XalanSpaceNodeTester.hpp -include/xalanc/XalanDOM/XalanAttr.hpp -include/xalanc/XalanDOM/XalanCDATASection.hpp -include/xalanc/XalanDOM/XalanCharacterData.hpp -include/xalanc/XalanDOM/XalanComment.hpp -include/xalanc/XalanDOM/XalanDOMDefinitions.hpp -include/xalanc/XalanDOM/XalanDOMException.hpp -include/xalanc/XalanDOM/XalanDOMImplementation.hpp -include/xalanc/XalanDOM/XalanDOMInit.hpp -include/xalanc/XalanDOM/XalanDOMString.hpp -include/xalanc/XalanDOM/XalanDocument.hpp -include/xalanc/XalanDOM/XalanDocumentFragment.hpp -include/xalanc/XalanDOM/XalanDocumentType.hpp -include/xalanc/XalanDOM/XalanElement.hpp -include/xalanc/XalanDOM/XalanEmptyNamedNodeMap.hpp -include/xalanc/XalanDOM/XalanEntity.hpp -include/xalanc/XalanDOM/XalanEntityReference.hpp -include/xalanc/XalanDOM/XalanNamedNodeMap.hpp -include/xalanc/XalanDOM/XalanNode.hpp -include/xalanc/XalanDOM/XalanNodeList.hpp -include/xalanc/XalanDOM/XalanNodeListDummy.hpp -include/xalanc/XalanDOM/XalanNodeListSurrogate.hpp -include/xalanc/XalanDOM/XalanNotation.hpp -include/xalanc/XalanDOM/XalanProcessingInstruction.hpp -include/xalanc/XalanDOM/XalanText.hpp -include/xalanc/XalanEXSLT/XalanEXSLTCommon.hpp -include/xalanc/XalanEXSLT/XalanEXSLTCommonImpl.hpp -include/xalanc/XalanEXSLT/XalanEXSLTDateTime.hpp -include/xalanc/XalanEXSLT/XalanEXSLTDateTimeImpl.hpp -include/xalanc/XalanEXSLT/XalanEXSLTDefinitions.hpp -include/xalanc/XalanEXSLT/XalanEXSLTDynamic.hpp -include/xalanc/XalanEXSLT/XalanEXSLTDynamicImpl.hpp -include/xalanc/XalanEXSLT/XalanEXSLTMath.hpp -include/xalanc/XalanEXSLT/XalanEXSLTMathImpl.hpp -include/xalanc/XalanEXSLT/XalanEXSLTSet.hpp -include/xalanc/XalanEXSLT/XalanEXSLTSetImpl.hpp -include/xalanc/XalanEXSLT/XalanEXSLTString.hpp -include/xalanc/XalanEXSLT/XalanEXSLTStringImpl.hpp -include/xalanc/XalanExtensions/FunctionDifference.hpp -include/xalanc/XalanExtensions/FunctionDistinct.hpp -include/xalanc/XalanExtensions/FunctionEvaluate.hpp -include/xalanc/XalanExtensions/FunctionHasSameNodes.hpp -include/xalanc/XalanExtensions/FunctionIntersection.hpp -include/xalanc/XalanExtensions/FunctionNodeSet.hpp -include/xalanc/XalanExtensions/XalanExtensions.hpp -include/xalanc/XalanExtensions/XalanExtensionsDefinitions.hpp -include/xalanc/XalanSourceTree/FormatterToSourceTree.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeAttr.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeAttrNS.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeAttributeAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeAttributeNSAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeComment.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeCommentAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeContentHandler.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeDOMSupport.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeDefinitions.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeDocument.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeDocumentFragment.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElement.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElementA.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElementAAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElementANS.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElementANSAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElementNA.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElementNAAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElementNANS.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeElementNANSAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeHelper.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeInit.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeParserLiaison.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeProcessingInstruction.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeProcessingInstructionAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeText.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeTextAllocator.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeTextIWS.hpp -include/xalanc/XalanSourceTree/XalanSourceTreeTextIWSAllocator.hpp -include/xalanc/XalanTransformer/XalanCAPI.h -include/xalanc/XalanTransformer/XalanCompiledStylesheet.hpp -include/xalanc/XalanTransformer/XalanCompiledStylesheetDefault.hpp -include/xalanc/XalanTransformer/XalanDefaultDocumentBuilder.hpp -include/xalanc/XalanTransformer/XalanDefaultParsedSource.hpp -include/xalanc/XalanTransformer/XalanDocumentBuilder.hpp -include/xalanc/XalanTransformer/XalanParsedSource.hpp -include/xalanc/XalanTransformer/XalanSourceTreeWrapperParsedSource.hpp -include/xalanc/XalanTransformer/XalanTransformer.hpp -include/xalanc/XalanTransformer/XalanTransformerDefinitions.hpp -include/xalanc/XalanTransformer/XalanTransformerOutputStream.hpp -include/xalanc/XalanTransformer/XalanTransformerProblemListener.hpp -include/xalanc/XalanTransformer/XercesDOMParsedSource.hpp -include/xalanc/XalanTransformer/XercesDOMWrapperParsedSource.hpp -include/xalanc/XercesParserLiaison/Deprecated/FormatterToDeprecatedXercesDOM.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesAttrBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesAttributeBridgeAllocator.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesBridgeHelper.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesBridgeNavigator.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesBridgeTypes.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesCDATASectionBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesCommentBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesDOMImplementationBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesDOM_NodeHack.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesDocumentBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesDocumentFragmentBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesDocumentTypeBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesElementBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesElementBridgeAllocator.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesEntityBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesEntityReferenceBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesNamedNodeMapBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesNodeListBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesNotationBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesProcessingInstructionBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesTextBridge.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesTextBridgeAllocator.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesToXalanNodeMap.hpp -include/xalanc/XercesParserLiaison/Deprecated/XercesTreeWalker.hpp -include/xalanc/XercesParserLiaison/FormatterToXercesDOM.hpp -include/xalanc/XercesParserLiaison/XercesAttrWrapper.hpp -include/xalanc/XercesParserLiaison/XercesAttrWrapperAllocator.hpp -include/xalanc/XercesParserLiaison/XercesCDATASectionWrapper.hpp -include/xalanc/XercesParserLiaison/XercesCommentWrapper.hpp -include/xalanc/XercesParserLiaison/XercesDOMException.hpp -include/xalanc/XercesParserLiaison/XercesDOMFormatterWalker.hpp -include/xalanc/XercesParserLiaison/XercesDOMImplementationWrapper.hpp -include/xalanc/XercesParserLiaison/XercesDOMSupport.hpp -include/xalanc/XercesParserLiaison/XercesDOMWalker.hpp -include/xalanc/XercesParserLiaison/XercesDOMWrapperException.hpp -include/xalanc/XercesParserLiaison/XercesDocumentTypeWrapper.hpp -include/xalanc/XercesParserLiaison/XercesDocumentWrapper.hpp -include/xalanc/XercesParserLiaison/XercesElementWrapper.hpp -include/xalanc/XercesParserLiaison/XercesElementWrapperAllocator.hpp -include/xalanc/XercesParserLiaison/XercesEntityReferenceWrapper.hpp -include/xalanc/XercesParserLiaison/XercesEntityWrapper.hpp -include/xalanc/XercesParserLiaison/XercesLiaisonXalanDOMStringPool.hpp -include/xalanc/XercesParserLiaison/XercesNamedNodeMapAttributeList.hpp -include/xalanc/XercesParserLiaison/XercesNamedNodeMapWrapper.hpp -include/xalanc/XercesParserLiaison/XercesNodeListWrapper.hpp -include/xalanc/XercesParserLiaison/XercesNotationWrapper.hpp -include/xalanc/XercesParserLiaison/XercesParserLiaison.hpp -include/xalanc/XercesParserLiaison/XercesParserLiaisonDefinitions.hpp -include/xalanc/XercesParserLiaison/XercesProcessingInstructionWrapper.hpp -include/xalanc/XercesParserLiaison/XercesTextWrapper.hpp -include/xalanc/XercesParserLiaison/XercesTextWrapperAllocator.hpp -include/xalanc/XercesParserLiaison/XercesWrapperHelper.hpp -include/xalanc/XercesParserLiaison/XercesWrapperNavigator.hpp -include/xalanc/XercesParserLiaison/XercesWrapperNavigatorAllocator.hpp -include/xalanc/XercesParserLiaison/XercesWrapperToXalanNodeMap.hpp -include/xalanc/XercesParserLiaison/XercesWrapperTypes.hpp -@dirrm include/xalanc/DOMSupport -@dirrm include/xalanc/Harness -@dirrm include/xalanc/Include -@dirrm include/xalanc/PlatformSupport -@comment @dirrm include/xalanc/TestXPath -@comment @dirrm include/xalanc/Utils/MsgCreator -@comment @dirrm include/xalanc/Utils/XalanMsgLib -@dirrm include/xalanc/XMLSupport -@dirrm include/xalanc/XPath -@dirrm include/xalanc/XPathCAPI -@dirrm include/xalanc/XSLT -@dirrm include/xalanc/XalanDOM -@dirrm include/xalanc/XalanEXSLT -@dirrm include/xalanc/XalanExtensions -@dirrm include/xalanc/XalanSourceTree -@dirrm include/xalanc/XalanTransformer -@dirrm include/xalanc/XercesParserLiaison/Deprecated -@dirrm include/xalanc/XercesParserLiaison -@dirrm include/xalanc -bin/Xalan -lib/%%XALANMSG_LIB%% -@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so -@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%% -@unexec if test -L %D/lib/libxalanMsg.so; then rm -f %D/lib/libxalanMsg.so; fi -@unexec if test -L %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%; then rm -f %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%; fi -lib/%%XALANC_LIB%% -@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so -@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%% -@unexec if test -L %D/lib/libxalan-c.so; then rm -f %D/lib/libxalan-c.so; fi -@unexec if test -L %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%%; then rm -f %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%%; fi -@comment ----------------------------------------------------------------------- -@comment -@comment SAMPLES -@comment -%%PORTEXAMPLES%%bin/CompileStylesheet -%%PORTEXAMPLES%%bin/DocumentBuilder -%%PORTEXAMPLES%%bin/ExternalFunction -%%PORTEXAMPLES%%bin/ParsedSourceWrappers -%%PORTEXAMPLES%%bin/SerializeNodeSet -%%PORTEXAMPLES%%bin/SimpleTransform -%%PORTEXAMPLES%%bin/SimpleXPathAPI -%%PORTEXAMPLES%%bin/SimpleXPathCAPI -%%PORTEXAMPLES%%bin/StreamTransform -%%PORTEXAMPLES%%bin/ThreadSafe -%%PORTEXAMPLES%%bin/TraceListen -%%PORTEXAMPLES%%bin/TransformToXercesDOM -%%PORTEXAMPLES%%bin/UseStylesheetParam -%%PORTEXAMPLES%%bin/XalanTransform -%%PORTEXAMPLES%%bin/XalanTransformerCallback -@comment ----------------------------------------------------------------------- -@comment -@comment SAMPLE SRC -@comment -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/foo.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/XalanTransformerCallback.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/XalanTransformerCallback -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransform/XalanTransform.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/XalanTransform -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/TestDriver.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.hpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/XPathWrapper -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xslt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/UseStylesheetParam.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/UseStylesheetParam -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/TransformToXercesDOM.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/TransformToXercesDOM -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TraceListen/TraceListen.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/TraceListen -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/ThreadSafe.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ThreadSafe -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/StreamTransform/StreamTransform.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/StreamTransform -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/SimpleXPathCAPI.c -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleXPathCAPI -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/SimpleXPathAPI.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleXPathAPI -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/SimpleTransform.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/XalanMemoryManagerImpl.hpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleTransform -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/SerializeNodeSet.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SerializeNodeSet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/ParsedSourceWrappers.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ParsedSourceWrappers -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/ExternalFunction.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xsl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ExternalFunction -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/DocumentBuilder.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/foo.xsl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/DocumentBuilder -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/CompileStylesheet.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo3.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo4.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo5.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo6.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo7.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo8.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo9.xml -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/CompileStylesheet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xsl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xsl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ApacheModuleXSLT/xslt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/mod_xslt.c -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ApacheModuleXSLT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% |