Changeset 42
- Timestamp:
- Mar 2, 2008, 1:17:35 AM (14 years ago)
- Location:
- abuse/trunk
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk
- Property svn:ignore
-
old new 10 10 libtool 11 11 stamp-h1 12 abuse -sdl.612 abuse.6
-
- Property svn:ignore
-
abuse/trunk/Makefile.am
r32 r42 3 3 SUBDIRS = src 4 4 5 man_MANS = abuse -sdl.65 man_MANS = abuse.6 6 6 7 7 datafiledir = $(datadir)/games/abuse 8 8 datafile_DATA = abuse.bmp abuse.lsp abuse.png 9 9 10 EXTRA_DIST = bootstrap abuse -sdl.6 abuse.bmp abuse.lsp abuse.png10 EXTRA_DIST = bootstrap abuse.6 abuse.bmp abuse.lsp abuse.png -
abuse/trunk/abuse.6.in
r40 r42 2 2 .\" Abuse is (C) Dave Taylor and Jonathan Clarke 3 3 .\" 4 .TH abuse -sdl 6 Abuse-SDL Version\ @VERSION@4 .TH abuse 6 Abuse\ @VERSION@ 5 5 .SH NAME 6 abuse .sdl\- An SDL port of the Abuse by Crack dot Com.6 abuse \- An SDL port of the Abuse by Crack dot Com. 7 7 8 8 .SH SYNOPSIS 9 .B abuse .sdl9 .B abuse 10 10 [options] 11 11 12 12 .SH DESCRIPTION 13 .B Abuse -SDL13 .B Abuse 14 14 is a port of the classic Crack dot Com side-scroller shoot-em-up Abuse. 15 15 It uses the Simple DirectMedia Layer API to draw it's graphics and play sound. 16 16 .PP 17 .B Abuse -SDL17 .B Abuse 18 18 has the following additional features over the original game: 19 19 .PP … … 32 32 33 33 .SH REQUIREMENTS 34 .B Abuse -SDL34 .B Abuse 35 35 requires the following: 36 36 .IP … … 68 68 69 69 .SH CONFIGURATION 70 .B Abuse -SDL70 .B Abuse 71 71 can load it's settings from a configuration file stored in the users home 72 72 directory. The file is located at ($HOME/.abuse/abuserc). If either the … … 75 75 .LP 76 76 The configuration file contains various settings for adjusting how 77 .B Abuse -SDL77 .B Abuse 78 78 behaves. Except for key settings, most of the options have an equivalent 79 79 command-line option. Lines starting with a semi-colon(;) are ignored as … … 136 136 137 137 .SH FILES 138 ~/.abuse/abuserc - Abuse -SDLconfiguration file.138 ~/.abuse/abuserc - Abuse configuration file. 139 139 140 140 .SH AUTHORS 141 141 Anthony Kruize <trandor@labyrinth.net.au> 142 See also the AUTHORS file included with Abuse -SDL.142 See also the AUTHORS file included with Abuse. -
abuse/trunk/configure.ac
r41 r42 39 39 SDL_VERSION=1.1.6 40 40 AM_PATH_SDL($SDL_VERSION, :, 41 41 AC_MSG_ERROR([*** SDL version $SDL_VERSION or above not found!])) 42 42 CFLAGS="$CFLAGS $SDL_CFLAGS" 43 43 LIBS="$LIBS $SDL_LIBS $X_LIBS -L/usr/lib" … … 64 64 have_opengl=no 65 65 AC_TRY_COMPILE([ 66 67 68 69 /* 70 71 72 73 66 #ifdef WIN32 67 #include <windows.h> 68 #elif defined(__APPLE__) && defined(__MACH__) 69 /* #include <OpenGL/gl.h>*/ 70 #error /* Error so the compile fails on OSX */ 71 #else 72 #include <GL/gl.h> 73 #endif 74 74 ],[ 75 75 ],[ … … 78 78 AC_MSG_RESULT($have_opengl) 79 79 if test x$have_opengl = xyes; then 80 81 82 80 CFLAGS="$CFLAGS -DHAVE_OPENGL" 81 CXXFLAGS="$CXXFLAGS -DHAVE_OPENGL" 82 LIBS="$LIBS -lGL -lpthread" 83 83 fi 84 84 85 AC_OUTPUT([Makefile 86 abuse-sdl.6 87 src/Makefile 88 src/net/Makefile 89 src/imlib/Makefile 90 src/sdlport/Makefile]) 85 AC_OUTPUT([ 86 Makefile 87 abuse.6 88 src/Makefile 89 src/net/Makefile 90 src/imlib/Makefile 91 src/sdlport/Makefile]) 91 92 92 93 echo " -
abuse/trunk/src
- Property svn:ignore
-
old new 4 4 .libs 5 5 *.a 6 *.exe 6 7 abuse 7 abuse.sdl
-
- Property svn:ignore
-
abuse/trunk/src/Makefile.am
r2 r42 3 3 SUBDIRS = net imlib sdlport 4 4 5 bin_PROGRAMS = abuse .sdl5 bin_PROGRAMS = abuse 6 6 7 abuse_ sdl_SOURCES = specache.cpp netcfg.cpp text_gui.cpp innet.cpp \7 abuse_SOURCES = specache.cpp netcfg.cpp text_gui.cpp innet.cpp \ 8 8 chat.cpp endgame.cpp version.cpp loadgame.cpp profile.cpp \ 9 9 cop.cpp statbar.cpp compiled.cpp ant.cpp sensor.cpp \ … … 17 17 devsel.cpp crc.cpp gamma.cpp language.cpp 18 18 19 abuse_ sdl_LDADD = ./sdlport/libsdlport.a ./imlib/libimlib.a ./net/libnet.a19 abuse_LDADD = ./sdlport/libsdlport.a ./imlib/libimlib.a ./net/libnet.a 20 20 21 abuse_ sdl_DEPENDENCIES = ./sdlport/libsdlport.a ./imlib/libimlib.a ./net/libnet.a21 abuse_DEPENDENCIES = ./sdlport/libsdlport.a ./imlib/libimlib.a ./net/libnet.a 22 22 23 23 INCLUDES = -I$(srcdir)/include -I$(srcdir)/imlib/include -I$(srcdir)/net/include $(SDL_CFLAGS)
Note: See TracChangeset
for help on using the changeset viewer.