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

(-)./Makefile (-59 / +42 lines)
Lines 1-41 Link Here
1
# New ports collection makefile for: xalan-c
1
# Created by: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net)
2
# Date created:		26 October 2002
2
# $FreeBSD: $
3
# Whom:			"Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net)
3
4
#
4
PORTNAME=		xalan-c
5
# $FreeBSD: ports/textproc/xalan-c/Makefile,v 1.20 2011/09/23 22:25:52 amdmi3 Exp $
5
PORTVERSION=		1.10.0
6
#
6
CATEGORIES=		textproc
7
# ------------------------------------------------------------------------------
7
MASTER_SITES=		${MASTER_SITE_APACHE_XML:S/$/:msax,docs/}
8
9
PORTNAME=	xalan-c
10
PORTVERSION=	1.10.0
11
CATEGORIES=	textproc
12
MASTER_SITES=	${MASTER_SITE_APACHE_XML:S/$/:msax,docs/}
13
MASTER_SITE_SUBDIR=	${PORTNAME}/source/:msax ${PORTNAME}/docs/:docs
8
MASTER_SITE_SUBDIR=	${PORTNAME}/source/:msax ${PORTNAME}/docs/:docs
14
DISTNAME=	Xalan-C_${PORTVERSION:S/./_/g}-src:msax
9
DISTNAME=		Xalan-C_${PORTVERSION:S/./_/g}-src:msax
15
DISTFILES+=	Xalan-C_${PORTVERSION:S/./_/g}-src${EXTRACT_SUFX}:msax
10
DISTFILES+=		Xalan-C_${PORTVERSION:S/./_/g}-src${EXTRACT_SUFX}:msax
16
11
17
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=		ports@FreeBSD.org
18
COMMENT=	XSLT processor from the Apache XML Project
13
COMMENT=		XSLT processor from the Apache XML Project
19
14
20
OPTIONS=	INMEM "Use inmem locale system." on \
15
OPTIONS_DEFINE=		DEBUG DOCS EXAMPLES TRANSCODER_ICU
21
		ICU "Use ICU locale system." off \
16
OPTIONS_SINGLE=		LSYS
22
		NLS "Use nls locale system." off \
17
OPTIONS_SINGLE_LSYS=	INMEMLOC ICULOC NLSLOC
23
		TRANSCODER_ICU "Use ICU transcoder (if used in xerces-c2)." off \
18
OPTIONS_DEFAULT=	INMEMLOC
24
		SAMPLES "Copy sample binaries and sources." on \
19
INMEMLOC_DESC=		Use inmem locale system
25
		PORTDOCS "Copy documentation." on \
20
ICULOC_DESC=		Use ICU locale system
26
		DEBUG "Include debugging information, do not strip." off
21
NLSLOC_DESC=		Use nls locale system
22
TRANSCODER_ICU_DESC=	Use ICU transcoder (if used in xerces-c2)
27
23
28
.include <bsd.port.pre.mk>
24
.include <bsd.port.options.mk>
29
25
30
# move this further down though portlint might not like it but without
26
# move this further down though portlint might not like it but without
31
# this I will not be able to make use of make config in the future.
27
# this I will not be able to make use of make config in the future.
32
.if defined(WITH_DEBUG)
28
.if ${PORT_OPTIONS:MDEBUG}
33
PKGNAMESUFFIX+=		-debug
29
PKGNAMESUFFIX+=		-debug
34
.endif
30
.endif
35
.if defined(WITHOUT_PORTDOCS)
31
.if ${PORT_OPTIONS:MDOCS}
36
NOPORTDOCS=	yes
37
.endif
38
.if !defined(NOPORTDOCS)
39
DISTFILES+=	${DOCS_TARBALL}:docs
32
DISTFILES+=	${DOCS_TARBALL}:docs
40
EXTRACT_ONLY=	Xalan-C_${PORTVERSION:S/./_/g}-src${EXTRACT_SUFX}
33
EXTRACT_ONLY=	Xalan-C_${PORTVERSION:S/./_/g}-src${EXTRACT_SUFX}
41
DOCS_TARBALL=	Xalan-C_${PORTVERSION:S/./_/g}-docs${EXTRACT_SUFX}
34
DOCS_TARBALL=	Xalan-C_${PORTVERSION:S/./_/g}-docs${EXTRACT_SUFX}
Lines 64-101 Link Here
64
CONFIGURE_ARGS+=	-p freebsd -c ${CC} -x ${CXX} -l ${PTHREAD_LIBS} \
57
CONFIGURE_ARGS+=	-p freebsd -c ${CC} -x ${CXX} -l ${PTHREAD_LIBS} \
65
				-z ${EXTRA_CFLAGS} -I${LOCALBASE}/include -C --prefix=${PREFIX}
