View | Details | Raw Unified | Return to bug 173998
Collapse All | Expand All

(-)xalan-c/Makefile (-57 / +17 lines)
Lines 2-26 Link Here
2
# $FreeBSD: ports/textproc/xalan-c/Makefile,v 1.22 2012/11/17 06:02:24 svnexp Exp $
2
# $FreeBSD: ports/textproc/xalan-c/Makefile,v 1.22 2012/11/17 06:02:24 svnexp Exp $
3
3
4
PORTNAME=	xalan-c
4
PORTNAME=	xalan-c
5
PORTVERSION=	1.10.0
5
PORTVERSION=	1.11
6
PORTREVISION=	1
7
CATEGORIES=	textproc
6
CATEGORIES=	textproc
8
MASTER_SITES=	${MASTER_SITE_APACHE_XML:S/$/:msax,docs/}
7
MASTER_SITES=	${MASTER_SITE_APACHE:S/$/:msax,docs/}
9
MASTER_SITE_SUBDIR=	${PORTNAME}/source/:msax ${PORTNAME}/docs/:docs
8
MASTER_SITE_SUBDIR=	xalan/${PORTNAME}/sources/:msax xalan/${PORTNAME}/docs/:docs
10
DISTNAME=	Xalan-C_${PORTVERSION:S/./_/g}-src:msax
9
DISTNAME=	xalan_c-${PORTVERSION}-src:msax
11
DISTFILES+=	Xalan-C_${PORTVERSION:S/./_/g}-src${EXTRACT_SUFX}:msax
10
DISTFILES+=	xalan_c-${PORTVERSION}-src${EXTRACT_SUFX}:msax
12
11
13
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	ports@FreeBSD.org
14
COMMENT=	XSLT processor from the Apache XML Project
13
COMMENT=	XSLT processor from the Apache XML Project
15
14
16
OPTIONS_DEFINE=		DEBUG DOCS EXAMPLES TRANSCODER_ICU
15
OPTIONS_DEFINE=		DEBUG DOCS EXAMPLES
17
OPTIONS_SINGLE=		LSYS
18
OPTIONS_SINGLE_LSYS=	INMEMLOC ICULOC NLSLOC
19
OPTIONS_DEFAULT=	INMEMLOC
20
INMEMLOC_DESC=		Use inmem locale system
21
ICULOC_DESC=		Use ICU locale system
22
NLSLOC_DESC=		Use nls locale system
23
TRANSCODER_ICU_DESC=	Use ICU transcoder (if used in xerces-c2)
24
16
25
.include <bsd.port.options.mk>
17
.include <bsd.port.options.mk>
26
18
Lines 31-49 Link Here
31
.endif
23
.endif
32
.if ${PORT_OPTIONS:MDOCS}
24
.if ${PORT_OPTIONS:MDOCS}
33
DISTFILES+=	${DOCS_TARBALL}:docs
25
DISTFILES+=	${DOCS_TARBALL}:docs
34
EXTRACT_ONLY=	Xalan-C_${PORTVERSION:S/./_/g}-src${EXTRACT_SUFX}
26
EXTRACT_ONLY=	xalan_c-${PORTVERSION}-src${EXTRACT_SUFX}
35
DOCS_TARBALL=	Xalan-C_${PORTVERSION:S/./_/g}-docs${EXTRACT_SUFX}
27
DOCS_TARBALL=	xalan_c-${PORTVERSION}-docs-html-nograf${EXTRACT_SUFX}
36
.endif
28
.endif
37
29
38
# we need the _extracted_ xerces-c2 port sources to build this one
30
# we need the _extracted_ xerces-c3 port sources to build this one
39
# (installed version of port is enough)
31
# (installed version of port is enough)
40
XERCESC_LIB_VER?=	27
32
XERCESC_LIB_VER?=	3
41
LIB_DEPENDS+=	xerces-c.${XERCESC_LIB_VER}:${PORTSDIR}/textproc/xerces-c2
33
LIB_DEPENDS+=	xerces-c.${XERCESC_LIB_VER}:${PORTSDIR}/textproc/xerces-c3
42
XERCESCROOT?=	${LOCALBASE}
34
XERCESCROOT?=	${LOCALBASE}
43
35
44
USE_LDCONFIG=	yes
36
USE_LDCONFIG=	yes
45
37
46
WRKSRC=			${WRKDIR}/xml-xalan/c
38
WRKSRC=			${WRKDIR}/xalan-c-${PORTVERSION}/c
47
39
48
USE_GMAKE=		yes
40
USE_GMAKE=		yes
49
MAKE_ENV+=		XALANCROOT=${WRKSRC}
41
MAKE_ENV+=		XALANCROOT=${WRKSRC}
Lines 58-97 Link Here
58
CONFIGURE_ARGS+=	-p freebsd -c ${CC} -x ${CXX} -l ${PTHREAD_LIBS} \
50
CONFIGURE_ARGS+=	-p freebsd -c ${CC} -x ${CXX} -l ${PTHREAD_LIBS} \
59
				-z ${EXTRA_CFLAGS} -I${LOCALBASE}/include -C --prefix=${PREFIX}
