diff options
author | dhn <dhn@FreeBSD.org> | 2011-09-07 00:11:24 +0800 |
---|---|---|
committer | dhn <dhn@FreeBSD.org> | 2011-09-07 00:11:24 +0800 |
commit | 4dba27864d3f1a2b081fd961f69d83fa5f27fb95 (patch) | |
tree | 311584663a7919e2edbffaab020e281fd1fbc550 /games/xfrisk | |
parent | 84b62dbdb2c17da50d526124d425b60638872761 (diff) | |
download | freebsd-ports-gnome-4dba27864d3f1a2b081fd961f69d83fa5f27fb95.tar.gz freebsd-ports-gnome-4dba27864d3f1a2b081fd961f69d83fa5f27fb95.tar.zst freebsd-ports-gnome-4dba27864d3f1a2b081fd961f69d83fa5f27fb95.zip |
- Get rid of useless lines
- Update WWW/pkg-descr
- Bump PORTREVISION
- Support LOCALBASE
PR: ports/160110
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Diffstat (limited to 'games/xfrisk')
-rw-r--r-- | games/xfrisk/Makefile | 20 | ||||
-rw-r--r-- | games/xfrisk/pkg-descr | 2 |
2 files changed, 17 insertions, 5 deletions
diff --git a/games/xfrisk/Makefile b/games/xfrisk/Makefile index bdcc01e01963..afc90a0e5a12 100644 --- a/games/xfrisk/Makefile +++ b/games/xfrisk/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfrisk PORTVERSION= 1.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= http://old.tuxick.net/xfrisk/files/ \ http://devel.ringlet.net/games/xfrisk/ @@ -20,12 +20,22 @@ LIB_DEPENDS= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d NO_CDROM= Possible trademark infringement -NO_INSTALL_MANPAGES= yes WRKSRC= ${WRKDIR}/XFrisk -USE_GMAKE= yes USE_XORG= x11 xt xaw xmu sm ice -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" +USE_GMAKE= yes +MAKE_ENV= XDIR="${LOCALBASE}" + +do-install: +.for file in aiColson aiConway aiDummy friskserver xfrisk + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin +.endfor +.for file in risk + ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin +.endfor + @${MKDIR} ${PREFIX}/lib/${PORTNAME} +.for file in Countries.risk Help.risk World.risk + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib/${PORTNAME} +.endfor .include <bsd.port.mk> diff --git a/games/xfrisk/pkg-descr b/games/xfrisk/pkg-descr index 2dc0b450164e..88f41f61a516 100644 --- a/games/xfrisk/pkg-descr +++ b/games/xfrisk/pkg-descr @@ -1,3 +1,5 @@ XFrisk is a multi-player Risk game that supports network play. It includes a server, "friskserver", and a client, "xfrisk". Note that the client supports only 8bpp and 24bpp visuals. + +WWW: http://old.tuxick.net/xfrisk/ |