From owner-freebsd-ports Wed Jun 25 00:30:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA07417 for ports-outgoing; Wed, 25 Jun 1997 00:30:03 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA07407; Wed, 25 Jun 1997 00:30:01 -0700 (PDT) Date: Wed, 25 Jun 1997 00:30:01 -0700 (PDT) Message-Id: <199706250730.AAA07407@hub.freebsd.org> To: freebsd-ports Cc: From: asami@cs.berkeley.edu (Satoshi Asami) Subject: Re: ports/2905: Fixed port: xshisen-1.36 Reply-To: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/2905; it has been noted by GNATS. From: asami@cs.berkeley.edu (Satoshi Asami) To: nakai@elelab.nsc.co.jp Cc: freebsd-gnats-submit@hub.freebsd.org Subject: Re: ports/2905: Fixed port: xshisen-1.36 Date: Wed, 25 Jun 1997 00:27:40 -0700 (PDT) * -# runs fine on ssh connection * -#IS_INTERACTIVE= YES # Has to create an app-defaults file Please leave these two lines in there, there are a few ports like this and I would like to keep some reminder so we can find those easily if we decide to do something about them in the future. * -GNU_CONFIGURE= YES * -#CONFIGURE_ARGS=--enable-japanese=euc #Japanese char set euc, jis sjis * +HAS_CONFIGURE= YES Are you sure? GNU configure scripts may work fine without "--prefix=${PREFIX}", but it will make a difference if the user tries to change the installation prefix by defining PREFIX.... * post-install: : * + ${MKDIR} ${PREFIX}/man/man6 This is not necessary. Many man directories are created by mtree now. * + (cd ${WRKSRC}; make install.man) Just change INSTALL_TARGET to "install install.man". * -lib/X11/app-defaults/XShisen/XShisen.ad * -lib/X11/ja_JP.JIS7/app-defaults/XShisen/XShisen-j.ad Did the app-defaults file just disappear? (It seems it wasn't working before anyway though....) * +lib/X11/xshisen/ton.xpm * man/man6/xshisen.6.gz * -man/ja_JP.JIS7/man6/xshisen.6.gz * -@dirrm share/xshisen You probably want to add "@dirrm lib/X11/xshisen" here instead. * diff -ruN xshisen.orig/scripts/configure xshisen/scripts/configure * --- xshisen.orig/scripts/configure Thu Jan 1 00:00:00 1970 * +++ xshisen/scripts/configure Wed Mar 5 00:07:34 1997 * @@ -0,0 +1,3 @@ * +#!/bin/sh * + * +/usr/bin/perl -pi -e 's|/usr/X11R6|'$X11BASE'|g' $WRKSRC/configure Oh ok, so this is how you redefine PREFIX. Never mind my comment about GNU_CONFIGURE above. ;) Satoshi