diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-04-13 20:23:20 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-04-13 20:23:20 +0000 |
commit | 6fac46b389ff5e52d63b07424b8f788d6be4cc16 (patch) | |
tree | e3900c952d1818b5d19dff7a44e0887e52ddef8c /www/pear-HTTP_Session2/Makefile | |
parent | 23687dbe4ee8c7e57d642e633912263313601ac5 (diff) | |
download | freebsd-ports-6fac46b389ff5e52d63b07424b8f788d6be4cc16.zip |
Let Makefile.common do the work.
PR: ports/65499
Submitted by: Roman Neuhauser
Approved by: mat (mentor)
Diffstat (limited to 'www/pear-HTTP_Session2/Makefile')
-rw-r--r-- | www/pear-HTTP_Session2/Makefile | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/www/pear-HTTP_Session2/Makefile b/www/pear-HTTP_Session2/Makefile index 5b94c8a269f0..6145ca927186 100644 --- a/www/pear-HTTP_Session2/Makefile +++ b/www/pear-HTTP_Session2/Makefile @@ -15,22 +15,10 @@ COMMENT= PEAR Object-oriented interface to the session_* family functions BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR RUN_DEPENDS= ${BUILD_DEPENDS} +FILES= Session.php Session/Container.php Session/Container/DB.php +EXAMPLES= HTTP_Session_Example.php sessiondata.sql +_EXAMPLESDIR= docs + .include <bsd.port.pre.mk> .include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" - -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/docs/sessiondata.sql ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/docs/HTTP_Session_Example.php ${DOCSDIR} - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -do-install: - @${MKDIR} ${PEARDIR}/Session/Container - @${CP} -p ${WRKSRC}/Session/Container/DB.php ${PEARDIR}/Session/Container - @${CP} -p ${WRKSRC}/Session/Container.php ${PEARDIR}/Session - @${CP} ${WRKSRC}/Session.php ${PEARDIR} - @${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/Session.php - @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/Session - .include <bsd.port.post.mk> |