0f27c80bba
to fill a grid with symbols so that each column, row and block on the game board contains only one instance of each symbol. In KSudoku the symbols are usually the numbers 1 to 9, but may be the letters A to P or A to Y in larger puzzles. Puzzles start with the board partially filled and it is your job to fill in the rest.
18 lines
485 B
Makefile
18 lines
485 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/04/24 18:19:02 zhuk Exp $
|
|
|
|
COMMENT = sudoku game for KDE
|
|
DISTNAME = ksudoku-${MODKDE4_VERSION}
|
|
|
|
WANTLIB = c m pthread stdc++
|
|
WANTLIB += GL GLU ICE SM X11 Xext
|
|
WANTLIB += lib/qt4/QtDBus lib/qt4/QtGui lib/qt4/QtNetwork
|
|
WANTLIB += lib/qt4/QtOpenGL lib/qt4/QtSvg lib/qt4/QtXml
|
|
WANTLIB += ${KDE4LIB}/kdegamesprivate ${KDE4LIB}/kdeui ${KDE4LIB}/kio
|
|
|
|
MODKDE4_USE = games
|
|
|
|
RUN_DEPENDS = devel/desktop-file-utils \
|
|
x11/gtk+2,-guic
|
|
|
|
.include <bsd.port.mk>
|