Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

3
textproc/php-xsl/DESCR Normal file
View File

@@ -0,0 +1,3 @@
PHP is a programming language designed to be embedded into web pages.
The XSL extension implements the XSL standard, performing XSLT transformations
using the libxslt library.

9
textproc/php-xsl/MESSAGE Normal file
View File

@@ -0,0 +1,9 @@
===========================================================================
$NetBSD: MESSAGE,v 1.1.1.1 2010/03/16 15:11:58 taca Exp $
To enable this module, DOM extension must also be enabled. Make sure PHP
configuration file ${PKG_SYSCONFDIR}/php.ini contains also:
extension=dom.so
===========================================================================

20
textproc/php-xsl/Makefile Normal file
View File

@@ -0,0 +1,20 @@
# $NetBSD: Makefile,v 1.7 2012/10/25 06:56:46 asau Exp $
MODNAME= xsl
CATEGORIES+= textproc
COMMENT= PHP extension for XSLT functions
CONFLICTS= php-xsl-[0-9]*
CONFIGURE_ARGS+= --with-${MODNAME}=shared,${BUILDLINK_PREFIX.libxslt}
# uses symbols from DOM extension, so add explicit depends
DEPENDS+= ${PHP_PKG_PREFIX}-dom-[0-9]*:../../textproc/php-dom
# build uses includes of the DOM extension, so need to extract that too
EXTRACT_ELEMENTS= ${DISTNAME}/ext/${MODNAME} ${DISTNAME}/ext/dom
WRKSRC= ${WRKDIR}/${DISTNAME}/ext/${MODNAME}
.include "../../lang/php/ext.mk"
.include "../../textproc/libxslt/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"