diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-11-20 12:38:49 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-11-20 12:38:49 +0000 |
commit | 5b59e10b4cd192ecee6913b2b78e1497f2e4a112 (patch) | |
tree | 25afc7ba343c655ff24153660d4f718dabbae3d3 | |
parent | It's not recommended to put the full man page in this file. ;) (diff) |
Remove unnecessary USE_X11 (implied by USE_IMAKE) and XMKMF (already
defined, why do we need it?). Don't put "x11" in category just because
it uses X, or 2/3 of the games would be in x11. Change "mkdir -p" to
${MKDIR}.
In case you are wondering why I jumped on this so quickly, these are
exactly the things I was fixing on Mr. Nakai's other ports too. ;)
Notes
Notes:
svn path=/head/; revision=4613
-rw-r--r-- | games/xsokoban/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/games/xsokoban/Makefile b/games/xsokoban/Makefile index 91ab1f091d70..623e3a34cfb6 100644 --- a/games/xsokoban/Makefile +++ b/games/xsokoban/Makefile @@ -3,25 +3,23 @@ # Date created: 16 November 1996 # Whom: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1996/11/20 07:06:58 tg Exp $ # DISTNAME= xsokoban-3.3b -CATEGORIES= games x11 +CATEGORIES= games MASTER_SITES= ftp://ftp.pmg.lcs.mit.edu/pub/xsokoban/ MAINTAINER= Nakai@Mlab.t.u-tokyo.ac.jp LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm -USE_X11= yes USE_IMAKE= yes -XMKMF= xmkmf WRKSRC= ${WRKDIR}/xsokoban ALL_TARGET= xsokoban post-install: - @mkdir -p ${PREFIX}/lib/X11/xsokoban/scores \ + @${MKDIR} ${PREFIX}/lib/X11/xsokoban/scores \ ${PREFIX}/lib/X11/xsokoban/bitmaps/defaults \ ${PREFIX}/lib/X11/xsokoban/saves \ ${PREFIX}/lib/X11/xsokoban/screens |