Remove wormux, it's been superseded by/renamed to warmux.
This commit is contained in:
parent
e7205ff263
commit
9fa4bc0fd7
@ -1,39 +0,0 @@
|
||||
# $OpenBSD: Makefile,v 1.22 2011/02/09 10:20:16 landry Exp $
|
||||
|
||||
COMMENT= free software clone of Worms(R) game concept
|
||||
|
||||
DISTNAME= wormux-0.9.2.1
|
||||
CATEGORIES= games
|
||||
|
||||
HOMEPAGE= http://wormux.org
|
||||
|
||||
# GPLv2
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
WANTLIB= SDL X11 c m png pthread stdc++ SDL_gfx SDL_image \
|
||||
SDL_mixer SDL_net SDL_ttf curl>=5 xml2
|
||||
|
||||
MASTER_SITES= http://download.gna.org/warmux/ \
|
||||
http://download.gna.org/warmux/archive/
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
RUN_DEPENDS= devel/desktop-file-utils
|
||||
LIB_DEPENDS= devel/sdl-gfx \
|
||||
devel/sdl-image \
|
||||
devel/sdl-mixer \
|
||||
devel/sdl-net \
|
||||
devel/sdl-ttf \
|
||||
net/curl \
|
||||
textproc/libxml
|
||||
|
||||
MODULES= devel/gettext
|
||||
CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -DSIZE_T_FIXEDPOINT_METHODS ${CFLAGS}" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib" \
|
||||
MKDIR_P='mkdir -p'
|
||||
CONFIGURE_ARGS+= --enable-servers
|
||||
USE_GROFF = Yes
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,5 +0,0 @@
|
||||
MD5 (wormux-0.9.2.1.tar.bz2) = 5JYhubSsfI0bEWV5id9h2w==
|
||||
RMD160 (wormux-0.9.2.1.tar.bz2) = I7Z4CSaTxHHbxpJHH19/VpcOIXU=
|
||||
SHA1 (wormux-0.9.2.1.tar.bz2) = n8OfYfLB603dHXrVI443KLlgTkU=
|
||||
SHA256 (wormux-0.9.2.1.tar.bz2) = ATcuXu+yD5XZhMW0N2tx6M3ljS5+yNMN5lhc4F6pAUA=
|
||||
SIZE (wormux-0.9.2.1.tar.bz2) = 99679696
|
@ -1,11 +0,0 @@
|
||||
$OpenBSD: patch-lib_wormux_net_network_cpp,v 1.2 2010/03/21 12:19:00 landry Exp $
|
||||
--- lib/wormux/net/network.cpp.orig Tue Jan 26 20:55:28 2010
|
||||
+++ lib/wormux/net/network.cpp Wed Jan 27 21:58:09 2010
|
||||
@@ -26,6 +26,7 @@
|
||||
#ifdef WIN32
|
||||
# include <ws2tcpip.h>
|
||||
#else
|
||||
+# include <sys/types.h>
|
||||
# include <sys/socket.h>
|
||||
# include <netdb.h>
|
||||
# include <netinet/in.h>
|
@ -1,22 +0,0 @@
|
||||
$OpenBSD: patch-tools_servers_index_server_net_data_cpp,v 1.2 2010/03/21 12:19:00 landry Exp $
|
||||
We don't #define MSG_NOSIGNAL
|
||||
--- tools/servers/index_server/net_data.cpp.orig Tue Jan 26 20:55:28 2010
|
||||
+++ tools/servers/index_server/net_data.cpp Wed Jan 27 21:58:09 2010
|
||||
@@ -248,7 +248,7 @@ bool NetData::SendInt(const int &nbr)
|
||||
unsigned int u_nbr = *((unsigned int*)&nbr);
|
||||
packet = htonl(u_nbr);
|
||||
|
||||
- if ( send(fd, &packet, sizeof(packet), MSG_NOSIGNAL) != sizeof(packet) ) {
|
||||
+ if ( send(fd, &packet, sizeof(packet), 0) != sizeof(packet) ) {
|
||||
PRINT_ERROR;
|
||||
return false;
|
||||
}
|
||||
@@ -263,7 +263,7 @@ bool NetData::SendStr(const std::string &full_str)
|
||||
if (!SendInt((int)full_str.size()))
|
||||
return false;
|
||||
|
||||
- if ( send(fd, full_str.c_str(), full_str.size(), MSG_NOSIGNAL) != ssize_t(full_str.size()) ) {
|
||||
+ if ( send(fd, full_str.c_str(), full_str.size(), 0) != ssize_t(full_str.size()) ) {
|
||||
PRINT_ERROR;
|
||||
return false;
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
Have the mascots of your favorite free software battle in the Wormux
|
||||
arena. Using dynamite, grenades, baseball bat and others bazookas,...
|
||||
exterminate your opponent in a 2D toon style scenery and a funny
|
||||
environment.
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user