diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2002-03-27 20:49:17 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2002-03-27 20:49:17 +0000 |
commit | b4c77a8441cf1c7a12601bd56cf30a63b6fcff08 (patch) | |
tree | 63a9a3c599d002566a4503eca3bcae33f2d60522 /www/php-templates | |
parent | b30ae8637bcad833fb2b89bf55a73d3df263f4ba (diff) |
Notes
Diffstat (limited to 'www/php-templates')
-rw-r--r-- | www/php-templates/Makefile | 10 | ||||
-rw-r--r-- | www/php-templates/pkg-descr | 10 | ||||
-rw-r--r-- | www/php-templates/pkg-message | 5 | ||||
-rw-r--r-- | www/php-templates/pkg-plist | 1 |
4 files changed, 20 insertions, 6 deletions
diff --git a/www/php-templates/Makefile b/www/php-templates/Makefile index bb609ad99635..df0ee39c9360 100644 --- a/www/php-templates/Makefile +++ b/www/php-templates/Makefile @@ -12,7 +12,7 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= php_templates-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sysadmin@alexdupre.com BUILD_DEPENDS= aclocal:${PORTSDIR}/devel/automake \ autoconf:${PORTSDIR}/devel/autoconf \ @@ -33,10 +33,12 @@ post-extract: @cd ${WRKSRC} && ${LOCALBASE}/bin/phpize do-install: - @${INSTALL} ${WRKSRC}/modules/templates.so \ - ${LOCALBASE}/lib/php/20010901 + @${MKDIR} ${PREFIX}/lib/php/20010901 + @${INSTALL_DATA} ${WRKSRC}/modules/templates.so \ + ${PREFIX}/lib/php/20010901 post-install: - @${SED} s!%%LOCALBASE%%!${LOCALBASE}!g ${PKGMESSAGE} + @${SED} "s!%%LOCALBASE%%!${LOCALBASE}!g;s!%%PREFIX%%!${PREFIX}!g" \ + ${PKGMESSAGE} .include <bsd.port.mk> diff --git a/www/php-templates/pkg-descr b/www/php-templates/pkg-descr index d84b35c1702c..51b108b7864b 100644 --- a/www/php-templates/pkg-descr +++ b/www/php-templates/pkg-descr @@ -1 +1,9 @@ -A template framework for PHP +php_templates is an extension to PHP language which provides +easier and faster work with templates files. +This engine works much faster than any existing template library +written in PHP. + +WWW: http://sourceforge.net/projects/php-templates/ + +- Alex Dupre +sysadmin@alexdupre.com diff --git a/www/php-templates/pkg-message b/www/php-templates/pkg-message index 79bc88bb1684..ccb49f5a8527 100644 --- a/www/php-templates/pkg-message +++ b/www/php-templates/pkg-message @@ -1,6 +1,9 @@ +***************************************************************************** You have installed the php-templates package. Edit %%LOCALBASE%%/etc/php.ini and add: -extension="%%LOCALBASE%%/lib/php/20010901/templates.so" +extension="%%PREFIX%%/lib/php/20010901/templates.so" + +***************************************************************************** diff --git a/www/php-templates/pkg-plist b/www/php-templates/pkg-plist index ec8b94a9c299..9b05d2371e21 100644 --- a/www/php-templates/pkg-plist +++ b/www/php-templates/pkg-plist @@ -1 +1,2 @@ lib/php/20010901/templates.so +@unexec rmdir %D/lib/php/20010901 |