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/lyx/Makefile | |
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/lyx/Makefile')
-rw-r--r-- | print/lyx/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
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 |