Skip to content

Commit

Permalink
Import LapisPuzzle, a tetris like game.
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 0 deletions.
15 changes: 15 additions & 0 deletions x11/gnustep/lapispuzzle/Makefile
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>
5 changes: 5 additions & 0 deletions x11/gnustep/lapispuzzle/distinfo
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
20 changes: 20 additions & 0 deletions x11/gnustep/lapispuzzle/patches/patch-main_m
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);
}
3 changes: 3 additions & 0 deletions x11/gnustep/lapispuzzle/pkg/DESCR
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.
14 changes: 14 additions & 0 deletions x11/gnustep/lapispuzzle/pkg/PLIST
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

0 comments on commit a555541

Please sign in to comment.