diff options
author | jkh <jkh@FreeBSD.org> | 1995-04-01 17:34:11 +0800 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-04-01 17:34:11 +0800 |
commit | 5c6311a2f17459a858580259fd9e7bdabe569eff (patch) | |
tree | 56fceb3d4f005fe4f13a243bf350403f91a5bb5a /Mk | |
parent | 8aad0424660a968c7646da87ea1cacc1689516b2 (diff) | |
download | freebsd-ports-gnome-5c6311a2f17459a858580259fd9e7bdabe569eff.tar.gz freebsd-ports-gnome-5c6311a2f17459a858580259fd9e7bdabe569eff.tar.zst freebsd-ports-gnome-5c6311a2f17459a858580259fd9e7bdabe569eff.zip |
Add support for new CATEGORIES and KEYWORDS fields.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 6bed2aaabb38..dd464762d57c 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.125 1995/03/23 20:42:42 gpalmer Exp $ +# $Id: bsd.port.mk,v 1.127 1995/03/28 01:14:29 asami Exp $ # # Please view me with 4 column tabs! @@ -33,6 +33,10 @@ # XMKMF - Set to path of `xmkmf' if not in $PATH (default: xmkmf -a ). # MAINTAINER - The e-mail address of the contact person for this port # (default: ports@FreeBSD.ORG). +# CATEGORIES - A list of descriptive categories into which this port falls +# (no default - optional). +# KEYWORDS - A list of descriptive keywords that might index well for this +# port (no default - optional). # # Variables that typically apply to an individual port. Non-Boolean # variables without defaults are *mandatory*. @@ -256,7 +260,11 @@ PATCH_SITES= ${MASTER_SITE_OVERRIDE} # Derived names so that they're easily overridable. DISTFILES?= ${DISTNAME}${EXTRACT_SUFX} PKGNAME?= ${DISTNAME} + +# Documentation MAINTAINER?= ports@FreeBSD.ORG +CATEGORIES?= orphans +KEYWORDS?= orphans .if exists(${PACKAGES}) PKGFILE?= ${PACKAGES}/${PKGNAME}${PKG_SUFX} @@ -368,7 +376,7 @@ describe: else \ echo -n "|/dev/null"; \ fi - @echo -n "|${MAINTAINER}" + @echo -n "|${MAINTAINER}|${CATEGORIES}|${KEYWORDS}" @echo "" .endif |