165 lines
4.9 KiB
Makefile
165 lines
4.9 KiB
Makefile
# Created by: Bjoern A. Zeeb <bz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xalan-c
|
|
PORTVERSION= 1.10.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_APACHE_XML:S/$/:msax,docs/}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/source/:msax ${PORTNAME}/docs/:docs
|
|
DISTNAME= Xalan-C_${PORTVERSION:S/./_/g}-src:msax
|
|
DISTFILES+= Xalan-C_${PORTVERSION:S/./_/g}-src${EXTRACT_SUFX}:msax
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= XSLT processor from the Apache XML Project
|
|
|
|
OPTIONS_DEFINE= DEBUG DOCS EXAMPLES TRANSCODER_ICU
|
|
OPTIONS_SINGLE= LSYS
|
|
OPTIONS_SINGLE_LSYS= INMEMLOC ICULOC NLSLOC
|
|
OPTIONS_DEFAULT= INMEMLOC
|
|
INMEMLOC_DESC= Use inmem locale system
|
|
ICULOC_DESC= Use ICU locale system
|
|
NLSLOC_DESC= Use nls locale system
|
|
TRANSCODER_ICU_DESC= Use ICU transcoder (if used in xerces-c2)
|
|
|
|
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:S/./_/g}-src${EXTRACT_SUFX}
|
|
DOCS_TARBALL= Xalan-C_${PORTVERSION:S/./_/g}-docs${EXTRACT_SUFX}
|
|
.endif
|
|
|
|
# we need the _extracted_ xerces-c2 port sources to build this one
|
|
# (installed version of port is enough)
|
|
XERCESC_LIB_VER?= 27
|
|
LIB_DEPENDS+= xerces-c.${XERCESC_LIB_VER}:${PORTSDIR}/textproc/xerces-c2
|
|
XERCESCROOT?= ${LOCALBASE}
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/xml-xalan/c
|
|
|
|
USE_GMAKE= yes
|
|
MAKE_ENV+= XALANCROOT=${WRKSRC}
|
|
MAKE_ENV+= XERCESCROOT=${XERCESCROOT}
|
|
|
|
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}
|
|
|
|
.if ${PORT_OPTIONS:MICULOC}
|
|
CONFIGURE_ARGS+= -m icu
|
|
PLIST_SUB+= LOCALSYS_INMEMLOC=""
|
|
PLIST_SUB+= LOCALSYS_NLSLOC="@comment "
|
|
PORT_OPTIONS+= TRANSCODER_ICU
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNLSLOC}
|
|
CONFIGURE_ARGS+= -m nls
|
|
PLIST_SUB+= LOCALSYS_INMEMLOC="@comment "
|
|
PLIST_SUB+= LOCALSYS_NLSLOC=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MINMEMLOC}
|
|
CONFIGURE_ARGS+= -m inmem
|
|
PLIST_SUB+= LOCALSYS_INMEMLOC=""
|
|
PLIST_SUB+= LOCALSYS_NLSLOC="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTRANSCODER_ICU}
|
|
PKGNAMESUFFIX+= -icu
|
|
LIB_DEPENDS+= icuuc:${PORTSDIR}/devel/icu
|
|
ICUROOT?= ${LOCALBASE}
|
|
CONFIGURE_ENV+= XALAN_USE_ICU=1
|
|
CONFIGURE_ENV+= ICUROOT=${ICUROOT}
|
|
CONFIGURE_ARGS+= -t icu
|
|
MAKE_ENV+= XALAN_USE_ICU=1
|
|
MAKE_ENV+= ICUROOT=${ICUROOT}
|
|
PLIST_SUB+= ICUDEP=""
|
|
.else
|
|
USES+= iconv
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB}
|
|
PLIST_SUB+= ICUDEP="@comment "
|
|
.endif
|
|
|
|
.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/.//}
|
|
XALANMSG_LIB= libxalanMsg.so.${PORTVERSION:S/.//}
|
|
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}/Xalan-C_${PORTVERSION:S/./_/g}-docs/* ${DOCSDIR} && \
|
|
${RMDIR} ${DOCSDIR}/Xalan-C_${PORTVERSION:S/./_/g}-docs
|
|
.endif
|
|
|
|
post-clean:
|
|
@${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc
|
|
|
|
.include <bsd.port.mk>
|