blob: f6dc4b380647c8219cb70506c2e01f3a0437fbba (
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
40
41
42
43
44
45
46
47
48
49
|
# $FreeBSD$
PORTNAME= fluxcms
PORTVERSION= 1.6.0
PORTREVISION= 7
CATEGORIES= www
MASTER_SITES= http://bitflux.org/download/ \
http://www.chruetertee.ch/files/download/
DISTNAME= ${PORTNAME}-${PORTVERSION}-snapshot-20090308
EXTRACT_SUFX= .tgz
MAINTAINER= beat@FreeBSD.org
COMMENT= An extensible and flexible CMS based on PHP 5 and XML/XSLT
NO_BUILD= yes
FLUXCMSDIR= www/fluxcms
INSTALLDIR= ${PREFIX}/${FLUXCMSDIR}
PLIST_SUB= INSTALLDIR=${FLUXCMSDIR} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
SUB_FILES= pkg-deinstall pkg-message
SUB_LIST= INSTALLDIR=${INSTALLDIR}
OPTIONS_DEFINE= TIDY
USE_PHP= dom xml simplexml iconv mysql xsl session pcre gd
DEFAULT_PHP_VER= 5
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MTIDY}
USE_PHP+= tidy
.endif
post-patch:
@${RM} ${WRKSRC}/install/dist/conf/config.xml.orig
do-install:
@${MKDIR} ${INSTALLDIR}
@${CP} -R ${WRKSRC}/* ${INSTALLDIR}
@${CHOWN} ${WWWOWN}:${WWWGRP} ${INSTALLDIR}
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|