aboutsummaryrefslogtreecommitdiff
path: root/games/bastet
Commit message (Collapse)AuthorAgeFilesLines
* - Add SHA256Pav Lucistnik2005-11-241-0/+1
| | | | Notes: svn path=/head/; revision=149325
* games/bastet does busy waitingEdwin Groothuis2004-12-232-0/+68
| | | | | | | | | | | | | | | | | | | | | bastet does busy waiting because the select() call in game.c returns with EINVAL. The reason is that timeout does not point to the struct timeval in the program but to a ncurses function with the same name. I renamed the variable to fix it. Also the value 1000000 is not a valid timeout value because it would have to be encoded as 1 second and 0 microseconds. I fixed it trivially by using 999999 for that value. Also I fixed a gcc warning. Anyway I think the function bast_clear has to be declared somewhere else. Should be easy to fix - temporarily I just put the diff below in my files/ directory of the port. PR: ports/75208 Submitted by: Rudolf Polzer <freebsd-dr@durchnull.de> Notes: svn path=/head/; revision=124908
* Add WWW to pkg-descrEdwin Groothuis2004-10-221-0/+2
| | | | Notes: svn path=/head/; revision=119952
* Add bastet, an ncurses Tetris clone which is harder than every other Tetris.Michael Nottebrock2004-10-216-0/+70
Bastet stands for "bastard tetris" and uses a special algorithm designed to choose the worst brick possible. Notes: svn path=/head/; revision=119915