blob: 064e6761ea22f2d7b63e9b0b0411bdde2e065cd8 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# New ports collection makefile for: xcache
# Date created: 28 May 2006
# Whom: Alex Dupre <ale@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= xcache
DISTVERSION= 1.2.0
CATEGORIES= www
MASTER_SITES= http://210.51.190.228/pub/XCache/Releases/ \
MAINTAINER= ale@FreeBSD.org
COMMENT= A fast and stable php opcode cacher
USE_BZIP2= yes
USE_PHP= yes
USE_PHPIZE= yes
CONFIGURE_ARGS= --enable-xcache=shared
OPTIONS= COVERAGER "Enable code coverage dumper" off
SUB_FILES= pkg-message
PKGMESSAGE= ${WRKDIR}/pkg-message
WRKSRC= ${WRKDIR}/${PORTNAME}
ADMINFILES= common-en.lang.php common-zh-simplified-utf-8.lang.php \
common-zh-traditional-utf-8.lang.php common.php config.php.example \
help-en.lang.php help-zh-simplified-utf-8.lang.php \
help-zh-traditional-utf-8.lang.php help.php index.php \
tablesort.js xcache.css xcache.php xcache.tpl.php
COVERAGERFILES= common-en.lang.php common-zh-simplified-gb2312.lang.php \
common-zh-simplified-utf-8.lang.php common.php config.php.example \
coverager.css coverager.php coverager.tpl.php index.php
.include <bsd.port.pre.mk>
.if defined(WITH_COVERAGER)
CONFIGURE_ARGS+=--enable-xcache-coverager
PLIST_SUB+= COVERAGER=""
.else
PLIST_SUB+= COVERAGER="@comment "
.endif
post-build:
@${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|;s|%%PHP_EXT_DIR%%|${PHP_EXT_DIR}|' \
${WRKSRC}/xcache.ini
do-install:
@${MKDIR} ${PREFIX}/lib/php/${PHP_EXT_DIR}
${INSTALL_DATA} ${WRKSRC}/modules/${PORTNAME}.so \
${PREFIX}/lib/php/${PHP_EXT_DIR}
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/xcache.ini \
${EXAMPLESDIR}
post-install:
@${MKDIR} ${EXAMPLESDIR}/admin
.for f in ${ADMINFILES}
${INSTALL_DATA} ${WRKSRC}/admin/${f} ${EXAMPLESDIR}/admin
.endfor
.if defined(WITH_COVERAGER)
@${MKDIR} ${EXAMPLESDIR}/coverager
.for f in ${COVERAGERFILES}
${INSTALL_DATA} ${WRKSRC}/coverager/${f} ${EXAMPLESDIR}/coverager
.endfor
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|