openbsd-ports/www/php3/Makefile
brad 3e3e1dc069 remove mips and powerpc from ONLY_FOR_ARCHS, these platforms do not even
ship with an Apache compiled with DSO support yet.
2001-01-04 00:51:23 +00:00

69 lines
1.7 KiB
Makefile

# $OpenBSD: Makefile,v 1.25 2001/01/04 00:51:23 brad Exp $
# This port current only works with archs supporting dynamic loading
ONLY_FOR_ARCHS= i386 m68k sparc
DISTNAME= php-3.0.18
PKGNAME= php3-3.0.18
CATEGORIES= www lang
NEED_VERSION= 1.336
HOMEPAGE= http://www.php.net/
MAINTAINER= Jakob Schlyter <jakob@openbsd.org>
MASTER_SITES= http://www.php.net/distributions/ \
http://us.php.net/distributions/ \
http://se.php.net/distributions/ \
http://no.php.net/distributions/
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --with-apxs=/usr/sbin/apxs \
--with-pcre-regex \
--with-xml \
--with-config-file-path=/var/www/conf
LIB_DEPENDS+= expat.1.::textproc/expat
FLAVORS= imap mysql postgresql
FLAVOR?=
.if ${FLAVOR:L:Mimap}
CONFIGURE_ARGS+= --with-imap=${PREFIX}
LIB_DEPENDS+= c-client.2::mail/c-client
.else
CONFIGURE_ARGS+= --without-imap
.endif
.if ${FLAVOR:L:Mmysql}
CONFIGURE_ARGS+= --with-mysql
LIB_DEPENDS+= mysqlclient.6::databases/mysql
.else
CONFIGURE_ARGS+= --without-mysql
.endif
.if ${FLAVOR:L:Mpostgresql}
CONFIGURE_ARGS+= --with-pgsql
LIB_DEPENDS+= pq.2::databases/postgresql
.else
CONFIGURE_ARGS+= --without-pgsql
.endif
do-install:
${INSTALL_DATA} ${WRKBUILD}/libphp3.so ${PREFIX}/lib
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/php3
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/php3
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/php3
${INSTALL_DATA} ${WRKSRC}/php3.ini-dist ${PREFIX}/share/doc/php3
@sed 's,y0y0y0,${TRUEPREFIX},' \
<${FILESDIR}/php3-enable >${PREFIX}/sbin/php3-enable
@chown ${BINOWN}:${BINGRP} ${PREFIX}/sbin/php3-enable
@chmod ${BINMODE} ${PREFIX}/sbin/php3-enable
.include <bsd.port.mk>