mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
7813b13f3b
- added timer - addedd title-screen - bugfix - Fix WWW. Approved by: roberto(mentor)
34 lines
729 B
Makefile
34 lines
729 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: nInvaders
|
|
# Date created: Tue Jul 09, 2002
|
|
# Whom: Michael L. Hostbaek (mich@freebsdcluster.org)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nInvaders
|
|
PORTVERSION= 0.1.1
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ninvaders
|
|
DISTNAME= ninvaders-${PORTVERSION}
|
|
|
|
MAINTAINER= mich@FreeBSD.org
|
|
COMMENT= The nIvaders game is a Space Invaders clone for ncurses
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|^CC|#CC|g" \
|
|
-e "s|^CFLAGS|#CFLAGS|g" ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|