Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 May 1998 23:00:01 -0700 (PDT)
From:      Hideyuki Suzuki <hideyuki@sat.t.u-tokyo.ac.jp>
To:        freebsd-ports@FreeBSD.ORG
Subject:   Re: ports/6667: ports japanese/kon: install problem of man pages
Message-ID:  <199805180600.XAA27145@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/6667; it has been noted by GNATS.

From: Hideyuki Suzuki <hideyuki@sat.t.u-tokyo.ac.jp>
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199805180600.XAA27145>