58
				-z ${EXTRA_CFLAGS} -I${LOCALBASE}/include -C --prefix=${PREFIX}
66
59
67
.if defined(WITH_INMEM)
60
.if ${PORT_OPTIONS:MINMEMLOC}
68
LOCALSYS=		inmem
61
LOCALSYS=		inmem
69
.endif
62
.endif
70
.if defined(WITH_ICU)
63
.if ${PORT_OPTIONS:MICULOC}
71
LOCALSYS=		icu
64
LOCALSYS=		icu
72
.endif
65
.endif
73
.if defined(WITH_NLS)
66
.if ${PORT_OPTIONS:MNLSLOC}
74
LOCALSYS=		nls
67
LOCALSYS=		nls
75
.endif
68
.endif
76
69
77
.if !defined(LOCALSYS)
70
.if !defined(LOCALSYS)
78
CONFIGURE_ARGS+=	-m inmem
71
CONFIGURE_ARGS+=	-m inmem
79
PLIST_SUB+=		LOCALSYS_INMEM=""
72
PLIST_SUB+=		LOCALSYS_INMEMLOC=""
80
PLIST_SUB+=		LOCALSYS_NLS="@comment "
73
PLIST_SUB+=		LOCALSYS_NLSLOC="@comment "
81
.else
74
.else
82
.if (${LOCALSYS} == "icu")
75
.if (${LOCALSYS} == "icu")
83
CONFIGURE_ARGS+=	-m icu
76
CONFIGURE_ARGS+=	-m icu
84
PLIST_SUB+=		LOCALSYS_INMEM=""
77
PLIST_SUB+=		LOCALSYS_INMEMLOC=""
85
PLIST_SUB+=		LOCALSYS_NLS="@comment "
78
PLIST_SUB+=		LOCALSYS_NLSLOC="@comment "
86
WITH_TRANSCODER_ICU=	icu
79
PORT_OPTIONS+=		TRANSCODER_ICU
87
.elif (${LOCALSYS} == "nls")
80
.elif (${LOCALSYS} == "nls")
88
CONFIGURE_ARGS+=	-m nls
81
CONFIGURE_ARGS+=	-m nls
89
PLIST_SUB+=		LOCALSYS_INMEM="@comment "
82
PLIST_SUB+=		LOCALSYS_INMEMLOC="@comment "
90
PLIST_SUB+=		LOCALSYS_NLS=""
83
PLIST_SUB+=		LOCALSYS_NLSLOC=""
91
.else
84
.else
92
CONFIGURE_ARGS+=	-m inmem
85
CONFIGURE_ARGS+=	-m inmem
93
PLIST_SUB+=		LOCALSYS_INMEM=""
86
PLIST_SUB+=		LOCALSYS_INMEMLOC=""
94
PLIST_SUB+=		LOCALSYS_NLS="@comment "
87
PLIST_SUB+=		LOCALSYS_NLSLOC="@comment "
95
.endif
88
.endif
96
.endif
89
.endif
97
90
98
.if defined(WITH_TRANSCODER_ICU)
91
.if ${PORT_OPTIONS:MTRANSCODER_ICU}
99
PKGNAMESUFFIX+=		-icu
92
PKGNAMESUFFIX+=		-icu
100
LIB_DEPENDS+=		icuuc:${PORTSDIR}/devel/icu
93
LIB_DEPENDS+=		icuuc:${PORTSDIR}/devel/icu
101
ICUROOT?=		${LOCALBASE}
94
ICUROOT?=		${LOCALBASE}
Lines 111-117 Link Here
111
PLIST_SUB+=		ICUDEP="@comment "
104
PLIST_SUB+=		ICUDEP="@comment "
112
.endif
105
.endif
113
106
114
.if defined(WITH_DEBUG)
107
.if ${PORT_OPTIONS:MDEBUG}
115
CONFIGURE_ARGS+=	-d
108
CONFIGURE_ARGS+=	-d
116
STRIP=
109
STRIP=
117
.endif
110
.endif
Lines 131-159 Link Here
131
				XALANMSG_LIB=${XALANMSG_LIB} \
124
				XALANMSG_LIB=${XALANMSG_LIB} \
132
				XALANC_LIB_VERSION=${XALANC_LIB_VERSION}
125
				XALANC_LIB_VERSION=${XALANC_LIB_VERSION}