51
				-z ${EXTRA_CFLAGS} -I${LOCALBASE}/include -C --prefix=${PREFIX}
60
52
61
.if ${PORT_OPTIONS:MICULOC}
62
CONFIGURE_ARGS+=	-m icu
63
PLIST_SUB+=		LOCALSYS_INMEMLOC=""
64
PLIST_SUB+=		LOCALSYS_NLSLOC="@comment "
65
PORT_OPTIONS+=		TRANSCODER_ICU
66
.endif
67
68
.if ${PORT_OPTIONS:MNLSLOC}
69
CONFIGURE_ARGS+=	-m nls
70
PLIST_SUB+=		LOCALSYS_INMEMLOC="@comment "
71
PLIST_SUB+=		LOCALSYS_NLSLOC=""
72
.endif
73
74
.if ${PORT_OPTIONS:MINMEMLOC}
75
CONFIGURE_ARGS+=	-m inmem
53
CONFIGURE_ARGS+=	-m inmem
76
PLIST_SUB+=		LOCALSYS_INMEMLOC=""
77
PLIST_SUB+=		LOCALSYS_NLSLOC="@comment "
78
.endif
79
80
.if ${PORT_OPTIONS:MTRANSCODER_ICU}
81
PKGNAMESUFFIX+=		-icu
82
LIB_DEPENDS+=		icuuc:${PORTSDIR}/devel/icu
83
ICUROOT?=		${LOCALBASE}
84
CONFIGURE_ENV+=		XALAN_USE_ICU=1
85
CONFIGURE_ENV+=		ICUROOT=${ICUROOT}
86
CONFIGURE_ARGS+=	-t icu
87
MAKE_ENV+=		XALAN_USE_ICU=1
88
MAKE_ENV+=		ICUROOT=${ICUROOT}
89
PLIST_SUB+=		ICUDEP=""
90
.else
91
USE_ICONV=		yes
92
LDFLAGS+=		-L${LOCALBASE}/lib -liconv
93
PLIST_SUB+=		ICUDEP="@comment "
94
.endif
95
54
96
.if ${PORT_OPTIONS:MDEBUG}
55
.if ${PORT_OPTIONS:MDEBUG}
97
CONFIGURE_ARGS+=	-d
56
CONFIGURE_ARGS+=	-d
Lines 107-114 Link Here
107
.endif
66
.endif
108
67
109
XALANC_LIB_VERSION=	${PORTVERSION:S/.//:R}
68
XALANC_LIB_VERSION=	${PORTVERSION:S/.//:R}
110
XALANC_LIB=		libxalan-c.so.${PORTVERSION:S/.//}
69
XALANC_LIB=		libxalan-c.so.${PORTVERSION:S/.//}.0
111
XALANMSG_LIB=		libxalanMsg.so.${PORTVERSION:S/.//}
70
XALANMSG_LIB=		libxalanMsg.so.${PORTVERSION:S/.//}.0
112
PLIST_SUB+=		XALANC_LIB=${XALANC_LIB} \
71
PLIST_SUB+=		XALANC_LIB=${XALANC_LIB} \
113
				XALANMSG_LIB=${XALANMSG_LIB} \
72
				XALANMSG_LIB=${XALANMSG_LIB} \
114
				XALANC_LIB_VERSION=${XALANC_LIB_VERSION}
73
				XALANC_LIB_VERSION=${XALANC_LIB_VERSION}
Lines 154-161 Link Here
154
	cd ${DOCSDIR} && \
113
	cd ${DOCSDIR} && \
155
		${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \
114
		${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \
156
		${_DISTDIR}/${DOCS_TARBALL} ${EXTRACT_AFTER_ARGS} && \
115
		${_DISTDIR}/${DOCS_TARBALL} ${EXTRACT_AFTER_ARGS} && \
157
	${MV} ${DOCSDIR}/Xalan-C_${PORTVERSION:S/./_/g}-docs/* ${DOCSDIR} && \
116
	${MV} ${DOCSDIR}/docs/xalan-c/* ${DOCSDIR} && \
158
	${RMDIR} ${DOCSDIR}/Xalan-C_${PORTVERSION:S/./_/g}-docs
117
	${RMDIR} ${DOCSDIR}/docs/xalan-c && \
118
	${RMDIR} ${DOCSDIR}/docs
159
.endif
119
.endif
160
120
161
post-clean:
121
post-clean:
(-)xalan-c/Makefile.inc-sample-src (-1 / +1 lines)
Lines 89-95 Link Here
89
	${MKDIR} ${EXAMPLESDIR}/UseStylesheetParam
89
	${MKDIR} ${EXAMPLESDIR}/UseStylesheetParam
90
	${INSTALL_DATA} \
90
	${INSTALL_DATA} \
91
		${WRKSRC}/samples/UseStylesheetParam/foo.xml \
91
		${WRKSRC}/samples/UseStylesheetParam/foo.xml \
92
		${WRKSRC}/samples/UseStylesheetParam/foo.xsl \
92
		${WRKSRC}/samples/UseStylesheetParam/foo.xslt \
93
		${WRKSRC}/samples/UseStylesheetParam/UseStylesheetParam.cpp \
93
		${WRKSRC}/samples/UseStylesheetParam/UseStylesheetParam.cpp \
94
		${EXAMPLESDIR}/UseStylesheetParam/
94
		${EXAMPLESDIR}/UseStylesheetParam/
95
	${MKDIR} ${EXAMPLESDIR}/XalanTransform
95
	${MKDIR} ${EXAMPLESDIR}/XalanTransform
(-)xalan-c/distinfo (-4 / +4 lines)
Lines 1-4 Link Here
1
SHA256 (Xalan-C_1_10_0-src.tar.gz) = 40797957fb22797894d33a2fa0e01e3b6cc509fb89bb772c0e835ae840714cfd
1
SHA256 (xalan_c-1.11-src.tar.gz) = 4f5e7f75733d72e30a2165f9fdb9371831cf6ff0d1997b1fb64cdd5dc2126a28
2
SIZE (Xalan-C_1_10_0-src.tar.gz) = 1554940
2
SIZE (xalan_c-1.11-src.tar.gz) = 1689986
3
SHA256 (Xalan-C_1_10_0-docs.tar.gz) = 885b8334a651a26fdbd6f23ac99579a900f44edb4eb4a11e8154953c6b74debb
3
SHA256 (xalan_c-1.11-docs-html-nograf.tar.gz) = fd272adcdd161c4580d63437dcd7f11121d74dde8f793e2947cc3449a66eaa16
4
SIZE (Xalan-C_1_10_0-docs.tar.gz) = 14722948
4
SIZE (xalan_c-1.11-docs-html-nograf.tar.gz) = 5488363
(-)xalan-c/files/patch-ab (-26 lines)
Lines 1-26 Link Here
1
--- src/xalanc/Makefile.in.orig	Mon Mar  7 17:31:00 2005
2
+++ src/xalanc/Makefile.in	Mon Mar  7 17:31:57 2005
3
@@ -259,22 +259,10 @@ endif ## OS390
4
 	$(MKINSTALLDIRS) $(DESTDIR)/$(includedir)/xalanc
5
 	for hdir in $(ALL_HEADERS_DIRS); do \
6
 	  $(MKINSTALLDIRS) $(DESTDIR)/$(includedir)/xalanc/$$hdir; \
7
-	  cp $(XALANCROOT)/src/xalanc/$$hdir/*.h* \
8
+	  $(INSTALL_DATA) $(XALANCROOT)/src/xalanc/$$hdir/*.h* \
9
              $(DESTDIR)/$(includedir)/xalanc/$$hdir \
10
 	     2> /dev/null; \
11
 	done
12
-ifdef XALAN_USE_ICU
13
-	$(INSTALL_PROGRAM) $(ICUROOT)/lib/$(ICU_LIBI18N_LIB) \
14
-                           $(DESTDIR)/$(libdir)
15
-  ifneq ($PLATFORM), OS390)
16
-	rm -f $(DESTIDR)/$(libdir)/$(ICU_LIBI18N_LINK_NAME) && \
17
-		$(LN) -fs $(ICU_LIBI18N_LIB) \
18
-			$(DESTDIR)/$(libdir)/$(ICU_LIBI18N_LINK_NAME)
19
-	rm -f $(DESTDIR)/$(libdir)/$(ICU_LIBI18N_SO_NAME) && \
20
-		$(LN) -fs $(ICU_LIBI18N_LIB) \
21
-			$(DESTDIR)/$(libdir)/$(ICU_LIBI18N_SO_NAME)
22
-  endif ## OS390
23
-endif
24
 
25
 clean:	prepare doClean
26
 
(-)xalan-c/pkg-descr (-2 / +2 lines)
Lines 1-5 Link Here
1
Xalan-C++ is an implementation of XSL Transformations (XSLT) and
1
Xalan-C++ is an implementation of XSL Transformations (XSLT) and
2
XML Path Language (XPath).
2
XML Path Language (XPath).
3
It works hand in hand with the XML parser Xerces-C++ version 2.
3
It works hand in hand with the XML parser Xerces-C++ version 3.
4
4
5
WWW: http://xml.apache.org/xalan-c/index.html
5
WWW: http://xalan.apache.org/xalan-c/index.html
(-)xalan-c/pkg-plist (-25 / +8 lines)
Lines 11-24 Link Here
11
include/xalanc/Harness/XalanFileUtility.hpp
11
include/xalanc/Harness/XalanFileUtility.hpp
12
include/xalanc/Harness/XalanHarnessDefinitions.hpp
12
include/xalanc/Harness/XalanHarnessDefinitions.hpp
13
include/xalanc/Harness/XalanXMLFileReporter.hpp
13
include/xalanc/Harness/XalanXMLFileReporter.hpp
14
%%ICUDEP%%include/xalanc/ICUBridge/ICUBridge.hpp
15
%%ICUDEP%%include/xalanc/ICUBridge/ICUBridgeCleanup.hpp
16
%%ICUDEP%%include/xalanc/ICUBridge/ICUBridgeCollationCompareFunctor.hpp
17
%%ICUDEP%%include/xalanc/ICUBridge/ICUBridgeCollationCompareFunctorImpl.hpp
18
%%ICUDEP%%include/xalanc/ICUBridge/ICUBridgeDefinitions.hpp
19
%%ICUDEP%%include/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp
20
%%ICUDEP%%include/xalanc/ICUBridge/ICUXalanNumberFormatFactory.hpp
21
%%ICUDEP%%include/xalanc/ICUBridge/ICUXalanNumberFormatProxy.hpp
22
include/xalanc/Include/AIXDefinitions.hpp
14
include/xalanc/Include/AIXDefinitions.hpp
23
include/xalanc/Include/GCCDefinitions.hpp
15
include/xalanc/Include/GCCDefinitions.hpp
24
include/xalanc/Include/HPUXDefinitions.hpp
16
include/xalanc/Include/HPUXDefinitions.hpp
Lines 35-42 Link Here
35
include/xalanc/Include/XalanList.hpp
27
include/xalanc/Include/XalanList.hpp
36
include/xalanc/Include/XalanMap.hpp
28
include/xalanc/Include/XalanMap.hpp
37
include/xalanc/Include/XalanMemMgrAutoPtr.hpp
29
include/xalanc/Include/XalanMemMgrAutoPtr.hpp
38
include/xalanc/Include/XalanMemMgrHelper.hpp
39
include/xalanc/Include/XalanMemMngArrayAllocate.hpp
40
include/xalanc/Include/XalanMemoryManagement.hpp
30
include/xalanc/Include/XalanMemoryManagement.hpp
41
include/xalanc/Include/XalanObjectCache.hpp
31
include/xalanc/Include/XalanObjectCache.hpp
42
include/xalanc/Include/XalanObjectStackCache.hpp
32
include/xalanc/Include/XalanObjectStackCache.hpp
Lines 63-69 Link Here
63
include/xalanc/PlatformSupport/PlatformSupportInit.hpp
53
include/xalanc/PlatformSupport/PlatformSupportInit.hpp
64
include/xalanc/PlatformSupport/PrefixResolver.hpp
54
include/xalanc/PlatformSupport/PrefixResolver.hpp
65
include/xalanc/PlatformSupport/PrintWriter.hpp
55
include/xalanc/PlatformSupport/PrintWriter.hpp
66
include/xalanc/PlatformSupport/Resettable.hpp
56
include/xalanc/PlatformSupport/ProblemListenerBase.hpp
67
include/xalanc/PlatformSupport/ReusableArenaAllocator.hpp
57
include/xalanc/PlatformSupport/ReusableArenaAllocator.hpp
68
include/xalanc/PlatformSupport/ReusableArenaBlock.hpp
58
include/xalanc/PlatformSupport/ReusableArenaBlock.hpp
69
include/xalanc/PlatformSupport/StdBinInputStream.hpp
59
include/xalanc/PlatformSupport/StdBinInputStream.hpp
Lines 104-110 Link Here
104
include/xalanc/PlatformSupport/XalanUTF16Transcoder.hpp
94
include/xalanc/PlatformSupport/XalanUTF16Transcoder.hpp
105
include/xalanc/PlatformSupport/XalanUnicode.hpp
95
include/xalanc/PlatformSupport/XalanUnicode.hpp
106
include/xalanc/PlatformSupport/XalanXMLChar.hpp
96
include/xalanc/PlatformSupport/XalanXMLChar.hpp
107
include/xalanc/XMLSupport/FormatterToDOM.hpp
108
include/xalanc/XMLSupport/FormatterToHTML.hpp
97
include/xalanc/XMLSupport/FormatterToHTML.hpp
109
include/xalanc/XMLSupport/FormatterToNull.hpp
98
include/xalanc/XMLSupport/FormatterToNull.hpp
110
include/xalanc/XMLSupport/FormatterToText.hpp
99
include/xalanc/XMLSupport/FormatterToText.hpp
Lines 150-156 Link Here
150
include/xalanc/XPath/XNodeSetNodeProxy.hpp
139
include/xalanc/XPath/XNodeSetNodeProxy.hpp
151
include/xalanc/XPath/XNodeSetNodeProxyAllocator.hpp
140
include/xalanc/XPath/XNodeSetNodeProxyAllocator.hpp
152
include/xalanc/XPath/XNodeSetResultTreeFragProxy.hpp
141
include/xalanc/XPath/XNodeSetResultTreeFragProxy.hpp
153
include/xalanc/XPath/XNull.hpp
154
include/xalanc/XPath/XNumber.hpp
142
include/xalanc/XPath/XNumber.hpp
155
include/xalanc/XPath/XNumberAllocator.hpp
143
include/xalanc/XPath/XNumberAllocator.hpp
156
include/xalanc/XPath/XNumberBase.hpp
144
include/xalanc/XPath/XNumberBase.hpp
Lines 180-186 Link Here
180
include/xalanc/XPath/XPathParserException.hpp
168
include/xalanc/XPath/XPathParserException.hpp
181
include/xalanc/XPath/XPathProcessor.hpp
169
include/xalanc/XPath/XPathProcessor.hpp
182
include/xalanc/XPath/XPathProcessorImpl.hpp
170
include/xalanc/XPath/XPathProcessorImpl.hpp
183
include/xalanc/XPath/XSpan.hpp
184
include/xalanc/XPath/XString.hpp
171
include/xalanc/XPath/XString.hpp
185
include/xalanc/XPath/XStringAdapter.hpp
172
include/xalanc/XPath/XStringAdapter.hpp
186
include/xalanc/XPath/XStringAdapterAllocator.hpp
173
include/xalanc/XPath/XStringAdapterAllocator.hpp
Lines 306-311 Link Here
306
include/xalanc/XSLT/XalanMatchPatternData.hpp
293
include/xalanc/XSLT/XalanMatchPatternData.hpp
307
include/xalanc/XSLT/XalanMatchPatternDataAllocator.hpp
294
include/xalanc/XSLT/XalanMatchPatternDataAllocator.hpp
308
include/xalanc/XSLT/XalanNumberingResourceBundle.hpp
295
include/xalanc/XSLT/XalanNumberingResourceBundle.hpp
296
include/xalanc/XSLT/XalanParamHolder.hpp
309
include/xalanc/XSLT/XalanSourceTreeDocumentAllocator.hpp
297
include/xalanc/XSLT/XalanSourceTreeDocumentAllocator.hpp
310
include/xalanc/XSLT/XalanSourceTreeDocumentFragmentAllocator.hpp
298
include/xalanc/XSLT/XalanSourceTreeDocumentFragmentAllocator.hpp
311
include/xalanc/XSLT/XalanSpaceNodeTester.hpp
299
include/xalanc/XSLT/XalanSpaceNodeTester.hpp
Lines 457-463 Link Here
457
include/xalanc/XercesParserLiaison/XercesWrapperTypes.hpp
445
include/xalanc/XercesParserLiaison/XercesWrapperTypes.hpp
458
@dirrm include/xalanc/DOMSupport
446
@dirrm include/xalanc/DOMSupport
459
@dirrm include/xalanc/Harness
447
@dirrm include/xalanc/Harness
460
%%ICUDEP%%@dirrm include/xalanc/ICUBridge
461
@dirrm include/xalanc/Include
448
@dirrm include/xalanc/Include
462
@dirrm include/xalanc/PlatformSupport
449
@dirrm include/xalanc/PlatformSupport
463
@comment @dirrm include/xalanc/TestXPath
450
@comment @dirrm include/xalanc/TestXPath
Lines 476-490 Link Here
476
@dirrm include/xalanc/XercesParserLiaison
463
@dirrm include/xalanc/XercesParserLiaison
477
@dirrm include/xalanc
464
@dirrm include/xalanc
478
bin/Xalan
465
bin/Xalan
479
%%LOCALSYS_NLSLOC%%lib/nls/msg/en_US/XalanMsg_en_US.cat
466
lib/%%XALANMSG_LIB%%
480
%%LOCALSYS_NLSLOC%%@dirrm lib/nls/msg/en_US
467
@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so
481
%%LOCALSYS_NLSLOC%%@dirrm lib/nls/msg
468
@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%
482
%%LOCALSYS_NLSLOC%%@dirrm lib/nls
469
@unexec if test -L %D/lib/libxalanMsg.so; then rm -f %D/lib/libxalanMsg.so; fi
483
%%LOCALSYS_INMEMLOC%%lib/%%XALANMSG_LIB%%
470
@unexec if test -L %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%; then rm -f %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%; fi
484
%%LOCALSYS_INMEMLOC%%@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so
485
%%LOCALSYS_INMEMLOC%%@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%
486
%%LOCALSYS_INMEMLOC%%@unexec if test -L %D/lib/libxalanMsg.so; then rm -f %D/lib/libxalanMsg.so; fi
487
%%LOCALSYS_INMEMLOC%%@unexec if test -L %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%; then rm -f %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%; fi
488
lib/%%XALANC_LIB%%
471
lib/%%XALANC_LIB%%
489
@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so
472
@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so
490
@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%%
473
@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%%
Lines 527-533 Link Here
527
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.hpp
510
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.hpp
528
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/XPathWrapper
511
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/XPathWrapper
529
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xml
512
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xml
530
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xsl
513
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xslt
531
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/UseStylesheetParam.cpp
514
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/UseStylesheetParam.cpp
532
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/UseStylesheetParam
515
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/UseStylesheetParam
533
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xml
516
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xml

Return to bug 173998