diff options
author | jlam <jlam> | 2001-03-01 18:18:15 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-03-01 18:18:15 +0000 |
commit | 9b4b65610366c2c73b7558a57ac971230a73e25d (patch) | |
tree | c496d6d9f475b4391092cf02b6c82ba1bfd3458e /www/php4 | |
parent | ef57f98866073b0f23adf35a23437b453e65e983 (diff) | |
download | pkgsrc-9b4b65610366c2c73b7558a57ac971230a73e25d.tar.gz |
Disassociate the version number of the php4 package from the version numbers of
the php4 modules. The rule is that php4 modules depend on php-${PHP_VERS}, but
they are allowed to have their own ${PHP_BASE_VERS}nbX package version numbers.
Diffstat (limited to 'www/php4')
-rw-r--r-- | www/php4/Makefile | 4 | ||||
-rw-r--r-- | www/php4/Makefile.common | 7 | ||||
-rw-r--r-- | www/php4/Makefile.module | 15 |
3 files changed, 14 insertions, 12 deletions
diff --git a/www/php4/Makefile b/www/php4/Makefile index ea57ba2093f..e27e6a7dfb8 100644 --- a/www/php4/Makefile +++ b/www/php4/Makefile @@ -1,12 +1,10 @@ -# $NetBSD: Makefile,v 1.9 2001/02/17 17:22:31 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2001/03/01 18:18:17 jlam Exp $ .include "../../www/php4/Makefile.common" PKGNAME= php-${PHP_VERS} CATEGORIES+= lang -MAINTAINER= jlam@netbsd.org -HOMEPAGE= http://www.php.net/ COMMENT= PHP4: Hypertext Preprocessor CONFLICTS+= ap-php-4.0.3pl1 diff --git a/www/php4/Makefile.common b/www/php4/Makefile.common index 89ddbbdd8df..731d46146bb 100644 --- a/www/php4/Makefile.common +++ b/www/php4/Makefile.common @@ -1,8 +1,9 @@ -# $NetBSD: Makefile.common,v 1.7 2001/02/07 15:39:33 tron Exp $ +# $NetBSD: Makefile.common,v 1.8 2001/03/01 18:18:17 jlam Exp $ DISTNAME= php-${PHP_DIST_VERS} PHP_DIST_VERS= 4.0.4pl1 -PHP_VERS= 4.0.4.1nb1 +PHP_BASE_VERS= 4.0.4.1 +PHP_VERS= ${PHP_BASE_VERS}nb1 CATEGORIES+= www php4 # Note the http address is written this way by purpose, so that bsd.pkg.mk DTRT @@ -10,7 +11,7 @@ MASTER_SITES= http://www.php.net/distributions/ \ http://php3.de/distributions/ \ ftp://ftp.php.net/pub/distributions/ -MAINTAINER= jdolecek@netbsd.org +MAINTAINER= jlam@netbsd.org HOMEPAGE= http://www.php.net/ # Put this dependency here to compile in dbm support for all PHP4 modules. diff --git a/www/php4/Makefile.module b/www/php4/Makefile.module index 3d624bfb9e5..1e92173c11f 100644 --- a/www/php4/Makefile.module +++ b/www/php4/Makefile.module @@ -1,14 +1,17 @@ -# $NetBSD: Makefile.module,v 1.2 2001/01/29 11:34:47 wiz Exp $ +# $NetBSD: Makefile.module,v 1.3 2001/03/01 18:18:17 jlam 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, add dependencies, and add the -# appropriate --with-configure-arg, then include bsd.pkg.mk. +# 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. .include "../../www/php4/Makefile.common" -PKGNAME= php-${MODNAME}-${PHP_VERS} +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 @@ -17,7 +20,7 @@ MODULESDIR= ${WRKSRC}/modules PLIST_SUBST+= MODNAME=${MODNAME} MESSAGE_SRC= ${.CURDIR}/../../www/php4/pkg/MESSAGE.module -MESSAGE_SUBST+= MODNAME=${MODNAME} \ +MESSAGE_SUBST+= MODNAME=${MODNAME} \ PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR} PLIST_SRC= ${.CURDIR}/../../www/php4/pkg/PLIST.module @@ -29,5 +32,5 @@ do-install: do-module-install do-module-install: ${INSTALL_DATA_DIR} ${PREFIX}/${PHP_EXTENSION_DIR} - ${INSTALL_DATA} ${MODULESDIR}/${MODNAME}.so \ + ${INSTALL_DATA} ${MODULESDIR}/${MODNAME}.so \ ${PREFIX}/${PHP_EXTENSION_DIR} |