2000-05-29 19:25:07 +00:00
|
|
|
# New ports collection makefile for: mod_php4
|
|
|
|
# Date created: Sun May 28 11:31:54 CEST 2000
|
|
|
|
# Whom: Dirk Froemberg <dirk@FreeBSD.org>
|
1995-08-28 13:28:45 +00:00
|
|
|
#
|
1999-08-31 02:43:35 +00:00
|
|
|
# $FreeBSD$
|
1995-08-28 13:28:45 +00:00
|
|
|
#
|
|
|
|
|
2000-05-29 19:25:07 +00:00
|
|
|
PORTNAME= mod_php
|
2000-10-16 16:09:43 +00:00
|
|
|
PORTVERSION= 4.0.3pl1
|
1996-11-18 11:44:27 +00:00
|
|
|
CATEGORIES= www
|
2000-05-29 19:25:07 +00:00
|
|
|
MASTER_SITES= http://us.php.net/${PHP_DISTDIR}/ \
|
1999-08-19 11:26:48 +00:00
|
|
|
http://php.he.net/${PHP_DISTDIR}/ \
|
|
|
|
http://www.php3.de/${PHP_DISTDIR}/ \
|
|
|
|
http://au.php.net:81/${PHP_DISTDIR}/ \
|
|
|
|
http://at.php.net/${PHP_DISTDIR}/ \
|
|
|
|
http://br.php.net/${PHP_DISTDIR}/ \
|
|
|
|
http://php.easydns.com/${PHP_DISTDIR}/ \
|
|
|
|
http://www.php.cz/${PHP_DISTDIR}/ \
|
2000-05-29 19:25:07 +00:00
|
|
|
http://php3.globe.de/${PHP_DISTDIR}/
|
2000-10-12 09:48:55 +00:00
|
|
|
DISTNAME= php-${PORTVERSION}
|
1995-08-28 13:28:45 +00:00
|
|
|
|
1999-08-16 18:41:13 +00:00
|
|
|
MAINTAINER= dirk@FreeBSD.org
|
1997-09-03 18:45:16 +00:00
|
|
|
|
2000-05-29 19:25:07 +00:00
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13
|
2000-05-28 15:04:39 +00:00
|
|
|
|
2000-06-07 20:10:46 +00:00
|
|
|
Y2K= http://www.php.net/y2k.php
|
1999-01-13 02:47:33 +00:00
|
|
|
|
2000-06-30 13:01:26 +00:00
|
|
|
PHP_DISTDIR= distributions
|
1999-08-19 11:26:48 +00:00
|
|
|
|
2000-05-29 19:25:07 +00:00
|
|
|
APXS= ${PREFIX}/sbin/apxs
|
1998-06-14 09:58:22 +00:00
|
|
|
|
2000-05-29 19:25:07 +00:00
|
|
|
USE_LIBTOOL= yes
|
|
|
|
CONFIGURE_ARGS= --with-apxs=${APXS} \
|
|
|
|
--enable-versioning \
|
1998-07-25 11:30:31 +00:00
|
|
|
--with-system-regex \
|
1999-07-03 09:50:42 +00:00
|
|
|
--with-config-file-path=${PREFIX}/etc \
|
1998-09-30 18:16:08 +00:00
|
|
|
--disable-debug \
|
1999-08-26 21:18:15 +00:00
|
|
|
--enable-track-vars \
|
2000-04-04 20:22:19 +00:00
|
|
|
--without-gd \
|
2000-10-12 09:48:55 +00:00
|
|
|
--disable-pear \
|
|
|
|
--without-mysql
|
1998-06-14 09:58:22 +00:00
|
|
|
|
2000-05-29 19:25:07 +00:00
|
|
|
SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \
|
|
|
|
TOUCH="${TOUCH}" \
|
|
|
|
MKDIR="${MKDIR}"
|
|
|
|
|
|
|
|
.if exists(${APXS})
|
|
|
|
AP_LIBEXEC!= ${APXS} -q LIBEXEC
|
|
|
|
.else
|
|
|
|
AP_LIBEXEC= ${PREFIX}/libexec/apache
|
|
|
|
.endif
|
|
|
|
|
|
|
|
PHPDOCDIR= ${PREFIX}/share/doc/php
|
|
|
|
PLIST_SUB= PHPDOCDIR=${PHPDOCDIR:S/^${PREFIX}\///} \
|
|
|
|
AP_LIBEXEC=${AP_LIBEXEC:S/^${PREFIX}\///}
|
|
|
|
|
1999-06-10 10:24:41 +00:00
|
|
|
pre-fetch:
|
1998-09-01 18:38:05 +00:00
|
|
|
@${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.php
|
1996-05-20 07:37:06 +00:00
|
|
|
|
1996-06-15 16:58:09 +00:00
|
|
|
post-install:
|
2000-05-29 19:25:07 +00:00
|
|
|
@${ECHO} "Restarting Apache..."
|
|
|
|
@${PREFIX}/sbin/apachectl restart
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/php.ini-dist ${PREFIX}/etc
|
1998-07-25 11:30:31 +00:00
|
|
|
|
1998-06-14 09:58:22 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
2000-05-29 19:25:07 +00:00
|
|
|
@${MKDIR} ${PHPDOCDIR}
|
1999-07-01 11:28:26 +00:00
|
|
|
.for i in CODING_STANDARDS LICENSE
|
2000-05-29 19:25:07 +00:00
|
|
|
@${INSTALL_DATA} ${WRKSRC}/$i ${PHPDOCDIR}
|
1998-06-14 09:58:22 +00:00
|
|
|
.endfor
|
|
|
|
.endif
|
2000-05-29 19:25:07 +00:00
|
|
|
@${ECHO} "*****************************************************************************"
|
|
|
|
@${ECHO} "Make sure the mime.types are connected to the php module properly and"
|
|
|
|
@${ECHO} "index.php is part of your DirectoryIndex."
|
|
|
|
@${ECHO} ""
|
|
|
|
@${ECHO} "The following should be in your Apache configuration file:"
|
|
|
|
@${ECHO} "[...]"
|
|
|
|
@${ECHO} "DirectoryIndex index.php index.html"
|
|
|
|
@${ECHO} "[...]"
|
|
|
|
@${ECHO} "AddType application/x-httpd-php .php"
|
2000-06-08 06:46:16 +00:00
|
|
|
@${ECHO} "AddType application/x-httpd-php-source .phps"
|
2000-05-29 19:25:07 +00:00
|
|
|
@${ECHO} "[...]"
|
|
|
|
@${ECHO} "*****************************************************************************"
|
1996-06-15 16:58:09 +00:00
|
|
|
|
2000-04-04 20:32:22 +00:00
|
|
|
post-clean:
|
1998-12-23 00:44:50 +00:00
|
|
|
@${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc
|
1998-09-01 18:38:05 +00:00
|
|
|
|
1998-12-23 00:44:50 +00:00
|
|
|
.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc)
|
|
|
|
.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc"
|
1998-09-01 18:38:05 +00:00
|
|
|
.endif
|
2000-02-25 23:43:27 +00:00
|
|
|
|
1995-08-28 13:28:45 +00:00
|
|
|
.include <bsd.port.mk>
|