mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
733d35bf97
You can use GNUDoku to challenge yourself, to compute solutions, or to verify your own solutions. A Su Doku puzzle is a 9x9 grid which must be filled with numbers between 1 and 9 such that each row, column, and 3x3 square contains all 9 numbers. WWW: http://icculus.org/~jcspray/GNUDoku/ PR: ports/92733 Submitted by: Dmitry Marakasov <amdmi3@mail.ru>
28 lines
688 B
Makefile
28 lines
688 B
Makefile
# New ports collection makefile for: GNUDoku
|
|
# Date created: 12 Jan 2006
|
|
# Whom: Dmitry Marakasov <amdmi3@mail.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= GNUDoku
|
|
PORTVERSION= 0.93
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://offload1.icculus.org/~jcspray/GNUDoku/ \
|
|
http://icculus.org/~jcspray/GNUDoku/
|
|
|
|
MAINTAINER= amdmi3@mail.ru
|
|
COMMENT= A free program for creating and solving Su Doku puzzles
|
|
|
|
LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24
|
|
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= CXX="${CXX}" CXXLAGS="${CXXFLAGS}"
|
|
USE_GCC= 3.4+
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|PREFIX=|PREFIX?=|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e 's|CXXFLAGS=|CXXFLAGS+=|' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|