GTetrinet is a client program for the popular Tetrinet game, a multiplayer
tetris game that is played over the internet. It aims to be a complete clone of the popular Tetrinet game for Win95/NT. If you are looking for a popular public game server to play, take a look to tetrinet.org. This version uses GNOME 2.0.
This commit is contained in:
parent
1b01583e65
commit
4eec40bab8
5 changed files with 80 additions and 0 deletions
6
gtetrinet2/DESCR
Normal file
6
gtetrinet2/DESCR
Normal file
|
@ -0,0 +1,6 @@
|
|||
GTetrinet is a client program for the popular Tetrinet game, a multiplayer
|
||||
tetris game that is played over the internet. It aims to be a complete
|
||||
clone of the popular Tetrinet game for Win95/NT. If you are looking for a
|
||||
popular public game server to play, take a look to tetrinet.org.
|
||||
|
||||
This version uses GNOME 2.0.
|
29
gtetrinet2/Makefile
Normal file
29
gtetrinet2/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2003/04/06 19:33:01 bmeurer Exp $
|
||||
|
||||
DISTNAME= gtetrinet-0.7.0
|
||||
PKGNAME= gtetrinet2-0.7.0
|
||||
CATEGORIES= games gnome
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gtetrinet/0.7/}
|
||||
|
||||
MAINTAINER= benedikt.meurer@unix-ag.uni-siegen.de
|
||||
HOMEPAGE= http://gtetrinet.sourceforge.net/
|
||||
COMMENT= Multiplayer tetris game
|
||||
|
||||
CONFLICTS+= gtetrinet-[0-9]*
|
||||
|
||||
BUILD_USES_MSGFMT= YES
|
||||
|
||||
GNU_CONFIGURE= YES
|
||||
USE_BUILDLINK2= YES
|
||||
USE_GMAKE= YES
|
||||
USE_PKGLOCALEDIR= YES
|
||||
|
||||
.include "../../mk/bsd.prefs.mk"
|
||||
|
||||
# IPv6 support
|
||||
.if defined(USE_INET6) && ${USE_INET6} == YES
|
||||
CONFIGURE_ARGS+= --enable-ipv6
|
||||
.endif
|
||||
|
||||
.include "../../devel/libgnomeui/buildlink2.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
27
gtetrinet2/PLIST
Normal file
27
gtetrinet2/PLIST
Normal file
|
@ -0,0 +1,27 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2003/04/06 19:33:01 bmeurer Exp $
|
||||
bin/gtetrinet
|
||||
etc/gconf/schemas/gtetrinet.schemas
|
||||
man/man6/gtetrinet.6
|
||||
${PKGLOCALEDIR}/locale/am/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/ca/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/de/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/es/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/nl/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/no/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/pt/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/gtetrinet.mo
|
||||
${PKGLOCALEDIR}/locale/uk/LC_MESSAGES/gtetrinet.mo
|
||||
share/gtetrinet/themes/default/blocks.png
|
||||
share/gtetrinet/themes/default/theme.cfg
|
||||
@dirrm share/gtetrinet/themes/default
|
||||
share/gtetrinet/themes/small/blocks.png
|
||||
share/gtetrinet/themes/small/theme.cfg
|
||||
@dirrm share/gtetrinet/themes/small
|
||||
@dirrm share/gtetrinet/themes
|
||||
@dirrm share/gtetrinet
|
||||
share/pixmaps/gtetrinet.png
|
||||
share/gnome/apps/Games/gtetrinet.desktop
|
5
gtetrinet2/distinfo
Normal file
5
gtetrinet2/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2003/04/06 19:33:01 bmeurer Exp $
|
||||
|
||||
SHA1 (gtetrinet-0.7.0.tar.gz) = 1ab5489d21a6030fc9a40c59ed47c1823b5334d9
|
||||
Size (gtetrinet-0.7.0.tar.gz) = 383257 bytes
|
||||
SHA1 (patch-aa) = 3f9cb21459c9c505a58b3d28289b0d64a584b90a
|
13
gtetrinet2/patches/patch-aa
Normal file
13
gtetrinet2/patches/patch-aa
Normal file
|
@ -0,0 +1,13 @@
|
|||
$NetBSD: patch-aa,v 1.1.1.1 2003/04/06 19:33:01 bmeurer Exp $
|
||||
|
||||
--- src/Makefile.in.orig Mon Mar 17 12:04:01 2003
|
||||
+++ src/Makefile.in
|
||||
@@ -170,7 +170,7 @@ INCLUDES = -DLOCALEDIR=\"$(localedir)\"
|
||||
LDADD = $(GTET_LIBS)
|
||||
AM_CPPFLAGS = -DGTETRINET_DATA=\"$(pkgdatadir)\"
|
||||
|
||||
-gamesdir = $(prefix)/games
|
||||
+gamesdir = $(bindir)
|
||||
games_PROGRAMS = gtetrinet
|
||||
|
||||
gtetrinet_SOURCES = client.c client.h commands.c commands.h config.c config.h dialogs.c dialogs.h fields.c fields.h gtetrinet.c gtetrinet.h misc.c misc.h partyline.c partyline.h sound.c sound.h tetrinet.c tetrinet.h tetris.c tetris.h winlist.c winlist.h
|
Loading…
Reference in a new issue