diff options
author | agc <agc> | 2000-02-15 09:26:12 +0000 |
---|---|---|
committer | agc <agc> | 2000-02-15 09:26:12 +0000 |
commit | 242d011092ba85f783d14aeacbecfc4234970f19 (patch) | |
tree | 4e357f9aabe4d1c5fb73d87778d5e0e3e135ff1f /www/Mosaic/Makefile | |
parent | 5c63ce00000da7db31d55e4568e575d0b99bc6a9 (diff) | |
download | pkgsrc-242d011092ba85f783d14aeacbecfc4234970f19.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/Mosaic/Makefile')
-rw-r--r-- | www/Mosaic/Makefile | 8 |
1 files changed, 4 insertions, 4 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 |