freebsd-ports/textproc/sablotron/Makefile
Sergey Skvortsov e94f6cc5d3 Updated to 0.97; fixed php dynamic linking issue.
PR:	ports/44794, ports/44924, ports/45759, ports/46268
2003-02-27 12:20:51 +00:00

91 lines
2.3 KiB
Makefile

# New ports collection makefile for: sablotron
# Date created: 13 Nov 2000
# Whom: Sergey Skvortsov <skv@protey.ru>
#
# $FreeBSD$
#
PORTNAME= Sablot
PORTVERSION= 0.97
CATEGORIES= textproc
MASTER_SITES= http://download-2.gingerall.cz/download/sablot/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} sablot-docs-02.10.01${EXTRACT_SUFX}
MAINTAINER= skv@FreeBSD.org
COMMENT= XML toolkit implementing XSLT 1.0, XPath 1.0 and DOM Level2
LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv \
expat.4:${PORTSDIR}/textproc/expat2
# If WITH_DISABLE_META is defined sablot will not output the META html tag
#WITH_DISABLE_META= yes
# Define WITH_ICONV_TYPECAST to typecast the second parameter
# of iconv to char**
#WITH_ICONV_TYPECAST= yes
INSTALLS_SHLIB= yes
SHLIB_MAJOR= 70 # API changes counter
PLIST_SUB+= SHLIB_MAJOR="${SHLIB_MAJOR}"
CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include LIBTOOL=${LIBTOOL} \
LDFLAGS="-L${LOCALBASE}/lib -lstdc++"
USE_GMAKE= yes
USE_AUTOMAKE= yes
AUTOMAKE_ARGS= -a
USE_LIBTOOL= yes
MAN1= sabcmd.1
.include <bsd.port.pre.mk>
.if defined(WITHOUT_ADDING_META)
CONFIGURE_ARGS+= --disable-adding-meta
.endif
.if defined(WITH_ICONV_TYPECAST)
CONFIGURE_ARGS+= --enable-iconv-typecast
.endif
.if defined(WITHOUT_DOM)
CONFIGURE_ARGS+= --disable-dom
.endif
.if defined(WITHOUT_DOCUMENT_ERRORS)
CONFIGURE_ARGS+= --disable-document-errors
.endif
.if defined(WITH_CHECK_LEAKS)
CONFIGURE_ARGS+= --enable-check-leaks
.endif
.if defined(WITH_DEBUGGER)
CONFIGURE_ARGS+= --enable-debugger
.endif
WRKSRCDOC= ${WRKDIR}/sablot-docs
DOCSLIST= README README_JS RELEASE
DOCSDIRLIST= jsdom-ref sablot sxp
pre-patch:
@${PERL} -pi -e \
's!(?<=libsablot_la_LDFLAGS = -version-info )(\d+):(\d+):\1!${SHLIB_MAJOR}:$$1:${SHLIB_MAJOR}!;' \
${WRKSRC}/src/engine/Makefile.am
@${ECHO} "SUBDIRS = man" > ${WRKSRC}/doc/Makefile.am
post-install:
.ifndef(NOPORTDOCS)
@${ECHO_MSG} "===> Installing documentation for ${PKGNAME}"
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${DOCSLIST:S!^!${WRKSRC}/!} ${DOCSDIR}
.for _DOCSDIR in ${DOCSDIRLIST}
@${MKDIR} ${DOCSDIR}/${_DOCSDIR}/apidocs
@${INSTALL_DATA} ${WRKSRCDOC}/${_DOCSDIR}/*.html ${DOCSDIR}/${_DOCSDIR}
@${INSTALL_DATA} ${WRKSRCDOC}/${_DOCSDIR}/apidocs/*.css \
${WRKSRCDOC}/${_DOCSDIR}/apidocs/*.html \
${DOCSDIR}/${_DOCSDIR}/apidocs/
.endfor
.endif
.include <bsd.port.post.mk>