954d7c8af6
Hexalate is a color matching game. The goal of the game is to rotate and position the circles so that each touching line matches in color. You rotate circles by right clicking, and you move circles by dragging them. Simsu is a basic Sudoku game. You can switch between filling in notes (pencil mode), or filling in answers (pen mode). To make it easier to see where to place numbers, you can highlight all instances of a number. Tetzle is a jigsaw puzzle game that uses tetrominoes for the pieces. Any image can be imported and used to create puzzles with a wide range of sizes. Peg-E is a peg solitaire game in which you jump over pieces in order to remove them from the board, ultimately trying to eliminate all but one. ok ajacoutot@
28 lines
759 B
Makefile
28 lines
759 B
Makefile
# $OpenBSD: Makefile.inc,v 1.1.1.1 2012/09/04 09:29:38 landry Exp $
|
|
|
|
CATEGORIES = games/gottcode games
|
|
PKGNAME ?= ${DISTNAME:S/-src//}
|
|
EXTRACT_SUFX ?= .tar.bz2
|
|
|
|
HOMEPAGE ?= http://gottcode.org/${GAME}/
|
|
MASTER_SITES ?= ${HOMEPAGE}
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WRKDIST ?= ${WRKDIR}/${DISTNAME:S/-src//}
|
|
MODULES += x11/qt4
|
|
RUN_DEPENDS += devel/desktop-file-utils x11/gtk+2,-guic
|
|
WANTLIB += ICE SM X11 Xext Xi Xinerama Xrender fontconfig freetype
|
|
WANTLIB += QtGui c m pthread stdc++
|
|
|
|
MAKE_FLAGS += CXX=${CXX} \
|
|
QMAKE_CXXFLAGS="${CXXFLAGS}"
|
|
FAKE_FLAGS += INSTALL_ROOT=${DESTDIR}
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${CONFIGURE_ENV} ${LOCALBASE}/bin/qmake4
|