diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-03-22 21:46:04 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-03-22 21:46:04 +0000 |
commit | 84d07a94d57ead252b94f4bf519e60762fc3c3cc (patch) | |
tree | 627fe37de2a4384826a50bd0abb8cf8afceb5866 /Mk/bsd.port.mk | |
parent | d7b7c8c4027aff0953be175fc8187d05a6bf152a (diff) | |
download | ports-84d07a94d57ead252b94f4bf519e60762fc3c3cc.tar.gz ports-84d07a94d57ead252b94f4bf519e60762fc3c3cc.zip |
Notes
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 18 |
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 |