mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
4392416326
Template_ is a LGPL-ed high performance and fast template engine for PHP. PR: ports/90950 Submitted by: Mun-Kyo Seo & <munggo@pmy.lv>
37 lines
781 B
Makefile
37 lines
781 B
Makefile
# New ports collection makefile for: template_
|
|
# Date created: 27 Dec 2005
|
|
# Whom: Mun-Kyo Seo <munggo@pmy.lv>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= template_
|
|
PORTVERSION= 2.2.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://pmy.lv/mirror/Template_/ \
|
|
http://www.xtac.net/download/?file=
|
|
DISTNAME= Template_.2.2.3
|
|
|
|
MAINTAINER= munggo@pmy.lv
|
|
COMMENT= High performance PHP compiling template engine
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
USE_PHP= yes
|
|
WANT_PHP_WEB= yes
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
.for f in Template_.class.php Template_.compiler.php
|
|
${INSTALL_DATA} ${WRKSRC}/$f ${DATADIR}
|
|
${MKDIR} ${DATADIR}/tpl_plugin
|
|
${INSTALL_DATA} ${WRKSRC}/tpl_plugin/* ${DATADIR}/tpl_plugin
|
|
.endfor
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|