diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2005-05-07 18:50:24 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2005-05-07 18:50:24 +0000 |
commit | 4f26e9ed5f4e5b7bcca2ae2f3e4d3f74c6bfd016 (patch) | |
tree | 7d8ad568b88246a9c664d2083336aae9b4aa7839 /www | |
parent | 8e29c33b268a02d52ecfb72f665288066543096c (diff) | |
download | pkgsrc-4f26e9ed5f4e5b7bcca2ae2f3e4d3f74c6bfd016.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')
-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/ |