mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
3a4a8bf8a5
- Trim header
31 lines
664 B
Makefile
31 lines
664 B
Makefile
# Created by: Travis Poppe <tlp@liquidx.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ctris
|
|
PORTVERSION= 0.42
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.hackl.dhs.org/data/download/files/ \
|
|
CRITICAL
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Colorized, small, and flexible Tetris(TM)-clone for the console
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_BZIP2= yes
|
|
MANCOMPRESSED= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
MAN6= ctris.6
|
|
PLIST_FILES= bin/ctris
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|gcc|${CC}|" -e "s|CFLAGS=.*|CFLAGS+=-Wall|" \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_MAN} ${WRKSRC}/ctris.6.gz ${PREFIX}/man/man6/ctris.6.gz
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ctris ${PREFIX}/bin/ctris
|
|
|
|
.include <bsd.port.mk>
|