pkgsrc/www/php-FastTemplate/Makefile
joerg 8572e2517c Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv).
While going through the tree, fix some more packages which had similiar
issues with too strict conflicts, bump the revisions of those.
2006-06-04 16:26:54 +00:00

45 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.11 2006/06/04 16:26:56 joerg Exp $
DISTNAME= FastTemplate-1_1_0
PKGNAME= ${PHP_PKG_PREFIX}-FastTemplate-1.1.0
CATEGORIES= www php4
MASTER_SITES= http://www.thewebmasters.net/php/
PATCHFILES= php4.diff
PATCH_SITES= http://www.thewebmasters.net/php/FastTemplate/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.thewebmasters.net/php/FastTemplate.phtml
COMMENT= PHP extension for managing templates and variable interpolation
CONFLICTS= php-FastTemplate-[0-9]*
PHP_VERSIONS_ACCEPTED= 4
WRKSRC= ${WRKDIR}/FastTemplate
DIST_SUBDIR= ${PKGBASE}
NO_BUILD= YES
PHP_LIB_SUBDIR= lib/php
PHP_LIB_DIR= ${PREFIX}/${PHP_LIB_SUBDIR}
DOCDIR= ${PREFIX}/share/doc/html/${PKGBASE}
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
PLIST_SUBST+= PHP_LIB_SUBDIR=${PHP_LIB_SUBDIR:Q}
PLIST_SUBST+= PKGBASE=${PKGBASE:Q}
do-install:
${INSTALL_DATA_DIR} ${PHP_LIB_DIR}
${INSTALL_DATA_DIR} ${DOCDIR}
${INSTALL_DATA_DIR} ${EGDIR}/templates
${INSTALL_DATA} ${WRKSRC}/class.FastTemplate.php3 ${PHP_LIB_DIR}
${INSTALL_DATA} ${WRKSRC}/docs/FastTemplate.html ${DOCDIR}
cd ${WRKSRC}; for file in *.phtml; do \
dest=${EGDIR}/`${BASENAME} $${file} .phtml`.php; \
${INSTALL_DATA} $${file} $${dest}; \
done
${INSTALL_DATA} ${WRKSRC}/templates/*.tpl ${EGDIR}/templates
.include "../../lang/php/phpversion.mk"
.include "../../mk/bsd.pkg.mk"