- remove gnocatan; it has been superseded by pioneers

This commit is contained in:
ajacoutot 2008-02-02 09:45:09 +00:00
parent 7a9f733f3a
commit f4312ad11b
8 changed files with 0 additions and 227 deletions

View File

@ -1,30 +0,0 @@
# $OpenBSD: Makefile,v 1.9 2007/11/13 14:54:31 steven Exp $
COMMENT= Settlers of Catan for GNOME/Gtk
VERSION= 0.6.1
DISTNAME= gnocatan-${VERSION}
PKGNAME= ${DISTNAME}p2
CATEGORIES= games x11/gnome
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= ICE SM X11 Xau Xdmcp Xext Xi audiofile c esd gdk gdk_imlib \
glib gmodule gtk iconv intl jpeg m png tiff ungif z
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnocatan/}
LIB_DEPENDS= art_lgpl.>=4,gnome.>=36,gnomeui.>=46,gnomesupport::x11/gnome/libs
USE_GMAKE= Yes
USE_LIBTOOL= Yes
USE_X11= Yes
CONFIGURE_STYLE=gnu
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (gnocatan-0.6.1.tar.gz) = oVbz/jpQ+/kemFep0BLliA==
RMD160 (gnocatan-0.6.1.tar.gz) = oIiLeccQjFHJ+vLAGV6hN/qtnUs=
SHA1 (gnocatan-0.6.1.tar.gz) = 7j4JM8FVidfD8bqBg6Ep0B0gmB8=
SHA256 (gnocatan-0.6.1.tar.gz) = yZD4fEBMnXdi7CAQQogTfcDxVnmDmsz9VlL4c181ijw=
SIZE (gnocatan-0.6.1.tar.gz) = 625157

View File

@ -1,11 +0,0 @@
$OpenBSD: patch-client_gnocatan_c,v 1.1.1.1 2002/12/23 07:23:48 pvalchev Exp $
--- client/gnocatan.c.orig Sun Dec 22 14:40:43 2002
+++ client/gnocatan.c Sun Dec 22 14:41:02 2002
@@ -15,6 +15,7 @@
#include "cards.h"
#include "gui.h"
#include "client.h"
+#include "config-gnome.h"
#include "common_gtk.h"
int main(int argc, char *argv[])

View File

