Add maintainer to the index line.

This commit is contained in:
Jordan K. Hubbard 1995-03-22 21:46:04 +00:00
parent 0f29bf015c
commit 5abc844b74
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7255

View File

@ -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