diff options
author | jlam <jlam> | 2005-06-09 16:08:27 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-06-09 16:08:27 +0000 |
commit | dd578b1f547cb3d0a2c8aab827376dde5af37c31 (patch) | |
tree | 184c8482047c8e33c83324d1a0bb01618a406dbd /mk/bsd.pkg.mk | |
parent | f2c73a5512ed3eae9043f4139f346ce03f3915be (diff) | |
download | pkgsrc-dd578b1f547cb3d0a2c8aab827376dde5af37c31.tar.gz |
Add a documentation block above the changes-entry target.
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r-- | mk/bsd.pkg.mk | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index d9036f3208a..8c8a41a7f3c 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1689 2005/06/09 10:09:58 wiz Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1690 2005/06/09 16:08:27 jlam Exp $ # # This file is in the public domain. # @@ -4845,6 +4845,21 @@ show-tools: . endif .endfor +# changes-entry appends an entry to pkgsrc/doc/CHANGES. +# +# The following variables may be set: +# +# CTYPE is the type of entry to add and is one of "Added", "Updated", +# "Renamed", "Moved", of "Removed". The default CTYPE is "Updated". +# +# NETBSD_LOGIN_NAME is the login name assigned by the NetBSD Project. +# It defaults to the local login name. +# +# Example usage: +# +# cd /usr/pkgsrc/category/package +# make changes-entry CTYPE=Added +# CTYPE?= Updated .if !empty(CTYPE:MUpdated) _CTYPE2= " to "${PKGVERSION:Q} |