@ -1,23 +0,0 @@
$OpenBSD: patch-client_help_C_Makefile_in,v 1.1.1.1 2002/12/23 07:23:48 pvalchev Exp $
--- client/help/C/Makefile.in.orig Sun Aug 27 12:46:33 2000
+++ client/help/C/Makefile.in Sun Dec 22 14:29:54 2002
@@ -247,16 +247,16 @@ dist-hook:
# No-op if db2html failed
install-data-local: index.html
- $(mkinstalldirs) $(helpdir)/images
+ $(mkinstalldirs) $(DESTDIR)$(helpdir)/images
files=`echo $(srcdir)/gnocatan/*.html $(srcdir)/gnocatan/*.css`; \
if test "$$files" != '$(srcdir)/gnocatan/*.html $(srcdir)/gnocatan/*.css'; then \
for file in $$files; do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
- $(INSTALL_DATA) $$file $(helpdir)/$$basefile; \
+ $(INSTALL_DATA) $$file $(DESTDIR)$(helpdir)/$$basefile; \
done; \
fi
-for file in $(srcdir)/images/*.gif; do \
- $(INSTALL_DATA) $(srcdir)/$$file $(helpdir)/images;\
+ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(helpdir)/images;\
done
gnocatan.ps: gnocatan.sgml

View File

@ -1,30 +0,0 @@
$OpenBSD: patch-meta-server_gnocatan-meta-server_c,v 1.1.1.1 2002/12/23 07:23:48 pvalchev Exp $
--- meta-server/gnocatan-meta-server.c.orig Sun Dec 22 14:44:49 2002
+++ meta-server/gnocatan-meta-server.c Sun Dec 22 14:45:15 2002
@@ -313,7 +313,7 @@ static gchar *get_peer_name(gint fd)
socklen_t peer_len;
peer_len = sizeof(peer);
- if (getpeername(fd, &peer, &peer_len) < 0)
+ if (getpeername(fd, (struct sockaddr *)&peer, &peer_len) < 0)
syslog(LOG_ERR, "getting peer name: %m");
else {
struct hostent *host_ent;
@@ -452,7 +452,7 @@ static void accept_new_client()
Client *client;
addr_len = sizeof(addr);
- fd = accept(accept_fd, &addr, &addr_len);
+ fd = accept(accept_fd, (struct sockaddr *)&addr, &addr_len);
if (fd < 0) {
syslog(LOG_ERR, "accepting connection: %m");
return;
@@ -592,7 +592,7 @@ static gboolean setup_accept_sock(gint p
syslog(LOG_ERR, "creating socket: %m");
return FALSE;
}
- if (bind(accept_fd, &addr, sizeof(addr)) < 0) {
+ if (bind(accept_fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
syslog(LOG_ERR, "binding socket: %m");
return FALSE;
}

View File

@ -1,30 +0,0 @@
$OpenBSD: patch-server_server_c,v 1.1.1.1 2002/12/23 07:23:48 pvalchev Exp $
--- server/server.c.orig Sun Dec 22 14:38:01 2002
+++ server/server.c Sun Dec 22 14:43:59 2002
@@ -70,7 +70,7 @@ gint open_listen_socket( gint port )
g_strerror(errno));
return -1;
}
- if (bind(fd, &addr, sizeof(addr)) < 0) {
+ if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
log_message( MSG_ERROR, _("Error binding socket: %s\n"), g_strerror(errno));
return -1;
}
@@ -133,7 +133,7 @@ gint accept_connection( gint in_fd, gcha
size_t peer_len;
addr_len = sizeof(addr);
- fd = accept(in_fd, &addr, &addr_len);
+ fd = accept(in_fd, (struct sockaddr *)&addr, &addr_len);
if (fd < 0) {
log_message( MSG_ERROR, _("Error accepting connection: %s\n"),
g_strerror(errno));
@@ -142,7 +142,7 @@ gint accept_connection( gint in_fd, gcha
peer_len = sizeof(peer);
if( location ) {
- if (getpeername(fd, &peer, &peer_len) < 0) {
+ if (getpeername(fd, (struct sockaddr *)&peer, &peer_len) < 0) {
log_message( MSG_ERROR, _("Error getting peer name: %s\n"),
g_strerror(errno));
*location = _("unknown");

View File

@ -1,3 +0,0 @@
Gnocatan is an Internet playable implementation of the Settlers of Catan
board game. The aim is to remain as faithful to the board game as is
possible.

View File

@ -1,95 +0,0 @@
@comment $OpenBSD: PLIST,v 1.3 2004/09/15 00:46:09 espie Exp $
bin/gnocatan
bin/gnocatan-meta-server
bin/gnocatan-server-console
bin/gnocatan-server-gtk
share/gnocatan/
share/gnocatan/5-6-player.game
share/gnocatan/default.game
share/gnocatan/four-islands.game
share/gnocatan/seafarers.game
share/gnocatan/small.game
share/gnome/
share/gnome/apps/
share/gnome/apps/Games/
share/gnome/apps/Games/gnocatan.desktop
share/gnome/help/
share/gnome/help/gnocatan/
share/gnome/help/gnocatan/C/
share/gnome/help/gnocatan/C/actions.html
share/gnome/help/gnocatan/C/authors.html
share/gnome/help/gnocatan/C/book1.html
share/gnome/help/gnocatan/C/c18.html
share/gnome/help/gnocatan/C/c231.html
share/gnome/help/gnocatan/C/c27.html
share/gnome/help/gnocatan/C/chat.html
share/gnome/help/gnocatan/C/develop-cards.html
share/gnome/help/gnocatan/C/development.html
share/gnome/help/gnocatan/C/docbook.css
share/gnome/help/gnocatan/C/images/
share/gnome/help/gnocatan/C/images/actions.gif
share/gnome/help/gnocatan/C/images/chat.gif
share/gnome/help/gnocatan/C/images/client.gif
share/gnome/help/gnocatan/C/images/connect-dialog.gif
share/gnome/help/gnocatan/C/images/desert.gif
share/gnome/help/gnocatan/C/images/develop-cards.gif
share/gnome/help/gnocatan/C/images/discard-dialog.gif
share/gnome/help/gnocatan/C/images/discards.gif
share/gnome/help/gnocatan/C/images/field.gif
share/gnome/help/gnocatan/C/images/forest.gif
share/gnome/help/gnocatan/C/images/gameover-dialog.gif
share/gnome/help/gnocatan/C/images/hill.gif
share/gnome/help/gnocatan/C/images/identity.gif
share/gnome/help/gnocatan/C/images/legend-dialog.gif
share/gnome/help/gnocatan/C/images/map.gif
share/gnome/help/gnocatan/C/images/messages.gif
share/gnome/help/gnocatan/C/images/monopoly-dialog.gif
share/gnome/help/gnocatan/C/images/mountain.gif
share/gnome/help/gnocatan/C/images/pasture.gif
share/gnome/help/gnocatan/C/images/place-robber.gif
share/gnome/help/gnocatan/C/images/player-summary.gif
share/gnome/help/gnocatan/C/images/plenty-dialog.gif
share/gnome/help/gnocatan/C/images/quote.gif
share/gnome/help/gnocatan/C/images/resources.gif
share/gnome/help/gnocatan/C/images/sea.gif
share/gnome/help/gnocatan/C/images/servers-dialog.gif
share/gnome/help/gnocatan/C/images/status.gif
share/gnome/help/gnocatan/C/images/steal-from.gif
share/gnome/help/gnocatan/C/images/trade.gif
share/gnome/help/gnocatan/C/images/waiting.gif
share/gnome/help/gnocatan/C/index.html
share/gnome/help/gnocatan/C/ln15.html
share/gnome/help/gnocatan/C/map.html
share/gnome/help/gnocatan/C/messages.html
share/gnome/help/gnocatan/C/objective.html
share/gnome/help/gnocatan/C/player-summary.html
share/gnome/help/gnocatan/C/resources.html
share/gnome/help/gnocatan/C/setup.html
share/gnome/help/gnocatan/C/statusbar.html
share/gnome/help/gnocatan/C/topic.dat
share/gnome/help/gnocatan/C/turn.html
share/gnome/help/gnocatan/C/x303.html
share/gnome/help/gnocatan/C/x464.html
share/pixmaps/
share/pixmaps/gnocatan/
share/pixmaps/gnocatan/board.png
share/pixmaps/gnocatan/bridge.png
share/pixmaps/gnocatan/city.png
share/pixmaps/gnocatan/cross.png
share/pixmaps/gnocatan/desert.png
share/pixmaps/gnocatan/develop.png
share/pixmaps/gnocatan/dice.png
share/pixmaps/gnocatan/field.png
share/pixmaps/gnocatan/finish.png
share/pixmaps/gnocatan/forest.png
share/pixmaps/gnocatan/hill.png
share/pixmaps/gnocatan/mountain.png
share/pixmaps/gnocatan/pasture.png
share/pixmaps/gnocatan/plain.png
share/pixmaps/gnocatan/road.png
share/pixmaps/gnocatan/sea.png
share/pixmaps/gnocatan/settlement.png
share/pixmaps/gnocatan/ship.png
share/pixmaps/gnocatan/tick.png
share/pixmaps/gnocatan/trade.png
share/pixmaps/gnome-gnocatan.png