133
126
134
.if !defined(WITHOUT_SAMPLES)
127
.if ${PORT_OPTIONS:MEXAMPLES}
135
PLIST_SUB+=	NO_SAMPLES=""
136
ALL_TARGET?=	all samples
128
ALL_TARGET?=	all samples
137
SAMPLE_BINS=	CompileStylesheet DocumentBuilder ExternalFunction \
129
SAMPLE_BINS=	CompileStylesheet DocumentBuilder ExternalFunction \
138
		ParsedSourceWrappers SerializeNodeSet SimpleTransform \
130
		ParsedSourceWrappers SerializeNodeSet SimpleTransform \
139
		SimpleXPathAPI SimpleXPathCAPI StreamTransform \
131
		SimpleXPathAPI SimpleXPathCAPI StreamTransform \
140
		TraceListen TransformToXercesDOM UseStylesheetParam \
132
		TraceListen TransformToXercesDOM UseStylesheetParam \
141
		XalanTransform XalanTransformerCallback ThreadSafe
133
		XalanTransform XalanTransformerCallback ThreadSafe
142
.else
143
PLIST_SUB+=	NO_SAMPLES="@comment "
144
.endif
134
.endif
145
135
146
.if !defined(NOPORTDOCS)
136
.if ${PORT_OPTIONS:MDOCS}
147
PORTDOCS=	*
137
PORTDOCS=	*
148
.endif
138
.endif
149
139
150
SCRIPTS_ENV=	WITH_INMEM="${WITH_INMEM}" \
151
		WITH_ICU="${WITH_ICU}" \
152
		WITH_NLS="${WITH_NLS}"
