From owner-freebsd-ports Sat Oct 14 3:10:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id 1A01237B66C for ; Sat, 14 Oct 2000 03:10:49 -0700 (PDT) Received: from bagabeedaboo.security.at12.de (dial-213-168-73-38.netcologne.de [213.168.73.38]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id MAA12561 for ; Sat, 14 Oct 2000 12:10:47 +0200 (MET DST) Received: from localhost (localhost.security.at12.de [127.0.0.1]) by bagabeedaboo.security.at12.de (8.11.1/8.11.0) with ESMTP id e9EAAcs49544 for ; Sat, 14 Oct 2000 12:10:38 +0200 (CEST) (envelope-from pherman@frenchfries.net) Date: Sat, 14 Oct 2000 12:10:37 +0200 (CEST) From: Paul Herman To: freebsd-ports@freebsd.org Subject: make readmes fails to include descriptions Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, A quick check of the -ports mail archive didn't turn up anything, and I think it would just be less hassle for you guys to just mention it here, rather than submitting a PR. (?) "make readmes" doesn't work properly since the format switch. Included is a quick patch against a cvsup from earlier today. -Paul. Index: Mk/bsd.port.subdir.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.subdir.mk,v retrieving revision 1.38 diff -u -2 -r1.38 bsd.port.subdir.mk --- Mk/bsd.port.subdir.mk 2000/08/08 14:56:46 1.38 +++ Mk/bsd.port.subdir.mk 2000/10/14 09:54:24 @@ -211,6 +211,6 @@ @echo -n ''"`cd ${entry}; make package-name | ${HTMLIFY}`: " >> $@.tmp .endif -.if exists(${entry}/pkg/COMMENT) - @${HTMLIFY} ${entry}/pkg/COMMENT >> $@.tmp +.if exists(${entry}/pkg-comment) + @${HTMLIFY} ${entry}/pkg-comment >> $@.tmp .else @echo "(no description)" >> $@.tmp @@ -218,6 +218,6 @@ .endfor @sort -t '>' +1 -2 $@.tmp > $@.tmp2 -.if exists(${.CURDIR}/pkg/DESCR) - @${HTMLIFY} ${.CURDIR}/pkg/DESCR > $@.tmp3 +.if exists(${.CURDIR}/pkg-descr) + @${HTMLIFY} ${.CURDIR}/pkg-descr > $@.tmp3 .else @> $@.tmp3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message