67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.28 2015/06/05 06:00:23 robert Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= fast and stable PHP opcode cacher
|
|
|
|
VERSION= 3.2.0
|
|
DISTNAME= xcache-${VERSION}
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://xcache.lighttpd.net/pub/Releases/${VERSION}/
|
|
REVISION= 0
|
|
|
|
HOMEPAGE= http://xcache.lighttpd.net/
|
|
|
|
MAINTAINER= Brad Smith <brad@comstyle.com>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MODULES= lang/php
|
|
|
|
BUILD_DEPENDS+= ${MODGNU_AUTOCONF_DEPENDS} \
|
|
devel/re2c>=0.13.4 \
|
|
devel/gindent
|
|
|
|
WEBROOT= ${VARBASE}/www
|
|
SUBST_VARS= WEBROOT
|
|
|
|
LIBTOOL_FLAGS= --tag=disable-static
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --enable-xcache
|
|
CONFIGURE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION}
|
|
|
|
DESTDIRNAME= INSTALL_ROOT
|
|
|
|
NO_TEST= Yes
|
|
|
|
FLAVORS= constant coverager
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:Mconstant}
|
|
CONFIGURE_ARGS+= --enable-xcache-constant
|
|
.endif
|
|
|
|
.if ${FLAVOR:Mcoverager}
|
|
CONFIGURE_ARGS+= --enable-xcache-coverager
|
|
.endif
|
|
|
|
MODPHP_DO_PHPIZE= Yes
|
|
MODPHP_DO_SAMPLE= xcache
|
|
MESSAGE= ${PKGDIR}/MESSAGE
|
|
|
|
post-extract:
|
|
@ln -sf ${LOCALBASE}/bin/gindent ${WRKDIR}/bin/indent
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${WRKINST}${WEBROOT}/xcache
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/php-${MODPHP_VERSION}
|
|
cd ${WRKSRC}/htdocs && cp -R * ${WRKINST}${WEBROOT}/xcache
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${WRKINST}${WEBROOT}/xcache/*
|
|
find ${WRKINST}${WEBROOT}/xcache -type f -print0 | \
|
|
xargs -0 chmod ${SHAREMODE}
|
|
${INSTALL_DATA} ${WRKSRC}/xcache.ini \
|
|
${PREFIX}/share/examples/php-${MODPHP_VERSION}
|
|
|
|
.include <bsd.port.mk>
|