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 /net/kdenetwork | |
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 'net/kdenetwork')
-rw-r--r-- | net/kdenetwork/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/kdenetwork/Makefile b/net/kdenetwork/Makefile index 9416ddcb4bb..8c4e32ca726 100644 --- a/net/kdenetwork/Makefile +++ b/net/kdenetwork/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 1999/12/06 20:44:58 bouyer Exp $ +# $NetBSD: Makefile,v 1.38 2000/02/15 09:26:23 agc Exp $ # FreeBSD Id: Makefile,v 1.3 1997/11/05 04:19:54 asami Exp # @@ -11,10 +11,10 @@ EXTRACT_SUFX= .tar.bz2 MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.kde.org/ -DEPENDS= gdbm-1.7.3:../../databases/gdbm \ - uulib-0.5.13:../../converters/uulib \ - kdesupport-1.1.2:../../converters/kdesupport \ - kdebase-1.1.2:../../x11/kdebase +DEPENDS= gdbm-1.7.3:../../databases/gdbm +DEPENDS+= uulib-0.5.13:../../converters/uulib +DEPENDS+= kdesupport-1.1.2:../../converters/kdesupport +DEPENDS+= kdebase-1.1.2:../../x11/kdebase NOT_FOR_PLATFORM= *-*-alpha # LP64/ELF problems |