mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
bc3fc53bfa
Use bsd.php.mk. Small other fixes. Make portlint happy. PR: ports/61149 Submitted by: Alex Dupre <ale@freebsd.org>
62 lines
1.8 KiB
Makefile
62 lines
1.8 KiB
Makefile
# New ports collection makefile for: ZendOptimizer
|
|
# Date created: Thu Apr 24 00:23:22 CET 2003
|
|
# Whom: Alex Dupre <sysadmin@alexdupre.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ZendOptimizer
|
|
PORTVERSION= 2.1.0b
|
|
CATEGORIES= devel
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-FreeBSD4.0-i386
|
|
|
|
MAINTAINER= sysadmin@alexdupre.com
|
|
COMMENT= An optimizer for PHP code
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
NO_BUILD= yes
|
|
BROKEN_WITH_PHP=5
|
|
|
|
RESTRICTED= "Redistribution of pre-compiled binaries is not permitted"
|
|
NO_CDROM= "Redistribution of pre-compiled binaries is not permitted"
|
|
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${.CURDIR}/../../lang/php4/bsd.php.mk"
|
|
|
|
# Check for FreeBSD version
|
|
.if ${OSVERSION} < 400000 || ${OSVERSION} > 499999
|
|
BROKEN= "This port is for FreeBSD 4 only"
|
|
.else
|
|
# Check for ZendOptimizer sources
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
|
|
ECHO_MSG=/usr/bin/printf
|
|
IGNORE= :\n\
|
|
Because of licensing restrictions, you must fetch the source distribution\n\
|
|
manually.\n\
|
|
Please access http://www.zend.com/store/getfreefile.php?pid=13&zbid=547\n\
|
|
with a web browser, read the license and click the \"I ACCEPT\" button.\n\
|
|
Download the source file, ${DISTNAME}${EXTRACT_SUFX},\n\
|
|
and place it in ${DISTDIR}.\n
|
|
.endif
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/lib/php/${PHP_EXT_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/data/4_3_x_comp/ZendOptimizer.so \
|
|
${PREFIX}/lib/php/${PHP_EXT_DIR}/ZendOptimizer.so
|
|
${INSTALL_DATA} ${WRKSRC}/data/4_3_x_comp/TS/ZendOptimizer.so \
|
|
${PREFIX}/lib/php/${PHP_EXT_DIR}/ZendOptimizer_TS.so
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/data/doc/* ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
@${SED} "s|%%LOCALBASE%%|${LOCALBASE}|g;s|%%PREFIX%%|${PREFIX}|g;s|%%PHP_EXT_DIR%%|${PHP_EXT_DIR}|g" \
|
|
${.CURDIR}/pkg-message > ${PKGMESSAGE}
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|