From owner-freebsd-ports Sun May 17 23:04:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12648 for freebsd-ports-outgoing; Sun, 17 May 1998 23:04:17 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12637 for ; Sun, 17 May 1998 23:04:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA27145; Sun, 17 May 1998 23:00:01 -0700 (PDT) Date: Sun, 17 May 1998 23:00:01 -0700 (PDT) Message-Id: <199805180600.XAA27145@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Hideyuki Suzuki Subject: Re: ports/6667: ports japanese/kon: install problem of man pages Reply-To: Hideyuki Suzuki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6667; it has been noted by GNATS. From: Hideyuki Suzuki To: sada@e-mail.ne.jp Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/6667: ports japanese/kon: install problem of man pages Date: Mon, 18 May 1998 14:54:20 +0900 > port japanese/kon sometimes need the directory '${PREFIX}/man/ja_JP.EUC/man1' > before `make install', or fail to install the man page. Thanks for your problem report. :-) This problem seems also due to the change of directory name from ja_JP.EUC to ja (at the revision 1.17.2.12 and 1.37 of src/etc/mtree/BSD.local.dist), which was requested in ports/5251. And yes, the directory should be created for the case of PREFIX other than /usr/local. Can you check if the following patch fixes the problem? Index: Makefile =================================================================== RCS file: /pub/FreeBSD-CVS/ports/japanese/kon/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 1997/09/19 19:27:45 1.13 +++ Makefile 1998/05/18 05:43:40 @@ -17,7 +17,7 @@ MAINTAINER= hideyuki@sat.t.u-tokyo.ac.jp MAN1= kon.1 -MANLANG= ja_JP.EUC +MANLANG= ja EXTRACT_ONLY= kon2-0.3.tar.gz DOCDIR= ${PREFIX}/share/doc/kon2 @@ -29,7 +29,8 @@ @(cd ${WRKSRC}; ${MAKE} -f Makefile.FreeBSD config) post-install: - @${INSTALL_MAN} ${WRKSRC}/doc/kon.1 ${PREFIX}/man/ja_JP.EUC/man1 + @${MKDIR} ${PREFIX}/man/ja/man1 + @${INSTALL_MAN} ${WRKSRC}/doc/kon.1 ${PREFIX}/man/ja/man1 .if !defined(NOPORTDOCS) @${MKDIR} ${DOCDIR} @${INSTALL_DATA} ${WRKSRC}/doc/README ${WRKSRC}/doc/README.FreeBSD \ hideyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message