mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
b23fcc25c6
to remove them from the board, ultimately trying to eliminate all but one. The boards are randomly generated, with 100 levels of difficulty. The game auto-saves, and has undo-redo capability. Pieces can move horizontally, vertically, and diagonally. WWW: http://gottcode.org/peg-e/
33 lines
750 B
Makefile
33 lines
750 B
Makefile
# New ports collection makefile for: peg-e
|
|
# Date created: 28 Jan 2009
|
|
# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= peg-e
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://gottcode.org/peg-e/ \
|
|
http://mirror.amdmi3.ru/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Peg elimination game
|
|
|
|
USE_BZIP2= yes
|
|
USE_QT_VER= 4
|
|
|
|
QT_COMPONENTS= corelib gui moc_build opengl qmake_build rcc_build xml
|
|
QT_COMPONENTS= corelib gui moc_build qmake_build rcc_build
|
|
WANT_GNOME= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} \
|
|
PREFIX=${PREFIX} -spec ${QMAKESPEC} ${PORTNAME}.pro
|
|
|
|
.include <bsd.port.mk>
|