diff options
author | asami <asami@FreeBSD.org> | 1996-11-20 20:38:49 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-20 20:38:49 +0800 |
commit | 3656f92411a5e739497f51fb7fb06646ff969f84 (patch) | |
tree | 16d5fb416c400f911853e9ffd4ac9d2b1926abe3 /games | |
parent | 931a6f3d6a05f68d9721fea574925a47ccd285a0 (diff) | |
download | freebsd-ports-gnome-3656f92411a5e739497f51fb7fb06646ff969f84.tar.gz freebsd-ports-gnome-3656f92411a5e739497f51fb7fb06646ff969f84.tar.zst freebsd-ports-gnome-3656f92411a5e739497f51fb7fb06646ff969f84.zip |
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. ;)
Diffstat (limited to 'games')
-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 |