diff options
author | jdolecek <jdolecek> | 2005-05-07 18:50:24 +0000 |
---|---|---|
committer | jdolecek <jdolecek> | 2005-05-07 18:50:24 +0000 |
commit | 08f55d50c3074c16bb653c15455cd8aad806efb3 (patch) | |
tree | 7d8ad568b88246a9c664d2083336aae9b4aa7839 /www/php4 | |
parent | 9cb25d90e858908281a494a48847d7435bf04c9a (diff) | |
download | pkgsrc-08f55d50c3074c16bb653c15455cd8aad806efb3.tar.gz |
do not define MASTER_SITES and EXTRACT_SUFX if PECL_VERSION is set,
so that lang/php/ext.php need not use = assignment and extensions
would be able to use different setting
Diffstat (limited to 'www/php4')
-rw-r--r-- | www/php4/Makefile.common | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/php4/Makefile.common b/www/php4/Makefile.common index 2dcb2a513c2..b5880887e9b 100644 --- a/www/php4/Makefile.common +++ b/www/php4/Makefile.common @@ -1,11 +1,14 @@ -# $NetBSD: Makefile.common,v 1.47 2005/04/11 20:02:57 jdolecek Exp $ +# $NetBSD: Makefile.common,v 1.48 2005/05/07 18:50:25 jdolecek Exp $ DISTNAME?= php-${PHP_DIST_VERS} CATEGORIES+= www php4 + +.if !defined(PECL_VERSION) MASTER_SITES?= http://www.php.net/distributions/ \ http://php3.de/distributions/ \ ftp://ftp.php.net/pub/distributions/ EXTRACT_SUFX?= .tar.bz2 +.endif MAINTAINER?= jdolecek@NetBSD.org HOMEPAGE?= http://www.php.net/ |