48ead3a5dd
tech-pkg@ where the incorrect libtoolize was being invoked. We now pass in the path to libtoolize via the environment, much like how the other GNU auto* tools are found in pkgsrc.
46 lines
1.5 KiB
Makefile
46 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.31 2003/02/03 23:53:24 jlam Exp $
|
|
|
|
PKGNAME= php-${PHP_BASE_VERS}
|
|
PKGREVISION= 1
|
|
CATEGORIES+= lang
|
|
COMMENT= HTML-embedded scripting language
|
|
|
|
CONFLICTS+= ap-php-4.0.3pl1
|
|
|
|
USE_BUILDLINK2= YES
|
|
USE_PKGINSTALL= YES
|
|
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
|
|
|
.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")
|
|
LINK_LIBGCC_LDFLAGS= -Wl,--whole-archive -Wl,-lgcc -Wl,--no-whole-archive
|
|
MAKE_ENV+= LINK_LIBGCC_LDFLAGS="${LINK_LIBGCC_LDFLAGS}"
|
|
.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_DATA_DIR} ${CGIDIR}
|
|
${LN} -sf ../../bin/php ${CGIDIR}/php
|
|
${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"
|