summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-03-22 21:46:04 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-03-22 21:46:04 +0000
commit84d07a94d57ead252b94f4bf519e60762fc3c3cc (patch)
tree627fe37de2a4384826a50bd0abb8cf8afceb5866 /Mk/bsd.port.mk
parentAdd new EXTRACT_BEFORE_FLAGS and EXTRACT_AFTER_FLAGS variables to make (diff)
Add maintainer to the index line.
Notes
Notes: svn path=/head/; revision=1185
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk18
1 files changed, 13 insertions, 5 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index f44c73d318ce..7a5a21621fde 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.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