153
154
pre-extract:
155
	@${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/check-config-options
156
157
post-patch:
140
post-patch:
158
	${RM} -f ${WRKSRC}/src/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp.orig \
141
	${RM} -f ${WRKSRC}/src/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp.orig \
159
		${WRKSRC}/src/xalanc/PlatformSupport/XalanArrayAllocator.hpp.orig \
142
		${WRKSRC}/src/xalanc/PlatformSupport/XalanArrayAllocator.hpp.orig \
Lines 166-175 Link Here
166
	${CHMOD} 755 ${WRKSRC}/runConfigure ${WRKSRC}/configure
149
	${CHMOD} 755 ${WRKSRC}/runConfigure ${WRKSRC}/configure
167
150
168
post-install:
151
post-install:
169
.if !defined(WITH_DEBUG)
152
.if !${PORT_OPTIONS:MDEBUG}
170
	@${STRIP_CMD} ${PREFIX}/lib/${XALANC_LIB}
153
	@${STRIP_CMD} ${PREFIX}/lib/${XALANC_LIB}
171
.endif
154
.endif
172
.if !defined(WITHOUT_SAMPLES)
155
.if ${PORT_OPTIONS:MEXAMPLES}
173
.for i in ${SAMPLE_BINS}
156
.for i in ${SAMPLE_BINS}
174
	@${INSTALL_PROGRAM} ${WRKSRC}/bin/$i ${PREFIX}/bin
157
	@${INSTALL_PROGRAM} ${WRKSRC}/bin/$i ${PREFIX}/bin
175
.endfor
158
.endfor
Lines 177-183 Link Here
177
.include "${.CURDIR}/Makefile.inc-sample-src"
160
.include "${.CURDIR}/Makefile.inc-sample-src"
178
.endif
161
.endif
179
.endif
162
.endif
180
.if !defined(NOPORTDOCS)
163
.if ${PORT_OPTIONS:MDOCS}
181
	${MKDIR} ${DOCSDIR}
164
	${MKDIR} ${DOCSDIR}
182
	cd ${DOCSDIR} && \
165
	cd ${DOCSDIR} && \
183
		${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \
166
		${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \
Lines 189-192 Link Here
189
post-clean:
172
post-clean:
190
	@${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc
173
	@${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc
191
174
192
.include <bsd.port.post.mk>
175
.include <bsd.port.mk>
(-)./pkg-plist (-102 / +102 lines)
Lines 476-490 Link Here
476
@dirrm include/xalanc/XercesParserLiaison
476
@dirrm include/xalanc/XercesParserLiaison
477
@dirrm include/xalanc
477
@dirrm include/xalanc
478
bin/Xalan
478
bin/Xalan
479
%%LOCALSYS_NLS%%lib/nls/msg/en_US/XalanMsg_en_US.cat
479
%%LOCALSYS_NLSLOC%%lib/nls/msg/en_US/XalanMsg_en_US.cat
480
%%LOCALSYS_NLS%%@dirrm lib/nls/msg/en_US
480
%%LOCALSYS_NLSLOC%%@dirrm lib/nls/msg/en_US
481
%%LOCALSYS_NLS%%@dirrm lib/nls/msg
481
%%LOCALSYS_NLSLOC%%@dirrm lib/nls/msg
482
%%LOCALSYS_NLS%%@dirrm lib/nls
482
%%LOCALSYS_NLSLOC%%@dirrm lib/nls
483
%%LOCALSYS_INMEM%%lib/%%XALANMSG_LIB%%
483
%%LOCALSYS_INMEMLOC%%lib/%%XALANMSG_LIB%%
484
%%LOCALSYS_INMEM%%@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so
484
%%LOCALSYS_INMEMLOC%%@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so
485
%%LOCALSYS_INMEM%%@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%
485
%%LOCALSYS_INMEMLOC%%@exec ln -fs %%XALANMSG_LIB%% %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%
486
%%LOCALSYS_INMEM%%@unexec if test -L %D/lib/libxalanMsg.so; then rm -f %D/lib/libxalanMsg.so; fi
486
%%LOCALSYS_INMEMLOC%%@unexec if test -L %D/lib/libxalanMsg.so; then rm -f %D/lib/libxalanMsg.so; fi
487
%%LOCALSYS_INMEM%%@unexec if test -L %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%; then rm -f %D/lib/libxalanMsg.so.%%XALANC_LIB_VERSION%%; 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%%
488
lib/%%XALANC_LIB%%
489
@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so
489
@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so
490
@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%%
490
@exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%%
Lines 494-593 Link Here
494
@comment
494
@comment
495
@comment SAMPLES
495
@comment SAMPLES
496
@comment
496
@comment
497
%%NO_SAMPLES%%bin/CompileStylesheet
497
%%PORTEXAMPLES%%bin/CompileStylesheet
498
%%NO_SAMPLES%%bin/DocumentBuilder
498
%%PORTEXAMPLES%%bin/DocumentBuilder
499
%%NO_SAMPLES%%bin/ExternalFunction
499
%%PORTEXAMPLES%%bin/ExternalFunction
500
%%NO_SAMPLES%%bin/ParsedSourceWrappers
500
%%PORTEXAMPLES%%bin/ParsedSourceWrappers
501
%%NO_SAMPLES%%bin/SerializeNodeSet
501
%%PORTEXAMPLES%%bin/SerializeNodeSet
502
%%NO_SAMPLES%%bin/SimpleTransform
502
%%PORTEXAMPLES%%bin/SimpleTransform
503
%%NO_SAMPLES%%bin/SimpleXPathAPI
503
%%PORTEXAMPLES%%bin/SimpleXPathAPI
504
%%NO_SAMPLES%%bin/SimpleXPathCAPI
504
%%PORTEXAMPLES%%bin/SimpleXPathCAPI
505
%%NO_SAMPLES%%bin/StreamTransform
505
%%PORTEXAMPLES%%bin/StreamTransform
506
%%NO_SAMPLES%%bin/ThreadSafe
506
%%PORTEXAMPLES%%bin/ThreadSafe
507
%%NO_SAMPLES%%bin/TraceListen
507
%%PORTEXAMPLES%%bin/TraceListen
508
%%NO_SAMPLES%%bin/TransformToXercesDOM
508
%%PORTEXAMPLES%%bin/TransformToXercesDOM
509
%%NO_SAMPLES%%bin/UseStylesheetParam
509
%%PORTEXAMPLES%%bin/UseStylesheetParam
510
%%NO_SAMPLES%%bin/XalanTransform
510
%%PORTEXAMPLES%%bin/XalanTransform
511
%%NO_SAMPLES%%bin/XalanTransformerCallback
511
%%PORTEXAMPLES%%bin/XalanTransformerCallback
512
@comment -----------------------------------------------------------------------
512
@comment -----------------------------------------------------------------------
513
@comment
513
@comment
514
@comment SAMPLE SRC
514
@comment SAMPLE SRC
515
@comment
515
@comment
516
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/foo.xml
516
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/foo.xml
517
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/foo.xsl
517
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/foo.xsl
518
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/XalanTransformerCallback.cpp
518
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/XalanTransformerCallback.cpp
519
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/XalanTransformerCallback
519
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/XalanTransformerCallback
520
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xml
520
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xml
521
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xsl
521
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xsl
522
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/XalanTransform.cpp
522
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XalanTransform/XalanTransform.cpp
523
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/XalanTransform
523
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/XalanTransform
524
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/foo.xml
524
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/foo.xml
525
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/TestDriver.cpp
525
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/TestDriver.cpp
526
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.cpp
526
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.cpp
527
%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.hpp
527
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.hpp
528
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/XPathWrapper
528
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/XPathWrapper
529
%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xml
529
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xml
530
%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xsl
530
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xsl
531
%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/UseStylesheetParam.cpp
531
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/UseStylesheetParam.cpp
532
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/UseStylesheetParam
532
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/UseStylesheetParam
533
%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xml
533
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xml
534
%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xsl
534
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xsl
535
%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/TransformToXercesDOM.cpp
535
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/TransformToXercesDOM.cpp
536
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/TransformToXercesDOM
536
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/TransformToXercesDOM
537
%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xml
537
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xml
538
%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xsl
538
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xsl
539
%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/TraceListen.cpp
539
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TraceListen/TraceListen.cpp
540
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/TraceListen
540
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/TraceListen
541
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xml
541
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xml
542
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xsl
542
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xsl
543
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/ThreadSafe.cpp
543
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/ThreadSafe.cpp
544
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ThreadSafe
544
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ThreadSafe
545
%%NO_SAMPLES%%%%EXAMPLESDIR%%/StreamTransform/StreamTransform.cpp
545
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/StreamTransform/StreamTransform.cpp
546
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/StreamTransform
546
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/StreamTransform
547
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/foo.xml
547
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/foo.xml
548
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/SimpleXPathCAPI.c
548
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/SimpleXPathCAPI.c
549
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleXPathCAPI
549
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleXPathCAPI
550
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/foo.xml
550
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/foo.xml
551
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/SimpleXPathAPI.cpp
551
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/SimpleXPathAPI.cpp
552
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleXPathAPI
552
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleXPathAPI
553
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xml
553
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xml
554
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xsl
554
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xsl
555
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/SimpleTransform.cpp
555
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/SimpleTransform.cpp
556
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/XalanMemoryManagerImpl.hpp
556
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/XalanMemoryManagerImpl.hpp
557
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleTransform
557
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleTransform
558
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/foo.xml
558
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/foo.xml
559
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/SerializeNodeSet.cpp
559
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/SerializeNodeSet.cpp
560
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SerializeNodeSet
560
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SerializeNodeSet
561
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xml
561
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xml
562
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xsl
562
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xsl
563
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/ParsedSourceWrappers.cpp
563
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/ParsedSourceWrappers.cpp
564
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ParsedSourceWrappers
564
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ParsedSourceWrappers
565
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/ExternalFunction.cpp
565
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/ExternalFunction.cpp
566
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xml
566
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xml
567
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xsl
567
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xsl
568
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ExternalFunction
568
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ExternalFunction
569
%%NO_SAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/DocumentBuilder.cpp
569
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/DocumentBuilder.cpp
570
%%NO_SAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/foo.xsl
570
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/foo.xsl
571
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/DocumentBuilder
571
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/DocumentBuilder
572
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/CompileStylesheet.cpp
572
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/CompileStylesheet.cpp
573
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xml
573
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xml
574
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xsl
574
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xsl
575
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo1.xml
575
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo1.xml
576
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo10.xml
576
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo10.xml
577
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo2.xml
577
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo2.xml
578
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo3.xml
578
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo3.xml
579
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo4.xml
579
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo4.xml
580
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo5.xml
580
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo5.xml
581
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo6.xml
581
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo6.xml
582
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo7.xml
582
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo7.xml
583
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo8.xml
583
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo8.xml
584
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo9.xml
584
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo9.xml
585
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/CompileStylesheet
585
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/CompileStylesheet
586
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xml
586
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xml
587
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xsl
587
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xsl
588
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xml
588
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xml
589
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xsl
589
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xsl
590
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ApacheModuleXSLT/xslt
590
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ApacheModuleXSLT/xslt
591
%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/mod_xslt.c
591
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/mod_xslt.c
592
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ApacheModuleXSLT
592
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ApacheModuleXSLT
593
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%
593
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
(-)./scripts/check-config-options (-24 lines)
Lines 1-24 Link Here
1
#!/bin/sh
2
# $FreeBSD: ports/textproc/xalan-c/scripts/check-config-options,v 1.1 2005/01/17 17:45:52 vs Exp $
3
4
rc=0
5
6
if test -n "${WITH_NLS}"; then
7
	rc=$(expr $rc + 1)
8
fi
9
if test -n "${WITH_ICU}"; then
10
	rc=$(expr $rc + 1)
11
fi
12
if test -n "${WITH_INMEM}"; then
13
	rc=$(expr $rc + 1)
14
fi
15
16
if test ${rc} -gt 1; then
17
	echo "ERROR: please re-run make config and" >&2
18
	echo "only select one of the three locale systems." >&2
19
	exit 254
20
fi
21
22
exit 0
23
24
# end

Return to bug 172433