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 /print | |
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 'print')
-rw-r--r-- | print/ghostscript5/Makefile | 6 | ||||
-rw-r--r-- | print/lyx/Makefile | 10 | ||||
-rw-r--r-- | print/magicfilter/Makefile | 12 |
3 files changed, 14 insertions, 14 deletions
diff --git a/print/ghostscript5/Makefile b/print/ghostscript5/Makefile index 128b56e0a87..2820eef79bf 100644 --- a/print/ghostscript5/Makefile +++ b/print/ghostscript5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.46 2000/02/09 20:20:57 tron Exp $ +# $NetBSD: Makefile,v 1.47 2000/02/15 09:26:23 agc Exp $ # DISTNAME= ghostscript-5.50 @@ -19,8 +19,8 @@ PATCHFILES= 990524.txt 990220c.txt 990220b.txt 990220a.txt 990220.txt \ MAINTAINER= explorer@netbsd.org HOMEPAGE= http://www.cs.wisc.edu/~ghost/index.html -BUILD_DEPENDS= ${BUILD_ROOT}/graphics/jpeg/${WRKDIR:T}/jpeg-6b:../../graphics/jpeg:extract \ - unzip:../../archivers/unzip +BUILD_DEPENDS= ${BUILD_ROOT}/graphics/jpeg/${WRKDIR:T}/jpeg-6b:../../graphics/jpeg:extract +BUILD_DEPENDS+= unzip:../../archivers/unzip DEPENDS= png>=1.0.3:../../graphics/png USE_X11= yes diff --git a/print/lyx/Makefile b/print/lyx/Makefile index fcd02cad2e6..7749bc90381 100644 --- a/print/lyx/Makefile +++ b/print/lyx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 1999/11/28 21:17:10 frueauf Exp $ +# $NetBSD: Makefile,v 1.24 2000/02/15 09:26:23 agc Exp $ # FreeBSD Id: Makefile,v 1.14 1998/02/14 16:46:50 andreas Exp # @@ -9,10 +9,10 @@ MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/ MAINTAINER= frueauf@netbsd.org HOMEPAGE= http://www.lyx.org/ -DEPENDS= ispell-3.1.20:../../textproc/ispell \ - teTeX-1.0.6:../../print/teTeX \ - xpm-3.4k:../../graphics/xpm \ - xforms-0.88:../../x11/xforms +DEPENDS= ispell-3.1.20:../../textproc/ispell +DEPENDS+= teTeX-1.0.6:../../print/teTeX +DEPENDS+= xpm-3.4k:../../graphics/xpm +DEPENDS+= xforms-0.88:../../x11/xforms USE_PERL5= yes GNU_CONFIGURE= yes diff --git a/print/magicfilter/Makefile b/print/magicfilter/Makefile index aa2abc7daa9..23ccab20e63 100644 --- a/print/magicfilter/Makefile +++ b/print/magicfilter/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2000/01/10 00:57:16 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2000/02/15 09:26:24 agc Exp $ DISTNAME= magicfilter-1.2 CATEGORIES= print @@ -6,11 +6,11 @@ MASTER_SITES= ${MASTER_SITE_SUNSITE:=system/printing/} MAINTAINER= packages@netbsd.org -DEPENDS+= a2ps-*:../a2ps \ - ghostscript-*:../ghostscript5 \ - netpbm-*:../../graphics/netpbm \ - teTeX-bin-*:../teTeX-bin \ - papersize-*:../papersize +DEPENDS+= a2ps-*:../../print/a2ps +DEPENDS+= ghostscript-*:../../print/ghostscript5 +DEPENDS+= netpbm-*:../../graphics/netpbm +DEPENDS+= teTeX-bin-*:../../print/teTeX-bin +DEPENDS+= papersize-*:../../print/papersize USE_GMAKE= yes GNU_CONFIGURE= yes |