8bad47274c
- Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/connectagram - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Break lines around 80 characters games/cretan-hubris - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/fbg2 - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/gottet - Transfer maintainership to games@ team games/gtkatlantic - Simplify master site - Use tar.gz instead of tar.bz2 - Transfer maintainership to games@ team - Don't silence warnings - Set PORTSCOUT, Upstream use GTK3 in newer Versions games/kye - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/madbomber - Transfer maintainership to games@ team games/megamario - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Add fixes_v1.7.txt to DOCS games/nelly - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Cosmetical changes games/oneisenough - Transfer maintainership to games@ team - USES shebangfix and SHEBANG_FILES instead of REINPLACE - Simplify installation handling games/patapizza-tetris - Transfer maintainership to games@ team games/puckman - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/pycadia - Transfer maintainership to games@ team games/pyspacewar - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Remove TODO.txt from DOCS games/simsu - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Use tar:bzip2 instead of USE_BZIP2=yes games/smashbattle - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/syobon - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/tanglet - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Use tar:bzip2 instead of USE_BZIP2=yes games/thegrind - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= patapizza-tetris
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/nemysisfreebsdp/${CATEGORIES}/:icons
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}.png:icons
|
|
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= games@FreeBSD.org
|
|
COMMENT= Unofficial clone of the original Tetris game
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= patapizza
|
|
GH_PROJECT= tetris
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
GH_COMMIT= e6f1a41
|
|
|
|
USES= gmake
|
|
USE_SDL= sdl image gfx ttf
|
|
|
|
PORTDOCS= README.md
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
SUB_FILES= ${PORTNAME}
|
|
|
|
DESKTOP_ENTRIES="Patapizza Tetris" "" "${PORTNAME}" \
|
|
"${PORTNAME}" "Game;LogicGame;" ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|CC =|CC ?=|; \
|
|
s|/usr|${PREFIX}|' ${WRKSRC}/Makefile
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \
|
|
-DDATA_PREFIX=\"${DATADIR}/\" \
|
|
-lm `${SDL_CONFIG} --cflags --libs` -lSDL -lSDL_image \
|
|
-lSDL_gfx -lSDL_ttf -lm tetris.c
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
@(cd ${WRKSRC} && ${COPYTREE_SHARE} images ${STAGEDIR}${DATADIR})
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|