diff options
author | agc <agc@pkgsrc.org> | 2000-02-15 09:26:12 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2000-02-15 09:26:12 +0000 |
commit | 4cffd86a2930792f64b0440f0e5a8c6400e8419e (patch) | |
tree | 4e357f9aabe4d1c5fb73d87778d5e0e3e135ff1f /www | |
parent | 63aacb20ee533bf9a53594db96e7f300024c2213 (diff) | |
download | pkgsrc-4cffd86a2930792f64b0440f0e5a8c6400e8419e.tar.gz |
When multi-line dependencies occur, use a "DEPENDS+= package" format
for each of the continuation lines, rather than using backslashes to
continue a single, long definition. This makes it much easier to spot
pre-requisite packages and other dependencies.
Diffstat (limited to 'www')
-rw-r--r-- | www/Mosaic/Makefile | 8 | ||||
-rw-r--r-- | www/ap-ssl/Makefile | 6 | ||||
-rw-r--r-- | www/p5-Apache-ASP/Makefile | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/www/Mosaic/Makefile b/www/Mosaic/Makefile index d701344469b..e9d76f6465c 100644 --- a/www/Mosaic/Makefile +++ b/www/Mosaic/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2000/02/09 15:22:44 tron Exp $ +# $NetBSD: Makefile,v 1.16 2000/02/15 09:26:24 agc Exp $ # FreeBSD Id: Makefile,v 1.15 1998/05/27 08:44:56 dburr Exp # @@ -11,9 +11,9 @@ MASTER_SITES= ftp://ftp.ncsa.uiuc.edu/Web/Mosaic/Unix/source/ MAINTAINER= tv@netbsd.org HOMEPAGE= http://www.ncsa.uiuc.edu/SDG/Software/Mosaic/ -DEPENDS= jpeg-6b:../../graphics/jpeg \ - png-*:../../graphics/png \ - xpm-3.4k:../../graphics/xpm +DEPENDS= jpeg-6b:../../graphics/jpeg +DEPENDS+= png-*:../../graphics/png +DEPENDS+= xpm-3.4k:../../graphics/xpm NOT_FOR_PLATFORM= *-*-alpha #LP64 problems diff --git a/www/ap-ssl/Makefile b/www/ap-ssl/Makefile index bb9339a8f30..249dfdf5af1 100644 --- a/www/ap-ssl/Makefile +++ b/www/ap-ssl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 1999/12/07 20:15:16 bad Exp $ +# $NetBSD: Makefile,v 1.12 2000/02/15 09:26:24 agc Exp $ # DISTNAME= mod_ssl-2.4.8-1.3.9 @@ -9,8 +9,8 @@ MASTER_SITES= ftp://ftp.modssl.org/source/ MAINTAINER= tv@netbsd.org HOMEPAGE= http://www.modssl.org/ -DEPENDS= openssl-0.9.4:../../security/openssl \ - apache-1.3.9p0:../../www/apache +DEPENDS= openssl-0.9.4:../../security/openssl +DEPENDS+= apache-1.3.9p0:../../www/apache # For "apxs": BUILD_DEPENDS= ${LOCALBASE}/bin/perl:../../lang/perl5 diff --git a/www/p5-Apache-ASP/Makefile b/www/p5-Apache-ASP/Makefile index 99fc0248376..db5329e8867 100644 --- a/www/p5-Apache-ASP/Makefile +++ b/www/p5-Apache-ASP/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1999/04/15 20:39:47 tron Exp $ +# $NetBSD: Makefile,v 1.4 2000/02/15 09:26:25 agc Exp $ # DISTNAME= Apache-ASP-0.05 @@ -10,9 +10,9 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://theory.uwinnipeg.ca/CPAN/data/Apache-ASP/ASP.html # all other needs are already pulled in by p5-libwww -BUILD_DEPENDS= ${PREFIX}/lib/perl5/site_perl/URI/URL.pm:../../www/p5-libwww \ - ${PREFIX}/lib/perl5/site_perl/MLDBM.pm:../../devel/p5-MLDBM \ - ${PREFIX}/lib/httpd/mod_perl.so:../../www/ap-perl +BUILD_DEPENDS= ${PREFIX}/lib/perl5/site_perl/URI/URL.pm:../../www/p5-libwww +BUILD_DEPENDS+= ${PREFIX}/lib/perl5/site_perl/MLDBM.pm:../../devel/p5-MLDBM +BUILD_DEPENDS+= ${PREFIX}/lib/httpd/mod_perl.so:../../www/ap-perl RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= YES |