Changeset 609
- Timestamp:
- May 8, 2011, 5:32:52 PM (12 years ago)
- Location:
- abuse/trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/INSTALL
r475 r609 1 Requirements for Compiling1 Requirements for compiling 2 2 -------------------------- 3 3 4 - SDL 1.1.6 <http://www.libsdl.org> 4 - X11R6(or above) and libraries. 5 - Linux kernel 2.2 or above. 5 - SDL-Mixer 6 6 - GL libraries and headers are required for OpenGL support. 7 7 … … 10 10 --------- 11 11 12 1. Untar the abuse _sdl-x.x.tar.gz file.12 1. Untar the abuse-x.x.tar.gz file. 13 13 14 tar -zxf abuse_sdl-x.x.tar.gz14 tar xzf abuse-x.x.tar.gz 15 15 16 This will create an abuse _sdl-x.x directory with the source in it.16 This will create an abuse-x.x directory with the source in it. 17 17 18 18 2. Run './configure' 19 This will create the Makefiles required to build Abuse -SDL.19 This will create the Makefiles required to build Abuse. 20 20 21 21 If you wish to specify a location for the datafiles instead of using the … … 23 23 following argument to the configure script: 24 24 25 --data fir=<location>25 --datadir=<location> 26 26 27 27 where <location> is the directory where the datafiles will be installed. … … 31 31 32 32 4. Run 'make install' 33 This will install Abuse -SDL.33 This will install Abuse. 34 34 35 35 36 MacOSX 37 ------ 36 Mac OS X 37 -------- 38 38 39 A Project Builder project is included in the 'osx' directory and can be used 39 40 if desired. Using project Builder is currently the only way to get OpenGL 40 41 support compiled in. 41 42 42 43 If anything goes wrong please contact me at <trandor@labyrinth.net.au> with44 the details, and I'll try and sort it out.45 46 Good luck,47 Anthony Kruize -
abuse/trunk/Makefile.am
r606 r609 8 8 datafile_DATA = abuse.bmp abuse.png 9 9 10 EXTRA_DIST = bootstrap abuse.bmp abuse.png10 EXTRA_DIST = PACKAGERS bootstrap abuse.bmp abuse.png 11 11 12 if HAVE_NONFREE 13 else 14 dist-hook: 15 @echo "" 16 @echo " ====================================================" 17 @echo " WARNING: This tarball will exclude non-free data" 18 @echo " ====================================================" 19 @echo "" 20 endif 21 -
abuse/trunk/configure.ac
r608 r609 28 28 AC_ARG_ENABLE(release, 29 29 [ --enable-release build final release of the game (default no)]) 30 AC_ARG_ENABLE(nonfree, 31 [ --disable-nonfree disable non-free data (default no)]) 30 32 31 33 dnl Checks for libraries … … 71 73 REL="-g" 72 74 fi 75 76 dnl Is our package stripped from its non-free data? Or did the user 77 dnl maybe disable non-free data? 78 ac_cv_have_nonfree="no" 79 if test -f "${srcdir}/data/sfx/ambcave1.wav"; then 80 ac_cv_have_nonfree="yes" 81 fi 82 if test "${enable_nonfree}" = "no"; then 83 ac_cv_have_nonfree="no" 84 fi 85 AM_CONDITIONAL(HAVE_NONFREE, test "${ac_cv_have_nonfree}" = "yes") 73 86 74 87 # Optimizations -
abuse/trunk/data/Makefile.am
r607 r609 18 18 cd "$(DESTDIR)$(datafiledir)" && rm -f $$p; \ 19 19 done 20 21 demos = \22 levels/demo1.dat levels/mac/demo1.dat levels/mac/demo2.dat \23 levels/mac/demo3.dat levels/mac/demo4.dat levels/mac/demo5.dat24 25 music = \26 music/intro.hmi music/victory.hmi \27 music/abuse00.hmi music/abuse01.hmi music/abuse02.hmi music/abuse03.hmi \28 music/abuse04.hmi music/abuse06.hmi music/abuse08.hmi music/abuse09.hmi \29 music/abuse11.hmi music/abuse13.hmi music/abuse15.hmi music/abuse17.hmi30 20 31 21 lisp = \ … … 79 69 addon/twist/lisp/userfuns.lsp addon/twist/lisp/weapons.lsp \ 80 70 addon/twist/twist.lsp 81 82 extra = \83 defaults.prp84 71 85 72 art = \ … … 223 210 addon/twist/levels/l01s03.lvl addon/twist/levels/l01s04.lvl 224 211 212 demos = \ 213 levels/demo1.dat levels/mac/demo1.dat levels/mac/demo2.dat \ 214 levels/mac/demo3.dat levels/mac/demo4.dat levels/mac/demo5.dat 215 225 216 doc = \ 226 217 addon/aliens/aliens.txt \ … … 231 222 addon/pong/pong.txt \ 232 223 addon/twist/readme.txt 224 225 extra = \ 226 defaults.prp 227 228 if HAVE_NONFREE 229 music = \ 230 music/intro.hmi music/victory.hmi \ 231 music/abuse00.hmi music/abuse01.hmi music/abuse02.hmi music/abuse03.hmi \ 232 music/abuse04.hmi music/abuse06.hmi music/abuse08.hmi music/abuse09.hmi \ 233 music/abuse11.hmi music/abuse13.hmi music/abuse15.hmi music/abuse17.hmi 233 234 234 235 sound = \ … … 283 284 \ 284 285 addon/twist/sfx/dray.wav 285 286 else 287 music = 288 sound = 289 endif 290
Note: See TracChangeset
for help on using the changeset viewer.