0d0ea1f24e
From release announcemenet: After a lengthy QA process, PHP 4.3.4 is finally out! This is a medium size maintenance release, with a fair number of bug fixes. All users are encouraged to upgrade to 4.3.4. Bugfix release PHP 4.3.4 contains, among others, following important fixes, additions and improvements: * Fixed disk_total_space() and disk_free_space() under FreeBSD. * Fixed FastCGI support on Win32. * Fixed FastCGI being unable to bind to a specific IP. * Fixed several bugs in mail() implementation on win32. * Fixed crashes in a number of functions. * Fixed compile failure on MacOSX 10.3 Panther. * Over 60 various bug fixes! For full list of changes in PHP 4.3.4, see ChangeLog: http://www.php.net/ChangeLog-4.php#4.3.4
48 lines
1.7 KiB
Makefile
48 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.35 2003/11/08 06:58:10 jdolecek Exp $
|
|
|
|
PKGNAME= php-${PHP_BASE_VERS}
|
|
CATEGORIES+= lang
|
|
COMMENT= HTML-embedded scripting language
|
|
|
|
CONFLICTS+= ap-php-4.0.3pl1
|
|
|
|
USE_BUILDLINK2= YES
|
|
USE_PKGINSTALL= YES
|
|
# PHP uses libtool inconsistently for CGI/CLI build; don't sanify for now
|
|
# LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
|
USE_GMAKE= YES
|
|
|
|
.include "Makefile.php"
|
|
|
|
CGIDIR= ${PREFIX}/libexec/cgi-bin
|
|
EGDIR= ${PREFIX}/share/examples/php
|
|
|
|
# On NetBSD ELF platforms, we need to link libgcc.a whole-archive so that
|
|
# certain symbols from the C++ implementation (__get_eh_context, etc.)
|
|
# referenced by DSOs written in C++ will resolve correctly. We need to
|
|
# prefix the linker flags "-whole-archive -lgcc -no-whole-archive" with
|
|
# "-Wl," to force all of the flags to be passed down to the linker through
|
|
# libtool without change.
|
|
#
|
|
.if ${OPSYS} == "NetBSD" && ${OBJECT_FMT} == "ELF"
|
|
MAKE_ENV+= LINK_LIBGCC_LDFLAGS="${LINK_ALL_LIBGCC_HACK}"
|
|
.endif
|
|
|
|
# Ensure we export symbols in the linked shared object.
|
|
LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS}
|
|
MAKE_ENV+= EXPORT_SYMBOLS_LDFLAGS="${EXPORT_SYMBOLS_LDFLAGS}"
|
|
|
|
CONF_FILES= ${EGDIR}/php.ini-recommended ${PKG_SYSCONFDIR}/php.ini
|
|
OWN_DIRS= ${PREFIX}/${PHP_EXTENSION_DIR}
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sapi/cli/php ${PREFIX}/bin/php
|
|
${INSTALL_DATA} ${WRKSRC}/sapi/cli/php.1 ${PREFIX}/man/man1/php.1
|
|
${INSTALL_DATA_DIR} ${CGIDIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sapi/cgi/php ${CGIDIR}
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
cd ${WRKSRC}; ${INSTALL_DATA} php.ini-dist php.ini-recommended ${EGDIR}
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/php
|
|
${INSTALL_DATA} ${WRKSRC}/php.gif ${PREFIX}/share/php
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|