diff options
author | rillig <rillig@pkgsrc.org> | 2007-06-09 11:02:23 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-06-09 11:02:23 +0000 |
commit | 4c3c864e51a10a4d837c89720125e926b454df28 (patch) | |
tree | 2ce2369ee33489a23a0def35616e50b938639b36 /mk/plist | |
parent | 1dbd4dc16af4624e539938398adf050970409bc0 (diff) | |
download | pkgsrc-4c3c864e51a10a4d837c89720125e926b454df28.tar.gz |
Fixed the description of PLIST_SRC.
Diffstat (limited to 'mk/plist')
-rw-r--r-- | mk/plist/plist.mk | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/mk/plist/plist.mk b/mk/plist/plist.mk index 8420b58db51..2a768bffe8e 100644 --- a/mk/plist/plist.mk +++ b/mk/plist/plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: plist.mk,v 1.24 2007/05/28 13:59:10 heinz Exp $ +# $NetBSD: plist.mk,v 1.25 2007/06/09 11:02:23 rillig Exp $ # # This Makefile fragment handles the creation of PLISTs for use by # pkg_create(8). @@ -10,9 +10,17 @@ # are listed in files. Valid values are "dynamic" and "static", # and the default value is "static". # -# PLIST_SRC is the source file(s) for the generated PLIST file. By -# default, its value is constructed from the PLIST.* files within -# the package directory. +# PLIST_SRC is the list of source files from which the PLIST file of +# the binary package will be generated. By default, its value is +# constructed from the PLIST.* files within the package directory, +# in the following order (if the files are present): +# +# PLIST.common +# PLIST.${OPSYS} (e.g., PLIST.NetBSD) +# PLIST.${MACHINE_ARCH} (e.g,, PLIST.macppc) +# PLIST.${OPSYS}-${MACHINE_ARCH} (e.g., PLIST.NetBSD-macppc) +# PLIST +# PLIST.common_end # # GENERATE_PLIST is a sequence of commands, terminating in a semicolon, # that outputs contents for a PLIST to stdout and is appended to @@ -29,18 +37,6 @@ PLIST_TYPE?= static ###################################################################### -# PLIST_SRC is the source file for the generated PLIST file. If PLIST_SRC -# is not explicitly defined, then build one up from various PLIST.* files -# that are present in the package directory. The order goes (if the files -# are present): -# -# PLIST.common -# PLIST.${OPSYS} (e.g., PLIST.NetBSD) -# PLIST.${MACHINE_ARCH} (e.g,, PLIST.macppc) -# PLIST.${OPSYS}-${MACHINE_ARCH} (e.g., PLIST.NetBSD-macppc) -# PLIST -# PLIST.common_end -# .if !defined(PLIST_SRC) . if exists(${PKGDIR}/PLIST.common) PLIST_SRC+= ${PKGDIR}/PLIST.common |