summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-03-22 21:46:04 +0000
committerjkh <jkh@FreeBSD.org>1995-03-22 21:46:04 +0000
commit917bd1f822158784fdec3f842eb3b2a35db7db97 (patch)
tree720cbfff24544e4cbb9facdf52b71025e019d0a0 /share
parent3193e6f8ade0b3ce701667059d1124dfeccfa50a (diff)
downloadFreeBSD-src-917bd1f822158784fdec3f842eb3b2a35db7db97.zip
FreeBSD-src-917bd1f822158784fdec3f842eb3b2a35db7db97.tar.gz
Add maintainer to the index line.
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.port.mk18
1 files changed, 13 insertions, 5 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk
index f44c73d..7a5a216 100644
--- a/share/mk/bsd.port.mk
+++ b/share/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.122 1995/03/21 22:43:36 jkh Exp $
+# $Id: bsd.port.mk,v 1.123 1995/03/22 21:28:31 jkh Exp $
#
# Please view me with 4 column tabs!
@@ -229,7 +229,7 @@ MASTER_SITES= ${MASTER_SITE_OVERRIDE}
# Derived names so that they're easily overridable.
DISTFILES?= ${DISTNAME}${EXTRACT_SUFX}
PKGNAME?= ${DISTNAME}
-MAINTAINER?= FreeBSD-Ports@FreeBSD.ORG
+MAINTAINER?= ports@FreeBSD.ORG
.if exists(${PACKAGES})
PKGFILE?= ${PACKAGES}/${PKGNAME}${PKG_SUFX}
@@ -321,19 +321,27 @@ patch:
# More standard targets start here.
+# This target generates an index entry suitable for aggregation into
+# a large index. Format is:
+#
+# distribution-name|port-path|installation-prefix|comment| \
+# description-file|maintainer
+#
.if !target(describe)
describe:
- @echo -n "${DISTNAME}@${.CURDIR}/${DISTNAME}@${PREFIX}@"
+ @echo -n "${DISTNAME}|${.CURDIR}/${DISTNAME}|"
+ @echo -n "${PREFIX}|"
@if [ -f ${PKGDIR}/COMMENT ]; then \
echo -n "`cat ${PKGDIR}/COMMENT`"; \
else \
echo -n "** No Description"; \
fi
@if [ -f ${PKGDIR}/DESCR ]; then \
- echo -n "@${PKGDIR}/DESCR"; \
+ echo -n "|${PKGDIR}/DESCR"; \
else \
- echo -n "@/dev/null"; \
+ echo -n "|/dev/null"; \
fi
+ echo -n "|${MAINTAINER}"
@echo ""
.endif
OpenPOWER on IntegriCloud