blob: eb83e36b053873dc5d6fa97dbd64e2f96bfb3ae4 (
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
34
35
36
37
38
39
|
# New ports collection makefile for: typolight
# Date created: 2008-09-15
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= typolight
PORTVERSION= 2.6.2
CATEGORIES= www
MASTER_SITES= SF
MAINTAINER= miwi@FreeBSD.org
COMMENT= Powerful web content management system
NO_BUILD= yes
USE_PHP= xsl mysql iconv gd
USE_MYSQL= yes
SUB_FILES= pkg-message
WWWDIR?= ${PREFIX}/www/${PORTNAME}
.include <bsd.port.pre.mk>
do-install:
@${MKDIR} ${WWWDIR}
${CP} -R ${WRKSRC}/ ${WWWDIR}
${TOUCH} ${WWWDIR}/system/config/localconfig.php
@${CHOWN} ${WWWOWN} ${WWWDIR}/system/config/localconfig.php
@${CAT} ${PKGMESSAGE}
create-plist:
@${FIND} -s ${WRKSRC}/${file} -not -type d \
| ${SED} -e 's,^${WRKSRC},%%WWWDIR%%,' > ${PLIST}
@${ECHO_CMD} '@exec touch %D/%%WWWDIR%%/system/config/localconfig.php;chown ${WWWOWN} %D/%%WWWDIR%%/system/config/localconfig.php' >> ${PLIST}
@${ECHO_CMD} '@unexec if [ ! -s %D/%%WWWDIR%%/system/config/localconfig.php ];then rm -f %D/%%WWWDIR%%/system/config/localconfig.php;fi' >> ${PLIST}
@${FIND} -ds ${WRKSRC}/${file} -type d \
| ${SED} -e 's,^${WRKSRC},@dirrm %%WWWDIR%%,' >> ${PLIST}
.include <bsd.port.post.mk>
|