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. You can also check your answers for correctness while playing. The game stores your current notes and answers, so that you can pick up where you left off the next time you play. WWW: http://gottcode.org/simsu/ PR: ports/167238 Submitted by: nemysis@gmx.ch
This commit is contained in:
parent
bf0b661786
commit
e7d05c2862
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=296521
@ -809,6 +809,7 @@
|
||||
SUBDIR += shootingstar
|
||||
SUBDIR += simplevaders
|
||||
SUBDIR += simutrans
|
||||
SUBDIR += simsu
|
||||
SUBDIR += six
|
||||
SUBDIR += sjeng
|
||||
SUBDIR += sl
|
||||
|
65
games/simsu/Makefile
Normal file
65
games/simsu/Makefile
Normal file
@ -0,0 +1,65 @@
|
||||
# New Ports collection makefile for: simsu
|
||||
# Date created: 2012-04-21
|
||||
# Whom: nemysis@gmx.ch
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= simsu
|
||||
PORTVERSION= 1.2.2
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://gottcode.org/${PORTNAME}/
|
||||
EXTRACT_SUFX= -src.tar.bz2
|
||||
|
||||
MAINTAINER= nemysis@gmx.ch
|
||||
COMMENT= Simsu is a basic Sudoku game
|
||||
|
||||
LICENSE= GPLv3
|
||||
|
||||
USE_QT_VER= 4
|
||||
QT_COMPONENTS= moc_build qmake_build rcc_build uic_build iconengines imageformats
|
||||
|
||||
INSTALLS_ICONS= yes
|
||||
HAS_CONFIGURE= yes
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
|
||||
${QMAKE} PREFIX=${PREFIX} ${WRKSRC}/${PORTNAME}.pro
|
||||
|
||||
CONFIGURE_ENV+= UIC="${UIC}" QMAKE="${QMAKE}" QMAKESPEC="${QMAKESPEC}"
|
||||
MAKE_ENV+= QMAKESPEC="${QMAKESPEC}"
|
||||
|
||||
USE_GMAKE= yes
|
||||
MAKE_JOBS_SAFE= yes
|
||||
|
||||
PORTDATA= *
|
||||
PORTDOCS= CREDITS ChangeLog INSTALL
|
||||
|
||||
do-install:
|
||||
# Executable
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
||||
|
||||
# Icons
|
||||
${CP} -R ${WRKSRC}/icons/hicolor ${PREFIX}/share/icons/
|
||||
|
||||
# Pixmaps and Desktop
|
||||
${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}_32.xpm ${PREFIX}/share/pixmaps/
|
||||
${MKDIR} ${PREFIX}/share/applications
|
||||
${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.desktop ${PREFIX}/share/applications/
|
||||
|
||||
post-install:
|
||||
# Data
|
||||
.if !defined (NOPORTDATA)
|
||||
${MKDIR} ${DATADIR}
|
||||
@(cd ${WRKSRC} && ${COPYTREE_SHARE} "symmetry translations" ${DATADIR})
|
||||
.endif
|
||||
|
||||
# Documentations
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
. for f in ${PORTDOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
||||
. endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
2
games/simsu/distinfo
Normal file
2
games/simsu/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (simsu-1.2.2-src.tar.bz2) = 86c18e7c05659ce3e9363b38941fe6f5024943bd2a7b24532bc56ab6a669dddd
|
||||
SIZE (simsu-1.2.2-src.tar.bz2) = 295584
|
8
games/simsu/pkg-descr
Normal file
8
games/simsu/pkg-descr
Normal file
@ -0,0 +1,8 @@
|
||||
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. You can also check your answers for
|
||||
correctness while playing. The game stores your current notes and answers,
|
||||
so that you can pick up where you left off the next time you play.
|
||||
|
||||
WWW: http://gottcode.org/simsu/
|
13
games/simsu/pkg-plist
Normal file
13
games/simsu/pkg-plist
Normal file
@ -0,0 +1,13 @@
|
||||
bin/simsu
|
||||
share/applications/simsu.desktop
|
||||
share/icons/hicolor/128x128/apps/simsu.png
|
||||
share/icons/hicolor/16x16/apps/simsu.png
|
||||
share/icons/hicolor/22x22/apps/simsu.png
|
||||
share/icons/hicolor/24x24/apps/simsu.png
|
||||
share/icons/hicolor/256x256/apps/simsu.png
|
||||
share/icons/hicolor/32x32/apps/simsu.png
|
||||
share/icons/hicolor/48x48/apps/simsu.png
|
||||
share/icons/hicolor/64x64/apps/simsu.png
|
||||
share/icons/hicolor/scalable/apps/simsu.svg
|
||||
share/pixmaps/simsu_32.xpm
|
||||
@dirrmtry share/applications
|
Loading…
Reference in New Issue
Block a user