debian/0000755000000000000000000000000011537420662007174 5ustar debian/patches/0000755000000000000000000000000011537417564010632 5ustar debian/patches/manpage.diff0000644000000000000000000000042311537416605013066 0ustar --- airstrike-0.99+1.0pre6a.orig/doc/airstrike.6 +++ airstrike-0.99+1.0pre6a/doc/airstrike.6 @@ -8,6 +8,9 @@ /_/ \\_\\_|_| |___/\\__|_| |_|_|\\_\\___| .fi +.SH NAME + +airstrike - 2d dogfight game in the tradition of 'Biplanes' and 'BIP' .SH DESCRIPTION debian/patches/fix-segfault-on-close.diff0000644000000000000000000000073511537416605015577 0ustar --- airstrike-0.99+1.0pre6a/src/sprite/refcount.h 2003-01-18 11:48:05.000000000 -0800 +++ airstrike-0.99+1.0pre6a/src/sprite/refcount.h 2007-04-09 08:31:32.000000000 -0700 @@ -9,7 +9,7 @@ /* freefn will be called with x as argument if the refcount goes below 1 */ #define DEREF(x,freefn) (x)->refcount -= 2; \ -if ((x)->refcount <= 1) {(freefn)(x);} +if ((x)->refcount == 1) {(freefn)(x);} /* Marks the referenced obj as dead */ #define REFKILL(x) ((x)->refcount |= 1) debian/patches/fix-buffer-overflow.diff0000644000000000000000000000065211537416605015360 0ustar --- airstrike-0.99+1.0pre6a/src/config.c 2003-01-18 20:48:05.000000000 +0100 +++ airstrike-0.99+1.0pre6a/src/config.c 2005-01-14 01:42:55.000000000 +0100 @@ -21,7 +21,7 @@ int config_setup() } if (getenv("HOME")) { - sprintf(cbuf,"%s/%s",getenv("HOME"),USER_CONFIG_FILE); + snprintf(cbuf,sizeof(cbuf),"%s/%s",getenv("HOME"),USER_CONFIG_FILE); cfile = fopen(cbuf,"r"); if (cfile) { debian/patches/fix-red-baron-has-unlimited-bombs.diff0000644000000000000000000000125311537416605017756 0ustar --- airstrike-0.99+1.0pre6a/src/sprite_types/biplane.c 2003-01-18 20:48:05.000000000 +0100 +++ airstrike-0.99+1.0pre6a/src/sprite_types/biplane.c 2007-10-10 01:26:25.000000000 +0200 @@ -198,9 +198,10 @@ } break; case SIGNAL_NUM0: /* create bomb */ - if (sprite_timer_finished(((struct biplane*)s)->bomb_timer) && - (!(s->state & BIPLANE_CRASHING))) + if (sprite_timer_finished(((struct biplane*)s)->bomb_timer) && + (!(s->state & BIPLANE_CRASHING)) && (((struct biplane*)s)->nr_bombs > 0)) { + ((struct biplane*)s)->nr_bombs--; p = sprite_create(&bomb); p->anim_p = s->anim_p; ((mech_sprite_t *)p)->angle = ((mech_sprite_t *)s)->angle; debian/patches/fix-spawn-level.diff0000644000000000000000000000074511537416605014506 0ustar diff -urN old/src/airstrike.c new/src/airstrike.c --- old/src/airstrike.c 2007-09-13 17:57:23.000000000 +0200 +++ new/src/airstrike.c 2007-09-13 11:11:33.000000000 +0200 @@ -92,8 +92,8 @@ player_sprite_type[1] = &biplane; player_startpos[0][0] = 700; player_startpos[0][1] = 500; - player_startpos[1][0] = 5; - player_startpos[1][1] = 300; + player_startpos[1][0] = 100; + player_startpos[1][1] = 500; player_points[0] = max_points; player_points[1] = max_points; debian/patches/airstrikerc.diff0000644000000000000000000000042311537416605014000 0ustar --- airstrike-0.99+1.0pre6a.orig/airstrikerc +++ airstrike-0.99+1.0pre6a/airstrikerc @@ -4,7 +4,7 @@ # The path where the program looks for its data files -datapath "data" +datapath "/usr/share/games/airstrike" #window size or fullscreen resolution screen.width 800 debian/patches/series0000644000000000000000000000031411537417453012042 0ustar fix_paths.diff airstrikerc.diff manpage.diff fix-buffer-overflow.diff fix-red-baron-has-unlimited-bombs.diff fix-segfault-on-close.diff fix-unusable-on-amd64.diff fix-spawn-level.diff fix-link-flags.diff debian/patches/fix-unusable-on-amd64.diff0000644000000000000000000000160411537416605015405 0ustar --- airstrike-0.99+1.0pre6a/src/mech.c 2003-01-18 16:48:05.000000000 -0300 +++ airstrike-0.99+1.0pre6a/src/mech.c 2007-01-14 16:04:06.000000000 -0300 @@ -335,11 +335,10 @@ n[2]*((mech_sprite_t *)s1)->ang_vel + n[3]*((mech_sprite_t *)s2)->ang_vel; - if (a > 0) - { - b = n[0]*delta[0] + n[1]*delta[1] + n[2]*delta[2] + b = n[0]*delta[0] + n[1]*delta[1] + n[2]*delta[2] - n[0]*delta[3] - n[1]*delta[4] + n[3]*delta[5]; - + if ( (a > 0) && (abs(b) > 0) ) + { c = -1.4*a/b; s1->vel[0] += c*delta[0]; @@ -479,10 +478,9 @@ a = n[0]*s1->vel[0] + n[1]*s1->vel[1] + n[2]*((mech_sprite_t *)s1)->ang_vel; - if (a > 0) + b = n[0]*delta[0] + n[1]*delta[1] + n[2]*delta[2]; + if ( (a > 0) && (abs(b) > 0) ) { - b = n[0]*delta[0] + n[1]*delta[1] + n[2]*delta[2]; - c = -1.2*a/b; s1->vel[0] += c*delta[0]; debian/patches/fix_paths.diff0000644000000000000000000000270211537416605013445 0ustar --- airstrike-0.99+1.0pre6a.orig/src/config.h +++ airstrike-0.99+1.0pre6a/src/config.h @@ -6,7 +6,7 @@ /* absolute path to main config file (for now it's airstrikerc in the current dir)*/ #ifndef ROOT_CONFIG_FILE -#define ROOT_CONFIG_FILE "airstrikerc" +#define ROOT_CONFIG_FILE "/etc/airstrikerc" #endif /* path to file in users $HOME */ #ifndef USER_CONFIG_FILE --- airstrike-0.99+1.0pre6a.orig/src/airstrike.c +++ airstrike-0.99+1.0pre6a/src/airstrike.c @@ -74,7 +74,7 @@ console_set_pos(9,254); console_load_bg(path_to_data("console-bg.png")); sprite_types_setup(); - sprite_background_load("data/bg.png","data/bgmask.png"); + sprite_background_load("/usr/share/games/airstrike/bg.png","/usr/share/games/airstrike/bgmask.png"); level_setup(); winds_setup(); --- airstrike-0.99+1.0pre6a.orig/Makefile +++ airstrike-0.99+1.0pre6a/Makefile @@ -29,3 +29,15 @@ # packages new files listed in new-files.txt new: tar -zcvf new.tgz -T new-files.txt + +install: + install -d $(DESTDIR)/usr/games + install airstrike $(DESTDIR)/usr/games/airstrike + install -d $(DESTDIR)/usr/share/games/airstrike + install -d $(DESTDIR)/usr/share/games/airstrike/sound + install -m 644 data/*.png $(DESTDIR)/usr/share/games/airstrike + install -m 644 data/*.txt $(DESTDIR)/usr/share/games/airstrike +# install -m 644 data/sound/*.wav $(DESTDIR)/usr/share/games/airstrike/sound + install -d $(DESTDIR)/etc + install -m 644 airstrikerc $(DESTDIR)/etc/airstrikerc + debian/patches/fix-link-flags.diff0000644000000000000000000000136211537417564014301 0ustar From: Ilya Barygin Date: Sun, 2 Jan 2011 11:44:12 +0300 Subject: Add -lm to fix FTBFS with binutils-gold Bug-Debian: http://bugs.debian.org/553647 Index: airstrike-0.99+1.0pre6a/src/Makefile =================================================================== --- airstrike-0.99+1.0pre6a.orig/src/Makefile 2011-01-01 09:57:25.000000000 +0000 +++ airstrike-0.99+1.0pre6a/src/Makefile 2011-01-01 09:57:34.000000000 +0000 @@ -5,7 +5,7 @@ OBJECTS:= $(CFILES:.c=.o) airstrike: $(OBJECTS) - $(CC) -o $@ $(CFLAGS) $(OBJECTS) `sdl-config --libs` -lSDL_image + $(CC) -o $@ $(CFLAGS) $(OBJECTS) `sdl-config --libs` -lSDL_image -lm airstrike-sound: $(OBJECTS) $(CC) -o $@ $(CFLAGS) $(OBJECTS) `sdl-config --libs` -lSDL_image -lSDL_mixer debian/airstrike.xpm0000644000000000000000000001743111537416605011727 0ustar /* XPM */ static char * airstrike_xpm[] = { "48 48 194 2", " c None", ". c #000000", "+ c #8D0000", "@ c #9D0000", "# c #3C0000", "$ c #2D312F", "% c #2E322F", "& c #9E0000", "* c #B50000", "= c #680000", "- c #1B0000", "; c #260000", "> c #884C4A", ", c #9CB2AD", "' c #9BB2AD", ") c #93AAA7", "! c #7F9592", "~ c #2C312F", "{ c #830000", "] c #B30000", "^ c #790000", "/ c #2C0000", "( c #0F0000", "_ c #630000", ": c #BD0000", "< c #C2C0B8", "[ c #D0DFD6", "} c #99B1AD", "| c #87A09F", "1 c #748E90", "2 c #222522", "3 c #770000", "4 c #340000", "5 c #140000", "6 c #030000", "7 c #B70000", "8 c #C90000", "9 c #D46B68", "0 c #CFDED7", "a c #93ACAA", "b c #89A2A2", "c c #718D90", "d c #515F5E", "e c #580000", "f c #270000", "g c #100000", "h c #3E0000", "i c #8B0000", "j c #AB0000", "k c #B90000", "l c #BA0000", "m c #9A9E9B", "n c #94A9A7", "o c #8AA09E", "p c #718B8F", "q c #525F5E", "r c #111515", "s c #110000", "t c #5E0000", "u c #860000", "v c #900000", "w c #A60000", "x c #9E423E", "y c #7C8877", "z c #6A7769", "A c #56655B", "B c #3E413C", "C c #180000", "D c #1A0000", "E c #200000", "F c #1F0000", "G c #330000", "H c #3D0000", "I c #480000", "J c #810000", "K c #980000", "L c #8A0000", "M c #7F0000", "N c #5A553D", "O c #536748", "P c #46563E", "Q c #394433", "R c #280000", "S c #2E0000", "T c #300000", "U c #310000", "V c #3B0000", "W c #740000", "X c #350000", "Y c #4E0000", "Z c #6B0000", "` c #600000", " . c #4E150F", ".. c #4B6742", "+. c #44603C", "@. c #30402A", "#. c #710000", "$. c #440000", "%. c #320000", "&. c #1D0000", "*. c #620000", "=. c #A20000", "-. c #490000", ";. c #4A0000", ">. c #4D0000", ",. c #470000", "'. c #430000", "). c #404C2E", "!. c #395233", "~. c #AC0000", "{. c #780000", "]. c #610000", "^. c #4C0000", "/. c #460000", "(. c #930000", "_. c #9F0000", ":. c #540000", "<. c #420000", "[. c #3A0000", "}. c #1D110A", "|. c #6F0000", "1. c #BB0000", "2. c #C40000", "3. c #9C0000", "4. c #7A0000", "5. c #520000", "6. c #530000", "7. c #7D0000", "8. c #500000", "9. c #2D0000", "0. c #410000", "a. c #380000", "b. c #150000", "c. c #BC0000", "d. c #B80000", "e. c #950000", "f. c #C50000", "g. c #AA0000", "h. c #920000", "i. c #750000", "j. c #650000", "k. c #250000", "l. c #3F0000", "m. c #A70000", "n. c #A90000", "o. c #AE0000", "p. c #D00000", "q. c #D10000", "r. c #D70000", "s. c #CB0000", "t. c #B60000", "u. c #AF0000", "v. c #6A0000", "w. c #570000", "x. c #990000", "y. c #9B0000", "z. c #A00000", "A. c #CA0000", "B. c #CD0000", "C. c #C00000", "D. c #A50000", "E. c #A10000", "F. c #970000", "G. c #840000", "H. c #690000", "I. c #400000", "J. c #360000", "K. c #C10000", "L. c #8C0000", "M. c #7E0000", "N. c #730000", "O. c #670000", "P. c #590000", "Q. c #510000", "R. c #390000", "S. c #640000", "T. c #960000", "U. c #940000", "V. c #A80000", "W. c #660000", "X. c #5F0000", "Y. c #4F0000", "Z. c #450000", "`. c #2A0000", " + c #910000", ".+ c #5B0000", "++ c #880000", "@+ c #550000", "#+ c #5D0000", "$+ c #370000", "%+ c #160000", "&+ c #290000", "*+ c #240000", "=+ c #2F0000", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " . ", " + @ # $ % . ", " & * = - ; > , ' ) ! ~ . ", " { ] ^ / ( _ : : < [ } | 1 2 ", " @ 3 4 5 6 . . + 7 8 9 0 a b c d . ", " e f g . . . h i j k l m n o p q r ", " . . . . s t u v & w x y z A B . ", " C D E F G H I J K = L M N O P Q ", " R S T . G U V W l i X Y Z ` ...+.@. ", " J #.$.V %.X &.*.] =.-./ I ;.>.,.'.).!. ", " + : ~.{.].^.h /.(._.:./ <././.<.<.[.S }. ", " |._._. t 1.2.2.] 3.4.5.6.7.8.9.<.0.$.0.h a.S b. ", " 7.c.k d.1.e. (.l c.f.c.g.h.i.j.k.G '.0.l.0.H a.k.6 ", " g.m.m.n.o.: p.q.r.s.l k t.u.w (.^ v.w.;./.'.'.H 4 E . ", " x.y.3.z.g.f.A.B.s.C.n.D.E.F.v G.H.].5.;.0.I.J.k. . . . ", " L K y.x.j ] t.D.K.* e.L.u M.N.O.P.Q.I I.R.R . . . ", " S.T.U.e.m.V.w.P.D.w G.Z W.X.6.Y.^.Z.a.`. . . . ", " i +& _ 4 /..+++i 3 6.Y.^.-.'.V T b. ", " H.@+X V <.,.#+= #.S.8.'.H $+`.%+ ", " &+Z./.Z.l.;.w.#+@+^.$+D ", " *+$.,.0.h Z./.=+ ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " "}; debian/dirs0000644000000000000000000000011511537416605010057 0ustar usr/games usr/share/games/airstrike usr/share/applications usr/share/pixmaps debian/airstrike.install0000644000000000000000000000022211537416605012557 0ustar debian/tmp/usr/games/* usr/games/ debian/tmp/etc/* etc/ debian/airstrike.desktop usr/share/applications/ debian/airstrike.xpm usr/share/pixmaps/ debian/compat0000644000000000000000000000000211537416605010374 0ustar 5 debian/menu0000644000000000000000000000015311537416605010064 0ustar ?package(airstrike):needs="X11" section="Games/Action"\ title="Airstrike" command="/usr/games/airstrike" debian/airstrike.desktop0000644000000000000000000000034311537416605012566 0ustar [Desktop Entry] Name=Airstrike Comment=Dogfight an enemy plane Comment[de_DE]=Kämpfe gegen ein feindliches Flugzeug Exec=airstrike Icon=airstrike StartupNotify=false Terminal=false Type=Application Categories=Game;ArcadeGame; debian/watch0000644000000000000000000000015511537416605010230 0ustar version=3 opts="uversionmangle=s/pre/0.99+1.0pre/" http://icculus.org/airstrike/airstrike-([^-]*)-src.tar.gz debian/airstrike-common.install0000644000000000000000000000010311537416605014043 0ustar debian/tmp/usr/share/games/airstrike/* usr/share/games/airstrike/ debian/docs0000644000000000000000000000007011537416605010046 0ustar README doc/1.0-features doc/BUGS doc/TODO doc/WHISHLIST debian/source/0000755000000000000000000000000011537417021010467 5ustar debian/source/format0000644000000000000000000000001411537417013011676 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000252311537417065010261 0ustar #!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 CFLAGS := -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif build: build-stamp build-stamp: dh_testdir $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp $(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_clean -k $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp #Remove empty dir rm -rf debian/tmp/usr/share/games/airstrike/sound binary-indep: build install dh_testdir dh_testroot dh_installdocs -i dh_installchangelogs -i ChangeLog dh_install -i dh_link -i dh_strip -i dh_fixperms -i dh_compress -i dh_installdeb -i dh_shlibdeps -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i binary-arch: build install dh_testdir dh_testroot dh_installdocs -a dh_installmenu -a dh_installman -a doc/airstrike.6 dh_installchangelogs -a ChangeLog dh_install -a dh_link -a dh_strip -a dh_fixperms -a dh_compress -a dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/copyright0000644000000000000000000000225311537417733011136 0ustar This package was debianized by Sven Velt on 09, 08 Oct 2003 09:12:39 +0200. Today, the current maintainer is the Debian Games Team. It was downloaded from http://icculus.org/airstrike/ Upstream Authors: Ulf Ektröm, Peter Eismann, Eero Tamminen, Alessandro Giusti Development-Mailinglist: airstrike@icculus.org Copyright (C) 2002 Ulf Ekström License: This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian systems, the complete text of version 2 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/control0000644000000000000000000000305211537420541010573 0ustar Source: airstrike Section: games Priority: optional Maintainer: Debian Games Team Uploaders: Sven Velt , Barry deFreese Build-Depends: debhelper (>= 5), libsdl-image1.2-dev, libsdl-mixer1.2-dev Standards-Version: 3.9.1 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/airstrike/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/airstrike/?op=log Homepage: http://icculus.org/airstrike/ Package: airstrike Architecture: any Depends: airstrike-common, ${shlibs:Depends}, ${misc:Depends} Description: 2d dogfight game in the tradition of 'Biplanes' and 'BIP' Airstrike is a 2d dogfight game in the tradition of the Intellivision and Amiga games 'Biplanes' and 'BIP'. It features a robust physics engine and several other extensions of the original games. Playable by 1 or 2 persons. Package: airstrike-common Architecture: all Depends: ${misc:Depends} Replaces: airstrike (<< 0.99+1.0pre6a-2) Description: 2d dogfight game in the tradition of 'Biplanes' and 'BIP' Airstrike is a 2d dogfight game in the tradition of the Intellivision and Amiga games 'Biplanes' and 'BIP'. It features a robust physics engine and several other extensions of the original games. It is currently 0-2 player only, but will hopefully have network play and some more advanced computer controlled enemies in the future. The graphics have been created using the Povray raytracer, and should be easy to extend and modify. . This package contains the architecture-independent data files. debian/changelog0000644000000000000000000001002611537420662011045 0ustar airstrike (0.99+1.0pre6a-5) unstable; urgency=low * Team upload. [ Paul Wise ] * Add a watch file * Removed mention of network play from description (Closes: #594665) (LP: #602703) [ Ansgar Burchardt ] * Use source format 3.0 (quilt). * Add -lm to fix FTBFS with binutils-gold. Thanks to Ilya Barygin for the patch. (Closes: #553647) * Bump Standards-Version to 3.9.1 (no changes). * Add ${misc:Depends}; remove ${shlibs:Depends} for Arch: all package. -- Ansgar Burchardt Mon, 14 Mar 2011 15:09:53 +0100 airstrike (0.99+1.0pre6a-4) unstable; urgency=low [ Ansgar Burchardt ] * Remove deprecated Encoding key from .desktop file * debian/control: Change XS-Vcs-* to Vcs-* [ Arthur Loiret ] * debian/copyright: pention the current maintainer is the Debian Game team. [ Barry deFreese ] * Acknowledge NMUs. * Add myself to uploaders. * Move old source changes to patches. + fix_paths.diff - Fix paths in Makefile, config.h, and airstrike.c. + manpage.diff - Add .SH section to manpage. + airstrikerc.diff - Fix path to data. * fix-spawn-level.diff. (Closes: #470471). + Start planes at same height. * Fix copyright encoding to UTF-8. * Remove unneeded dirs file. * Install desktop and icon file in .install file. * Add call to dh_desktop. * Bump Standards Version to 3.7.3. + Menu policy transition. -- Barry deFreese Mon, 17 Mar 2008 21:05:57 -0400 airstrike (0.99+1.0pre6a-3.1) unstable; urgency=low * NMU with current maintainer's authorization. * Set Maintainer to the Debian Games Team. * Add a .desktop and an icon. (Closes: #359279, #432842) - debian/dirs: Update. - debian/rules: Install .desktop and icon. * debian/rules: generate airstrike-common in binary-arch target. (Closes: #304116) * debian/control: - Add quilt (>= 0.40) to Build-Depends. - Update debhelper version. - Update Standards-Version. - Add Homepage. * debian/patches/series: Add. - fix-red-baron-has-unlimited-bombs.diff: Add. (Closes: #340167) - fix-buffer-overflow.diff: Add. (Closes: #290423) - fix-unusable-on-amd64.diff: Add. (Closes: #406879) - fix-segfault-on-close.diff: Add. (Closes: #418192) * debian/rules: - Remove deprecated DH_COMPAT. - Update CFLAGS. - Remove unused configure target. - Fix debian-rules-ignore-make-clean-errors. - Remove useless comments. - Don't install menu file anymore since there is a .desktop now. * debian/copyright: - Add missing copyright. - Update FSF address. * debian/compat: Add. -- Arthur Loiret Tue, 09 Oct 2007 12:40:20 +0200 airstrike (0.99+1.0pre6a-3) unstable; urgency=low * Added "Replaces: airstrike (<< 0.99+1.0pre6a-2)" to airstrike-common to get rid of problems at upgrading to the splitted version (closes: #278110). * Upload sponsored by Norbert Tretkowski . -- Sven Velt Sat, 30 Oct 2004 17:23:12 +0200 airstrike (0.99+1.0pre6a-2) unstable; urgency=low * "Release Notes" and "About the game" fixed (closes: #231820). * Fixed manpage so whatis parse problem is gone (closes: #238021). * Moved arch independent data in separate airstrike-common package (closes: #233323). * Upload sponsored by Norbert Tretkowski . -- Sven Velt Tue, 28 Sep 2004 13:24:29 +0200 airstrike (0.99+1.0pre6a-1) unstable; urgency=low * New upstream (closes: #22807) should be completly licensed under the GPL (closes: #228085) and includes a man page (closes: #225658) * Useless files are removed from the package (closes: 225660) * Sound files removed due to unknown source and license. * Upload sponsored by Norbert Tretkowski . -- Sven Velt Wed, 03 Feb 2004 00:25:29 +0100 airstrike (0.99+1.0pre4-1) unstable; urgency=low * Initial Release (closes: #179453). * Upload sponsored by Norbert Tretkowski . -- Sven Velt Fri, 30 Oct 2003 11:31:09 +0200