-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import LapisPuzzle, a tetris like game.
LapisPuzzle is a tetris-like game which challenges the player by making the opposing team's victories count doubly against the player and vice versa. OK sthen@
- Loading branch information
Sebastian Reitenbach
committed
May 13, 2011
1 parent
ebc28c8
commit a555541
Showing
5 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# $OpenBSD: Makefile,v 1.1.1.1 2011/05/13 11:35:18 sebastia Exp $ | ||
|
||
COMMENT = tetris like puzzle game | ||
|
||
DISTNAME = LapisPuzzle-1.1.0 | ||
PKGNAME = ${DISTNAME:L} | ||
CATEGORIES = games | ||
|
||
HOMEPAGE = http://gap.nongnu.org/lapispuzzle/ | ||
MASTER_SITES = http://savannah.nongnu.org/download/gap/ | ||
|
||
MODULES = x11/gnustep | ||
WANTLIB += c m pthread | ||
|
||
.include <bsd.port.mk> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
MD5 (gnustep/LapisPuzzle-1.1.0.tar.gz) = M1YihFuDzqWTXhCslRPWCA== | ||
RMD160 (gnustep/LapisPuzzle-1.1.0.tar.gz) = oolVZ0RaaHz6LCfYBXR6M21hh/A= | ||
SHA1 (gnustep/LapisPuzzle-1.1.0.tar.gz) = GsIc289EdAZVxhQ/bFQrIXs+ki4= | ||
SHA256 (gnustep/LapisPuzzle-1.1.0.tar.gz) = 6wDxrhs9BDd2ACh/fZTFPjmMNE1xpeBGxyV1VvOnE2k= | ||
SIZE (gnustep/LapisPuzzle-1.1.0.tar.gz) = 25037 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
$OpenBSD: patch-main_m,v 1.1.1.1 2011/05/13 11:35:18 sebastia Exp $ | ||
|
||
fix startup | ||
|
||
--- main.m.orig Tue Jul 20 02:52:16 2004 | ||
+++ main.m Wed May 4 17:42:41 2011 | ||
@@ -21,11 +21,7 @@ | ||
|
||
#include <AppKit/AppKit.h> | ||
|
||
-int main(int argc, char **argv) | ||
+int main(int argc, const char **argv) | ||
{ | ||
- NSAutoreleasePool *pool = [NSAutoreleasePool new]; | ||
- [NSApplication sharedApplication]; | ||
- [NSApp run]; | ||
- [pool release]; | ||
- return 0; | ||
+ return NSApplicationMain (argc, argv); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
LapisPuzzle is a tetris-like game which challenges the player by making | ||
the opposing team's victories count doubly against the player and vice | ||
versa. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/05/13 11:35:18 sebastia Exp $ | ||
bin/LapisPuzzle | ||
libexec/GNUstep/ | ||
libexec/GNUstep/LapisPuzzle.app/ | ||
@bin libexec/GNUstep/LapisPuzzle.app/LapisPuzzle | ||
libexec/GNUstep/LapisPuzzle.app/Resources/ | ||
libexec/GNUstep/LapisPuzzle.app/Resources/Info-gnustep.plist | ||
libexec/GNUstep/LapisPuzzle.app/Resources/LapisPuzzle.desktop | ||
libexec/GNUstep/LapisPuzzle.app/Resources/LapisPuzzle.gorm/ | ||
libexec/GNUstep/LapisPuzzle.app/Resources/LapisPuzzle.gorm/data.classes | ||
libexec/GNUstep/LapisPuzzle.app/Resources/LapisPuzzle.gorm/objects.gorm | ||
libexec/GNUstep/LapisPuzzle.app/Resources/LapisPuzzle.tiff | ||
libexec/GNUstep/LapisPuzzle.app/Resources/LapisPuzzleInfo.plist | ||
libexec/GNUstep/LapisPuzzle.app/stamp.make |