-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial import of Bomberclone, a Bomberman clone.
- Loading branch information
Showing
6 changed files
with
67 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,2 @@ | ||
Lay bombs and try to make the other players explode. | ||
With network multi-player mode. |
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,21 @@ | ||
# $NetBSD: Makefile,v 1.1.1.1 2003/06/23 15:48:24 wiz Exp $ | ||
# | ||
|
||
DISTNAME= bomberclone-0.9.9 | ||
CATEGORIES= games | ||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bomberclone/} | ||
EXTRACT_SUFX= .tar.bz2 | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= http://bomberclone.sourceforge.net/ | ||
COMMENT= multi-player Bomberman clone | ||
|
||
DEPENDS+= bomberclone-data>=0.7:../../games/bomberclone-data | ||
|
||
USE_BUILDLINK2= yes | ||
USE_PKGLOCALEDIR= yes | ||
GNU_CONFIGURE= yes | ||
|
||
.include "../../audio/SDL_mixer/buildlink2.mk" | ||
.include "../../devel/SDL/buildlink2.mk" | ||
.include "../../mk/bsd.pkg.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,10 @@ | ||
@comment $NetBSD: PLIST,v 1.1.1.1 2003/06/23 15:48:24 wiz Exp $ | ||
bin/bomberclone | ||
share/doc/bomberclone/AUTHORS | ||
share/doc/bomberclone/COPYING | ||
share/doc/bomberclone/ChangeLog | ||
share/doc/bomberclone/INSTALL | ||
share/doc/bomberclone/NEWS | ||
share/doc/bomberclone/README | ||
share/doc/bomberclone/TODO | ||
@dirrm share/doc/bomberclone |
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,8 @@ | ||
$NetBSD: distinfo,v 1.1.1.1 2003/06/23 15:48:24 wiz Exp $ | ||
|
||
SHA1 (bomberclone-0.9.9.tar.bz2) = 88c757525caf29ea6498b1dadec0ff3c478dd6b0 | ||
Size (bomberclone-0.9.9.tar.bz2) = 127639 bytes | ||
SHA1 (bomberclone-data-0.7.tar.bz2) = a324474aa141167fb154247260b339d64dce3fe6 | ||
Size (bomberclone-data-0.7.tar.bz2) = 3279402 bytes | ||
SHA1 (patch-aa) = c5d5b1d3988847dbf4a4eec828d870e8e3c74551 | ||
SHA1 (patch-ab) = 546f40d8f097c8bd352877f3fb767a61f4551d6c |
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,13 @@ | ||
$NetBSD: patch-aa,v 1.1.1.1 2003/06/23 15:48:24 wiz Exp $ | ||
|
||
--- Makefile.in.orig 2003-06-12 22:53:17.000000000 +0200 | ||
+++ Makefile.in | ||
@@ -85,7 +85,7 @@ install_sh = @install_sh@ | ||
|
||
SUBDIRS = src | ||
|
||
-bomberclonedocdir = ${prefix}/doc/bomberclone | ||
+bomberclonedocdir = ${prefix}/share/doc/bomberclone | ||
bomberclonedoc_DATA = \ | ||
README\ | ||
COPYING\ |
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,13 @@ | ||
$NetBSD: patch-ab,v 1.1.1.1 2003/06/23 15:48:24 wiz Exp $ | ||
|
||
--- configure.orig 2003-06-12 22:53:21.000000000 +0200 | ||
+++ configure | ||
@@ -1996,7 +1996,7 @@ else | ||
fi | ||
|
||
packagedatadir=share/${PACKAGE} | ||
-packagedocdir=doc/${PACKAGE} | ||
+packagedocdir=share/doc/${PACKAGE} | ||
|
||
packagepixmapsdir=${packagedatadir}/pixmaps | ||
packagehelpdir=${packagedatadir}/help |