mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
9b5da4ef4f
can be imported and used to create puzzles with a wide range of sizes. Games are saved automatically, and you can select between currently in progress games. WWW: http://gottcode.org/tetzle/ PR: ports/124496 Submitted by: Dmitry Marakasov <amdmi3 at amdmi3.ru>
33 lines
731 B
Makefile
33 lines
731 B
Makefile
# New ports collection makefile for: tetzle
|
|
# Date created: 12 Jun 2008
|
|
# Whom: Dmitry Marakasov <amdmi3@amdmi3.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tetzle
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://gottcode.org/tetzle/ \
|
|
http://www.amdmi3.ru/distfiles/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= amdmi3@amdmi3.ru
|
|
COMMENT= Jigsaw puzzle with tetrominoes
|
|
|
|
USE_BZIP2= yes
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= corelib gui moc opengl qmake rcc xml
|
|
INSTALLS_ICONS= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} \
|
|
PREFIX=${PREFIX} -spec ${QMAKESPEC} tetzle.pro
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tetzle ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|