mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
Initial import of groundhog 1.4.
Groundhog is a small logic game. PR: 40128 Submitted by: Edwin Groothuis <edwin@mavetju.org>
This commit is contained in:
parent
6c49820eb4
commit
0be1c5829c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=65279
@ -120,6 +120,7 @@
|
||||
SUBDIR += gracer
|
||||
SUBDIR += grande
|
||||
SUBDIR += greed
|
||||
SUBDIR += groundhog
|
||||
SUBDIR += gru
|
||||
SUBDIR += grubinvaders
|
||||
SUBDIR += gshisen
|
||||
|
22
games/groundhog/Makefile
Normal file
22
games/groundhog/Makefile
Normal file
@ -0,0 +1,22 @@
|
||||
# New ports collection makefile for: groundhog
|
||||
# Date created: 23 May 2002
|
||||
# Whom: Edwin Groothuis
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= groundhog
|
||||
PORTVERSION= 1.4
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://home-2.tiscali.nl/~cb007736/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
|
||||
LIB_DEPENDS= gtk-x11-2.0:${PORTSDIR}/x11-toolkits/gtk20 \
|
||||
glib-2.0.0:${PORTSDIR}/devel/glib20
|
||||
|
||||
USE_GTK= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
.include <bsd.port.mk>
|
1
games/groundhog/distinfo
Normal file
1
games/groundhog/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (groundhog-1.4.tar.gz) = d350b9c214e4f3743d6f992c1fa72124
|
13
games/groundhog/files/patch-src-highscore.cc
Normal file
13
games/groundhog/files/patch-src-highscore.cc
Normal file
@ -0,0 +1,13 @@
|
||||
--- src/highscore.cc/old Sat May 4 23:43:58 2002
|
||||
+++ src/highscore.cc Thu May 23 14:10:49 2002
|
||||
@@ -26,6 +26,10 @@
|
||||
std::string filename = getenv("HOME");
|
||||
filename += "/.groundhog.highscore";
|
||||
std::ifstream in(filename.c_str());
|
||||
+ if (in==NULL) {
|
||||
+ cout << "Couldn't open highscore file (this is normal the first time the game is ran).\n";
|
||||
+ return;
|
||||
+ }
|
||||
in >> _beginner >> _intermediate >> _expert;
|
||||
}
|
||||
|
1
games/groundhog/pkg-comment
Normal file
1
games/groundhog/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
Groundhog, a simple logic game
|
3
games/groundhog/pkg-descr
Normal file
3
games/groundhog/pkg-descr
Normal file
@ -0,0 +1,3 @@
|
||||
Groundhog, a simple logic game.
|
||||
|
||||
WWW: http://home-2.tiscali.nl/~cb007736/groundhog.html
|
3
games/groundhog/pkg-plist
Normal file
3
games/groundhog/pkg-plist
Normal file
@ -0,0 +1,3 @@
|
||||
bin/groundhog
|
||||
share/locale/fr/LC_MESSAGES/groundhog.mo
|
||||
share/locale/nl/LC_MESSAGES/groundhog.mo
|
Loading…
Reference in New Issue
Block a user