33e91cd4a1
- remove the pear subpackage as it is now replaced with www/pear - the filepro extension is no longer available tested by a couple of people
72 lines
1.9 KiB
Makefile
72 lines
1.9 KiB
Makefile
# $OpenBSD: Makefile,v 1.20 2007/03/22 22:43:20 robert Exp $
|
|
|
|
COMMENT= "server-side HTML-embedded scripting language"
|
|
PKGNAME= php5-core-${V}
|
|
DISTFILES= php-${V}.tar.gz
|
|
|
|
CONFIGURE_ARGS+=--with-apxs=/usr/sbin/apxs \
|
|
--without-mysql \
|
|
--enable-xml \
|
|
--enable-wddx \
|
|
--enable-cli \
|
|
--with-iconv=${LOCALBASE} \
|
|
--with-gettext=${LOCALBASE} \
|
|
--enable-dio \
|
|
--enable-bcmath \
|
|
--enable-session \
|
|
--enable-trans-sid \
|
|
--enable-calendar \
|
|
--enable-ctype \
|
|
--enable-ftp \
|
|
--with-pcre-regex \
|
|
--with-posix \
|
|
--enable-sockets \
|
|
--enable-sysvsem \
|
|
--enable-sysvshm \
|
|
--enable-yp \
|
|
--enable-exif \
|
|
--without-sqlite \
|
|
--with-pear=${LOCALBASE}/share/php5
|
|
|
|
MODULES= devel/gettext
|
|
|
|
# some variables to substitute
|
|
SUBST_VARS= PHP_CONFIG_FILE
|
|
PHP_VERSION= ${V}
|
|
|
|
.for i in TRUEPREFIX PHP_CONFIG_FILE MODULES_DIR PHP_VERSION APACHE_MODULE_DIR
|
|
PHPXS_SUBST+= -e 's,${i},${${i}},'
|
|
.endfor
|
|
|
|
WANTLIB= c crypto m ssl stdc++ z pthread
|
|
LIB_DEPENDS= xml2.>=8::textproc/libxml
|
|
|
|
pre-fake:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/${APACHE_MODULE_SUBDIR}
|
|
INSTALL_TARGET= install-headers install-build install-programs
|
|
FAKE_FLAGS= INSTALL_ROOT=${DESTDIR}
|
|
|
|
pre-configure:
|
|
@perl -pi -e "s,OPENBSD_PEAR_ROOT,'${CHROOT_DIR}/pear',g" \
|
|
${WRKSRC}/scripts/phpize.in \
|
|
${WRKSRC}/scripts/php-config.in
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKBUILD}/.libs/libphp5.so \
|
|
${PREFIX}/${APACHE_MODULE_SUBDIR}
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/php5
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/sapi/cli/php ${PREFIX}/bin
|
|
|
|
.for i in dist recommended
|
|
@sed -e 's,MODULES_DIR,${MODULES_DIR},' \
|
|
-e 's,OPENBSD_INCLUDE_PATH,/pear/lib:${CHROOT_DIR}/pear/lib,' \
|
|
<${WRKSRC}/php.ini-${i} \
|
|
>${PREFIX}/share/examples/php5/php.ini-${i}
|
|
.endfor
|
|
@sed ${PHPXS_SUBST} <${FILESDIR}/phpxs >${PREFIX}/sbin/phpxs
|
|
@chown ${BINOWN}:${BINGRP} ${PREFIX}/sbin/phpxs
|
|
@chmod ${BINMODE} ${PREFIX}/sbin/phpxs
|
|
${INSTALL_MAN} ${WRKSRC}/sapi/cli/php.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|