summaryrefslogtreecommitdiff
path: root/Packages.txt
diff options
context:
space:
mode:
authorhubertf <hubertf>2000-01-05 19:40:21 +0000
committerhubertf <hubertf>2000-01-05 19:40:21 +0000
commit45f5dddbaa7807ecf0d932676fe7d2f75b2f2988 (patch)
treee77cd9133c2d1ce6bd53fbdd120487830196ef2d /Packages.txt
parenta03c8ea7a67314b480e59a8b67da57803a03015d (diff)
downloadpkgsrc-45f5dddbaa7807ecf0d932676fe7d2f75b2f2988.tar.gz
Use += consistently for assigning any DEPENDS
Noted by Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>
Diffstat (limited to 'Packages.txt')
-rw-r--r--Packages.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Packages.txt b/Packages.txt
index a8ea81cdbe7..5715bbbea44 100644
--- a/Packages.txt
+++ b/Packages.txt
@@ -1,4 +1,4 @@
-# $NetBSD: Packages.txt,v 1.75 1999/12/07 08:58:59 sakamoto Exp $
+# $NetBSD: Packages.txt,v 1.76 2000/01/05 19:40:21 hubertf Exp $
###########################################################################
==========================
@@ -1318,7 +1318,7 @@ installed.]
print/ghostscript5 package (it relies on the jpeg sources being
present in source form during the build):
-BUILD_DEPENDS= ../../graphics/jpeg/${WRKDIR:T}/jpeg-6a:../../graphics/jpeg:extract
+BUILD_DEPENDS+= ../../graphics/jpeg/${WRKDIR:T}/jpeg-6a:../../graphics/jpeg:extract
(b) If your package needs to use another package to build itself, this
is specified using the BUILD_DEPENDS definition, but without
@@ -1326,7 +1326,7 @@ specifying the stage ``:extract'' in (a) above. An example is the
print/lyx package, which uses the latex binary during its build
process:
-BUILD_DEPENDS= latex:../../print/teTeX
+BUILD_DEPENDS+= latex:../../print/teTeX
(c) If your package needs a library with which to link, this is
specified using the DEPENDS definition. An example of this is the
@@ -1347,7 +1347,7 @@ is specified using the DEPENDS definition. The print/lyx package needs to
be able to execute the latex binary from the teTex package when it runs,
and that is specified:
-DEPENDS= teTex-*:../../print/teTeX
+DEPENDS+= teTex-*:../../print/teTeX