diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1997-01-03 09:38:01 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1997-01-03 09:38:01 +0000 |
commit | 20b9bbed0a7197cfdfeb0f7146d0fa1e48b75e90 (patch) | |
tree | 5ac101f6528045a0a8ced55a32d3264fbb9efd00 /games/xshisen | |
parent | Have manpage go into man6 as the manpage says. (diff) |
Switched to using MASTER_SITES=${MASTER_SITE_XCONTRIB} and
MASTER_SITE_SUBDIR=games
swallace wasn't listed as MAINTAINER of any of his ports
janek@gaja.ipan.lublin.pl wasn't listed as MAINTAINER of any of his ports
bin.bin --> ${BINOWN}.${BINGRP}
chown --> /usr/sbin/chown
(not everyone has /usr/sbin in their path, esp. if you sudo'ed to root)
mkdir -p --> ${MKDIR}
Diffstat (limited to 'games/xshisen')
-rw-r--r-- | games/xshisen/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games/xshisen/Makefile b/games/xshisen/Makefile index ebcdc70857d6..97009436ea57 100644 --- a/games/xshisen/Makefile +++ b/games/xshisen/Makefile @@ -3,12 +3,13 @@ # Date created: 9 Oct 1996 # Whom: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp> # -# $Id: Makefile,v 1.2 1996/11/04 12:59:50 jfitz Exp $ +# $Id: Makefile,v 1.3 1996/11/18 11:27:14 asami Exp $ # DISTNAME= xshisen-1.35 CATEGORIES= games -MASTER_SITES= ftp://ftp.iis.u-tokyo.ac.jp/pub1/X/contrib/games/ +MASTER_SITES= ${MASTER_SITE_XCONTRIB} +MASTER_SITE_SUBDIR= games MAINTAINER= Nakai@Mlab.t.u-tokyo.ac.jp @@ -18,13 +19,13 @@ IS_INTERACTIVE= YES # Has to create an app-defaults file USE_X11= YES GNU_CONFIGURE= YES #CONFIGURE_ARGS=--enable-japanese=euc #Japanese char set euc, jis sjis +MAN6= xshisen.6 post-install: @ strip ${PREFIX}/bin/xshisen @ /bin/chmod 755 ${PREFIX}/bin/xshisen - @ /usr/sbin/chown bin.bin ${PREFIX}/bin/xshisen + @ /usr/sbin/chown ${BINOWN}.${BINGRP} ${PREFIX}/bin/xshisen .if !defined(NOMANCOMPRESS) - gzip -9nf ${PREFIX}/man/man6/xshisen.6 gzip -9nf ${PREFIX}/man/ja_JP.JIS7/man6/xshisen.6 .endif |