90c1c1709f
Some highlights of changes since 4.2.3: * PCRE updated to 4.3, GD to 2.0.15 * improved Apache2 support * much improved stream & URL wrapper support, output compression support * added CLI (Command Line Interface) SAPI * debug_backtrace() backported from ZendEngine2 * faster build system * huge number of other bug fixes and improvements Packaging changes: * 'pcre', 'xml', and 'session' modules folded back into main package - 'pcre' and 'xml' is required by PEAR, and 'session' is just too essential to be separate * 'gd' module now uses bundled PHP GD library, which is better integrated * PHP modules use shared distinfo when possible to ease future PHP updates * ${PREFIX}/bin/php is now CLI version, ${PREFIX}/libexec/cgi-big/php remains CGI version
29 lines
921 B
Makefile
29 lines
921 B
Makefile
# $NetBSD: Makefile,v 1.9 2003/08/31 19:56:04 jdolecek Exp $
|
|
|
|
MODNAME= xslt
|
|
PKGREVISION= # empty
|
|
CATEGORIES+= textproc
|
|
COMMENT= PHP4 extension for XSLT functions (Sablotron backend)
|
|
|
|
USE_BUILDLINK2= YES
|
|
|
|
.include "../../www/php4/Makefile.module"
|
|
|
|
CONFIGURE_ARGS+= --enable-${MODNAME}
|
|
CONFIGURE_ARGS+= --with-${MODNAME}-sablot=${BUILDLINK_PREFIX.sablotron}
|
|
CONFIGURE_ARGS+= --with-expat-dir=${BUILDLINK_PREFIX.expat}
|
|
|
|
# this is necessary so that PHP would find either the libc iconv
|
|
# or use the packaged iconv, as appropriate; see also converters/php4-iconv
|
|
CONFIGURE_ARGS+= --with-iconv-dir
|
|
CONFIGURE_ENV+= PHP_ICONV=${BUILDLINK_PREFIX.iconv:Q}
|
|
|
|
PLIST_SRC+= ${.CURDIR}/PLIST.extras
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
cd ${WRKSRC}; ${INSTALL_DATA} README.XSLT-BACKENDS ${DOCDIR}
|
|
|
|
.include "../../textproc/sablotron/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|