blob: 9ae90694c46b2245ee66d08c203f606892709cbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile.module,v 1.9 2001/06/21 22:44:03 kim Exp $
#
# This Makefile is provided to ease creating PHP4 packages for the extension
# modules distributed in the PHP4 sources.
#
# Just include this file, define MODNAME, define PHP_PKG_VERS if necessary,
# add dependencies, and add the appropriate --with-configure-arg, then include
# bsd.pkg.mk.
#
# PHP_PKG_VERS should be of the form "nbX" and is used to indicate revisions
# of the PHP4 module package that don't affect other PHP4 modules. It is
# typically left empty.
.include "../../www/php4/Makefile.common"
PKGNAME= php-${MODNAME}-${PHP_MODULE_VERS}
PHP_PKG_VERS?= # empty
PHP_MODULE_VERS= ${PHP_BASE_VERS}${PHP_PKG_VERS}
DEPENDS+= php-${PHP_VERS}:../../www/php4
EXTDIR= ${WRKSRC}/ext/${MODNAME:S/-/_/}
MODULESDIR= ${WRKSRC}/modules
PLIST_SUBST+= MODNAME=${MODNAME:S/-/_/}
MESSAGE_SRC= ${.CURDIR}/../../www/php4/pkg/MESSAGE.module
MESSAGE_SUBST+= MODNAME=${MODNAME:S/-/_/}
MESSAGE_SUBST+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR}
PLIST_SRC= ${.CURDIR}/../../www/php4/pkg/PLIST.module
# Ensure we export symbols in the linked shared objects.
LDFLAGS+= -Wl,--export-dynamic
do-build:
@cd ${EXTDIR}; ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${ALL_TARGET}
do-install: do-module-install
do-module-install:
${INSTALL_DATA_DIR} ${PREFIX}/${PHP_EXTENSION_DIR}
${INSTALL_DATA} ${MODULESDIR}/${MODNAME:S/-/_/}.so \
${PREFIX}/${PHP_EXTENSION_DIR}
|