blob: cda5da3881f243452870df2585158dc6f8cc91ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: flat-frog
# Date created: 2006-10-10
# Whom: Gea-Suan Lin <gslin@gslin.org>
#
# $FreeBSD$
#
PORTNAME= flat-frog
PORTVERSION= 2.2.13
CATEGORIES= www
MASTER_SITES= SOURCEFORGE
MASTER_SITE_SUBDIR= flatfrog
MAINTAINER= gslin@gslin.org
COMMENT= A templating engine working in php
NO_BUILD= yes
USE_PHP= yes
USE_ZIP= yes
do-install:
${MKDIR} ${DATADIR} ${DATADIR}/plugins
${INSTALL_DATA} ${WRKSRC}/src/class.* ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/src/plugins/* ${DATADIR}/plugins
${MKDIR} ${EXAMPLESDIR} ${EXAMPLESDIR}/templates
${INSTALL_DATA} ${WRKSRC}/demo/test.* ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/demo/templates/* ${EXAMPLESDIR}/templates
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}
.endif
.include <bsd.port.mk>
|