From owner-freebsd-ports Sat Jun 10 16: 0:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F9B737C98D for ; Sat, 10 Jun 2000 16:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA84664; Sat, 10 Jun 2000 16:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp2.cluster.oleane.net (smtp2.cluster.oleane.net [195.25.12.17]) by hub.freebsd.org (Postfix) with ESMTP id AC46D37B58E for ; Sat, 10 Jun 2000 15:56:44 -0700 (PDT) (envelope-from rguyom@321.net) Received: from diabolic-cow.321.net (dyn-1-1-016.Orl.dialup.oleane.fr [195.25.26.16]) by smtp2.cluster.oleane.net with ESMTP id AAA38834 for ; Sun, 11 Jun 2000 00:57:17 +0200 (CEST) Received: by diabolic-cow.321.net (Postfix, from userid 0) id 314EF2EA; Sun, 11 Jun 2000 00:54:41 +0200 (CEST) Message-Id: <20000610225441.314EF2EA@diabolic-cow.321.net> Date: Sun, 11 Jun 2000 00:54:41 +0200 (CEST) From: rguyom@321.net Reply-To: rguyom@321.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/19185: mail/postfix: manual pages contains !!PREFIX!! instead of the real value Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 19185 >Category: ports >Synopsis: mail/postfix: manual pages contains !!PREFIX!! instead of the real value >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 10 16:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Rémi Guyomarch >Release: FreeBSD 4.0-STABLE i386 >Organization: disorganized >Environment: 4.0-STABLE built June 5 >Description: The FILES section of some postfix man pages contain literrally "!!PREFIX!!" instead of the real value (ie /usr/local most of the time). >How-To-Repeat: Build and install the port. Do "man newaliases" and look and the FILES section. >Fix: In the "configure" script, sed and soelim aren't piped in the right order. "!!PREFIX!!" isn't replaced by the real value because there is just ".so man1/sendmail.1" in mailq.1 and newaliases.1 before "soelim". --- /usr/ports/mail/postfix/scripts/configure Mon Aug 30 14:06:27 1999 +++ scripts/configure Sat Jun 10 22:02:48 2000 @@ -12,15 +12,15 @@ for f in ${MAN1} ; do mv man1/$f man1/$f.bak && \ - sed s+!!PREFIX!!+$PREFIX+g man1/$f + soelim < man1/$f.bak | sed s+!!PREFIX!!+$PREFIX+g > man1/$f done for f in ${MAN5} ; do mv man5/$f man5/$f.bak && \ - sed s+!!PREFIX!!+$PREFIX+g man5/$f + soelim < man5/$f.bak | sed s+!!PREFIX!!+$PREFIX+g > man5/$f done for f in ${MAN8} ; do mv man8/$f man8/$f.bak && \ - sed s+!!PREFIX!!+$PREFIX+g man8/$f + soelim < man8/$f.bak | sed s+!!PREFIX!!+$PREFIX+g > man8/$f done >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message