diff options
author | Satoshi Taoka <taoka@FreeBSD.org> | 1999-09-09 01:42:05 +0000 |
---|---|---|
committer | Satoshi Taoka <taoka@FreeBSD.org> | 1999-09-09 01:42:05 +0000 |
commit | 473b4251587ab0bfa9e0b35be73bc6e01647f183 (patch) | |
tree | d7c4c71210232b8679e2202f1de86defea697611 /games/columns/Makefile | |
parent | One line change for COMMENT. Make it more readable. (diff) |
Nice little implementation of columns game for X Window System
PR: 13392
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Notes
Notes:
svn path=/head/; revision=21460
Diffstat (limited to 'games/columns/Makefile')
-rw-r--r-- | games/columns/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/games/columns/Makefile b/games/columns/Makefile new file mode 100644 index 000000000000..9fe6f24ef602 --- /dev/null +++ b/games/columns/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: columns +# Version required: 1.1 +# Date created: 26 August 1999 +# Whom: Andrey Zakhvatov +# +# $FreeBSD$ +# + +DISTNAME= columns-1.1 +CATEGORIES= games +MASTER_SITES= ftp://ftp.phreax.net/ + +MAINTAINER= andy@icc.surw.chel.su + +LIB_DEPENDS= SDL.0:${PORTSDIR}/devel/sdl + +ALL_TARGET= + +USE_X_PREFIX= yes + +do-install: + @ ${INSTALL_PROGRAM} ${WRKSRC}/columns ${PREFIX}/bin + @ ${MKDIR} ${PREFIX}/share/columns + @ ${INSTALL_DATA} ${WRKSRC}/*.bmp ${PREFIX}/share/columns + @ ${INSTALL_DATA} ${WRKSRC}/*.ofn ${PREFIX}/share/columns + @ ${INSTALL_DATA} ${WRKSRC}/*.wav ${PREFIX}/share/columns + +post-install: +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${PREFIX}/share/doc/columns + @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/columns +.endif + +.include <bsd.port.mk> |