diff options
author | obrien <obrien@FreeBSD.org> | 1997-01-03 17:38:01 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-01-03 17:38:01 +0800 |
commit | 02a2a547475abccac110b403fa8c03923a0f80a8 (patch) | |
tree | 994a1119f83174e777cce15612e84c1a88a9c0c8 /games/xshisen | |
parent | 256e31ea6c06f7b19356f9cb777455184c857987 (diff) | |
download | freebsd-ports-gnome-02a2a547475abccac110b403fa8c03923a0f80a8.tar.gz freebsd-ports-gnome-02a2a547475abccac110b403fa8c03923a0f80a8.tar.zst freebsd-ports-gnome-02a2a547475abccac110b403fa8c03923a0f80a8.zip |
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 |