From owner-freebsd-x11@FreeBSD.ORG Fri Sep 21 07:20:07 2007 Return-Path: Delivered-To: freebsd-x11@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 095F316A418 for ; Fri, 21 Sep 2007 07:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 00F9913C44B for ; Fri, 21 Sep 2007 07:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l8L7K6RB084381 for ; Fri, 21 Sep 2007 07:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l8L7K6Zx084374; Fri, 21 Sep 2007 07:20:06 GMT (envelope-from gnats) Date: Fri, 21 Sep 2007 07:20:06 GMT Message-Id: <200709210720.l8L7K6Zx084374@freefall.freebsd.org> To: freebsd-x11@FreeBSD.org From: Edwin Groothuis Cc: Subject: ports/112940: x11/xphelloworld - Man page wierdness X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2007 07:20:07 -0000 The following reply was made to PR ports/112940; it has been noted by GNATS. From: Edwin Groothuis To: FreeBSD Gnats Submit Cc: Subject: ports/112940: x11/xphelloworld - Man page wierdness Date: Fri, 21 Sep 2007 17:11:13 +1000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Fix with this. -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=aaa ? files ? work Index: Makefile =================================================================== RCS file: /home/pcvs/ports/x11/xphelloworld/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 19 May 2007 20:28:07 -0000 1.1 +++ Makefile 21 Sep 2007 07:10:17 -0000 @@ -7,6 +7,7 @@ PORTNAME= xphelloworld PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -23,4 +24,14 @@ xpsimplehelloworld.1 \ xpxthelloworld.1 +post-build: + ${REINPLACE_CMD} \ + -e "s/__appmansuffix__/1/g" \ + -e "s/__miscmansuffix__/7/g" \ + -e "s/__libmansuffix__/3Xp/g" \ + ${WRKSRC}/xphelloworld/xphelloworld.man \ + ${WRKSRC}/xpsimplehelloworld/xpsimplehelloworld.man \ + ${WRKSRC}/xpxmhelloworld/xpxmhelloworld.man \ + ${WRKSRC}/xpxthelloworld/xpxthelloworld.man + .include --17pEHd4RhPHOinZp--