# This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dangerdeep # dangerdeep/files # dangerdeep/files/patch-SConstruct # dangerdeep/files/patch-src_coastmap.cpp # dangerdeep/pkg-descr # dangerdeep/Makefile # dangerdeep/pkg-plist # dangerdeep/distinfo # echo c - dangerdeep mkdir -p dangerdeep > /dev/null 2>&1 echo c - dangerdeep/files mkdir -p dangerdeep/files > /dev/null 2>&1 echo x - dangerdeep/files/patch-SConstruct sed 's/^X//' >dangerdeep/files/patch-SConstruct << 'END-of-dangerdeep/files/patch-SConstruct' X--- SConstruct.orig Sat Oct 29 00:23:44 2005 X+++ SConstruct Sat Oct 29 00:25:43 2005 X@@ -17,8 +17,8 @@ X # glbase = '/Microsoft Visual Studio/vc98/Include/gl/' X X ################ change base of dirs (unix OS) X-installbindir = '/usr/local/bin' X-installdatadir = '/usr/local/share/dangerdeep' X+installbindir = '%%PREFIX%%/bin' X+installdatadir = '%%PREFIX%%/share/%%PORTNAME%%' X if ARGUMENTS.get('installbindir', 0): X installbindir = ARGUMENTS.get('installbindir', 0) X if ARGUMENTS.get('installdatadir', 0): X@@ -67,11 +67,11 @@ X else: X print "Compiling for Unix/Posix/Linux Environment" X env = Environment(ENV = os.environ) X- env.Append(CPPPATH = ['/usr/include/SDL', '/usr/include/GL']) X- libpath = ['/usr/X11R6/lib'] X+ env.Append(CPPPATH = ['/usr/include','%%LOCALBASE%%/include/SDL11','%%LOCALBASE%%/include', '%%X11BASE%%/include/GL','%%X11BASE%%/include']) X+ libpath = ['%%X11BASE%%/lib','%%LOCALBASE%%/lib'] X gllibs = ['GL', 'GLU'] X- sdllibs = ['SDL', 'SDL_image'] X- ccflags = '-Wall `sdl-config --cflags`' X+ sdllibs = ['SDL-1.1', 'SDL_image','SDL_mixer'] X+ ccflags = '-Wall `sdl11-config --cflags`' X if (debug >= 3): X ccflags += ' -g -pg -O3' # profiling X elif (debug == 2): X@@ -92,20 +92,16 @@ X if (cvedit == 1): X env.Append(CPPDEFINES = ['CVEDIT']) X # check for mmx/sse support X- cpuinfof = open('/proc/cpuinfo', 'r') X+ cpuinfoc = 'sysctl hw.instruction_sse | cut -d " " -f2' X+ cpuinfof = os.popen(cpuinfoc) X cpuinfol = cpuinfof.readlines() X- mmxsupported = False X ssesupported = False X+ mmxsupported = False X for i in cpuinfol: X- if i.startswith('flags'): X- m = Split(i) X- for j in m: X- if j == 'mmx': X- mmxsupported = True X- elif j == 'sse': X- ssesupported = True X- break X- if (usex86sse == 0) and (mmxsupported and ssesupported): X+ if i == '1\n': X+ ssesupported = True X+ mmxsupported = True X+ if (usex86sse == 0) and (ssesupported and mmxsupported): X usex86sse = 1 X if usex86sse >= 1: X env.Append(CPPDEFINES = ['USE_SSE']) X@@ -115,8 +111,8 @@ X datadir = installdatadir X build_dir = 'linux' X # check for broken libGL, ignore undefined symbols then X- if (os.system('grep glBindProgram /usr/include/GL/gl*.h > /dev/null') == 0): X- gllibdirs = ['/usr/X11R6/lib/', '/usr/lib/', '/usr/local/lib/'] X+ if (os.system('grep glBindProgram %%X11BASE%%/include/GL/gl*.h > /dev/null') == 0): X+ gllibdirs = ['%%X11BASE%%/lib/', '/usr/lib/', '%%LOCALBASE%%/lib/'] X gllibdir = '' X for i in gllibdirs: X if (os.system('test -f '+i+'libGL.so') == 0): X@@ -178,7 +174,7 @@ X X ######################### source file lists X gfxlibs = ['oglext'] + gllibs + sdllibs X-alllibs = ['dftdmedia', 'tinyxml'] + gfxlibs + ['SDL_mixer', 'SDL_net', fftwlib] + extralibs X+alllibs = ['dftdmedia', 'tinyxml'] + gfxlibs + ['SDL_mixer', 'SDL_net', fftwlib ,'pthread'] + extralibs X X ################ helper functions X def all_entries_that_start_with_and_not(list, prefix, notprefix): END-of-dangerdeep/files/patch-SConstruct echo x - dangerdeep/files/patch-src_coastmap.cpp sed 's/^X//' >dangerdeep/files/patch-src_coastmap.cpp << 'END-of-dangerdeep/files/patch-src_coastmap.cpp' X--- src/coastmap.cpp Mon Jul 18 16:19:30 2005 X+++ src/coastmap.cpp Fri Oct 28 15:30:30 2005 X@@ -1316,7 +1316,7 @@ X maph = surf->h; X pixelw_real = realwidth/mapw; X realheight = maph*realwidth/mapw; X- pixels_per_seg = 1 << unsigned(ceil(log2(60000/pixelw_real))); X+ pixels_per_seg = 1 << unsigned(ceil(log(60000/pixelw_real))); X segsx = mapw/pixels_per_seg; X segsy = maph/pixels_per_seg; X segw_real = pixelw_real * pixels_per_seg; END-of-dangerdeep/files/patch-src_coastmap.cpp echo x - dangerdeep/pkg-descr sed 's/^X//' >dangerdeep/pkg-descr << 'END-of-dangerdeep/pkg-descr' XDanger from the deep (aka dangerdeep) is a Free / Open Source World War II german Xsubmarine simulation. It is currently available for Linux/i386, FreeBSD and Windows, Xbut since it uses SDL/OpenGL it should be portable to other operating systems or platforms. X XWWW: http://dangerdeep.sourceforge.net END-of-dangerdeep/pkg-descr echo x - dangerdeep/Makefile sed 's/^X//' >dangerdeep/Makefile << 'END-of-dangerdeep/Makefile' X# New ports collection makefile for: dangerdeep X# Date created: 2005-10-28 X# Whom: Jose Alonso Cardenas Marquez X# X# $FreeBSD$ X# X XPORTNAME= dangerdeep XPORTVERSION= 0.1.0 XCATEGORIES= games XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= dangerdeep X XMAINTAINER= acardenas@bsd.org.pe XCOMMENT= Open source world war II german submarine simulation X XBUILD_DEPENDS= scons:${PORTSDIR}/devel/scons XLIB_DEPENDS= fftw3.3:${PORTSDIR}/math/fftw3 X XUSE_GL= yes XUSE_SDL= sdl mixer image net XUSE_REINPLACE= yes X X.if !defined(NOPORTDOCS) XMAN6= dangerdeep.6 X.endif X Xpost-patch: X @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ X ${WRKSRC}/SConstruct X @${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g' \ X ${WRKSRC}/SConstruct X @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ X ${WRKSRC}/SConstruct X @${REINPLACE_CMD} -e 's|%%PORTNAME%%|${PORTNAME}|g' \ X ${WRKSRC}/SConstruct Xdo-build: X @cd ${WRKSRC} && scons X Xdo-install: X @cd ${WRKSRC} && scons install X Xpost-install: X.if !defined(NOPORTDOCS) X.for FILES in ${MAN6} X ${INSTALL_MAN} ${WRKSRC}/doc/man/${FILES} ${PREFIX}/man/man6 X.endfor X.endif X X.include END-of-dangerdeep/Makefile echo x - dangerdeep/pkg-plist sed 's/^X//' >dangerdeep/pkg-plist << 'END-of-dangerdeep/pkg-plist' Xbin/dangerdeep X%%DATADIR%%/fonts/font_arial.metric X%%DATADIR%%/fonts/font_arialbd.metric X%%DATADIR%%/fonts/font_times.metric X%%DATADIR%%/fonts/font_timesbd.metric X%%DATADIR%%/fonts/font_verdana.metric X%%DATADIR%%/fonts/font_verdanabd.metric X%%DATADIR%%/fonts/font_arial.png X%%DATADIR%%/fonts/font_arialbd.png X%%DATADIR%%/fonts/font_times.png X%%DATADIR%%/fonts/font_timesbd.png X%%DATADIR%%/fonts/font_verdana.png X%%DATADIR%%/fonts/font_verdanabd.png X%%DATADIR%%/fonts/font_olympiaworn.metric X%%DATADIR%%/fonts/font_olympiaworn.png X%%DATADIR%%/images/red_controlscreen_rev.0.99_b21_indicatorsMasked.png X%%DATADIR%%/images/damage_screen_backg.jpg X%%DATADIR%%/images/depthcharge.jpg X%%DATADIR%%/images/hedgehog.jpg X%%DATADIR%%/images/killed.jpg X%%DATADIR%%/images/krupp_docks.jpg X%%DATADIR%%/images/panelbackground.jpg X%%DATADIR%%/images/rescue_destroyer.jpg X%%DATADIR%%/images/scopewatcher.jpg X%%DATADIR%%/images/sub_damage_scheme_all.png X%%DATADIR%%/images/sunderland.jpg X%%DATADIR%%/images/sunken_destroyer.jpg X%%DATADIR%%/images/swordfish.jpg X%%DATADIR%%/images/threesubs.jpg X%%DATADIR%%/images/titlebackgr.jpg X%%DATADIR%%/images/dials_indicators.png X%%DATADIR%%/images/final_sw_compass.png X%%DATADIR%%/images/FUSEBOX_LIGHTS_ON_FINAL_V1.png X%%DATADIR%%/images/clock_hours_pointer.png X%%DATADIR%%/images/clock_minutes_pointer.png X%%DATADIR%%/images/periscope_compassbar.png X%%DATADIR%%/images/TDC_daylight_autoswitchoff.png X%%DATADIR%%/images/TDC_daylight_autoswitchon.png X%%DATADIR%%/images/TDC_daylight_clockbigptr.png X%%DATADIR%%/images/TDC_daylight_clocksmlptr.png X%%DATADIR%%/images/TDC_daylight_firebutton.png X%%DATADIR%%/images/TDC_daylight_firesolutionquality.png X%%DATADIR%%/images/TDC_daylight_spreadangle.png X%%DATADIR%%/images/TDC_daylight_targetcourse.png X%%DATADIR%%/images/TDC_daylight_targetposition.png X%%DATADIR%%/images/TDC_daylight_targetrange.png X%%DATADIR%%/images/TDC_daylight_targetspeed.png X%%DATADIR%%/images/TDC_daylight_torpspeed.png X%%DATADIR%%/images/TDC_daylight_tube1.png X%%DATADIR%%/images/TDC_daylight_tube2.png X%%DATADIR%%/images/TDC_daylight_tube3.png X%%DATADIR%%/images/TDC_daylight_tube4.png X%%DATADIR%%/images/TDC_daylight_tube5.png X%%DATADIR%%/images/TDC_daylight_tube6.png X%%DATADIR%%/images/TDC_daylight_gyro10.png X%%DATADIR%%/images/TDC_daylight_gyro360.png X%%DATADIR%%/images/TDC_daylight_switchtube1.png X%%DATADIR%%/images/TDC_daylight_switchtube2.png X%%DATADIR%%/images/TDC_daylight_switchtube3.png X%%DATADIR%%/images/TDC_daylight_switchtube4.png X%%DATADIR%%/images/TDC_daylight_switchtube5.png X%%DATADIR%%/images/TDC_daylight_switchtube6.png X%%DATADIR%%/images/TDC_redlight_autoswitchoff.png X%%DATADIR%%/images/TDC_redlight_autoswitchon.png X%%DATADIR%%/images/TDC_redlight_clockbigptr.png X%%DATADIR%%/images/TDC_redlight_clocksmlptr.png X%%DATADIR%%/images/TDC_redlight_firebutton.png X%%DATADIR%%/images/TDC_redlight_firesolutionquality.png X%%DATADIR%%/images/TDC_redlight_gyro10.png X%%DATADIR%%/images/TDC_redlight_gyro360.png X%%DATADIR%%/images/TDC_redlight_spreadangle.png X%%DATADIR%%/images/TDC_redlight_switchtube1.png X%%DATADIR%%/images/TDC_redlight_switchtube2.png X%%DATADIR%%/images/TDC_redlight_switchtube3.png X%%DATADIR%%/images/TDC_redlight_switchtube4.png X%%DATADIR%%/images/TDC_redlight_switchtube5.png X%%DATADIR%%/images/TDC_redlight_switchtube6.png X%%DATADIR%%/images/TDC_redlight_targetcourse.png X%%DATADIR%%/images/TDC_redlight_targetposition.png X%%DATADIR%%/images/TDC_redlight_targetrange.png X%%DATADIR%%/images/TDC_redlight_targetspeed.png X%%DATADIR%%/images/TDC_redlight_torpspeed.png X%%DATADIR%%/images/TDC_redlight_tube1.png X%%DATADIR%%/images/TDC_redlight_tube2.png X%%DATADIR%%/images/TDC_redlight_tube3.png X%%DATADIR%%/images/TDC_redlight_tube4.png X%%DATADIR%%/images/TDC_redlight_tube5.png X%%DATADIR%%/images/TDC_redlight_tube6.png X%%DATADIR%%/images/torpmanage_daylight_background.jpg X%%DATADIR%%/images/torpmanage_emptytube.png X%%DATADIR%%/images/torpmanage_redlight_background.jpg X%%DATADIR%%/images/torpmanage_torp1.png X%%DATADIR%%/images/torpmanage_torp1fat1.png X%%DATADIR%%/images/torpmanage_torp1lut1.png X%%DATADIR%%/images/torpmanage_torp1lut2.png X%%DATADIR%%/images/torpmanage_torp1practice.png X%%DATADIR%%/images/torpmanage_torp2.png X%%DATADIR%%/images/torpmanage_torp3.png X%%DATADIR%%/images/torpmanage_torp3afat2.png X%%DATADIR%%/images/torpmanage_torp3alut1.png X%%DATADIR%%/images/torpmanage_torp3alut2.png X%%DATADIR%%/images/torpmanage_torp3fat2.png X%%DATADIR%%/images/torpmanage_torp4.png X%%DATADIR%%/images/torpmanage_torp5.png X%%DATADIR%%/images/torpmanage_torp5b.png X%%DATADIR%%/images/torpmanage_torp6lut1.png X%%DATADIR%%/images/torpmanage_tubeload.png X%%DATADIR%%/images/torpmanage_tubeunload.png X%%DATADIR%%/images/torpmanage_submodelVIIc.png X%%DATADIR%%/images/torpsetup_daylight_speedhigh.png X%%DATADIR%%/images/torpsetup_daylight_speedmedium.png X%%DATADIR%%/images/torpsetup_daylight_speedslow.png X%%DATADIR%%/images/torpsetup_redlight_speedhigh.png X%%DATADIR%%/images/torpsetup_redlight_speedmedium.png X%%DATADIR%%/images/torpsetup_redlight_speedslow.png X%%DATADIR%%/images/torpsetup_daylight_preheatoff.png X%%DATADIR%%/images/torpsetup_daylight_preheaton.png X%%DATADIR%%/images/torpsetup_daylight_secondaryrange_long.png X%%DATADIR%%/images/torpsetup_daylight_secondaryrange_short.png X%%DATADIR%%/images/torpsetup_daylight_turnleft.png X%%DATADIR%%/images/torpsetup_daylight_turnright.png X%%DATADIR%%/images/torpsetup_redlight_preheatoff.png X%%DATADIR%%/images/torpsetup_redlight_preheaton.png X%%DATADIR%%/images/torpsetup_redlight_secondaryrange_long.png X%%DATADIR%%/images/torpsetup_redlight_secondaryrange_short.png X%%DATADIR%%/images/torpsetup_redlight_turnleft.png X%%DATADIR%%/images/torpsetup_redlight_turnright.png X%%DATADIR%%/images/torpsetup_daylight_primaryrangeknobs.png X%%DATADIR%%/images/torpsetup_daylight_primaryrangeptr.png X%%DATADIR%%/images/torpsetup_daylight_rundepthknobs.png X%%DATADIR%%/images/torpsetup_daylight_rundepthptr.png X%%DATADIR%%/images/torpsetup_daylight_secondaryrangeptr.png X%%DATADIR%%/images/torpsetup_daylight_turnangleknobs.png X%%DATADIR%%/images/TDC_daylight_base.jpg X%%DATADIR%%/images/torpsetup_redlight_primaryrangeknobs.png X%%DATADIR%%/images/torpsetup_redlight_primaryrangeptr.png X%%DATADIR%%/images/torpsetup_redlight_rundepthknobs.png X%%DATADIR%%/images/torpsetup_redlight_rundepthptr.png X%%DATADIR%%/images/torpsetup_redlight_secondaryrangeptr.png X%%DATADIR%%/images/torpsetup_redlight_turnangleknobs.png X%%DATADIR%%/images/TDC_daylight_base.png X%%DATADIR%%/images/TDC_redlight_base.jpg X%%DATADIR%%/images/TDC_redlight_base.png X%%DATADIR%%/images/controlscreen_daylight.jpg X%%DATADIR%%/images/controlscreen_redlight.jpg X%%DATADIR%%/images/periscope_daylight.jpg X%%DATADIR%%/images/periscope_daylight.png X%%DATADIR%%/images/periscope_redlight.jpg X%%DATADIR%%/images/periscope_redlight.png X%%DATADIR%%/images/popup_TDC_daylight.jpg X%%DATADIR%%/images/popup_TDC_daylight.png X%%DATADIR%%/images/popup_TDC_redlight.jpg X%%DATADIR%%/images/popup_TDC_redlight.png X%%DATADIR%%/images/popup_control_daylight.jpg X%%DATADIR%%/images/popup_control_daylight.png X%%DATADIR%%/images/popup_control_redlight.jpg X%%DATADIR%%/images/popup_control_redlight.png X%%DATADIR%%/images/torpsetup_daylight_background.jpg X%%DATADIR%%/images/torpsetup_daylight_background.png X%%DATADIR%%/images/torpsetup_redlight_background.jpg X%%DATADIR%%/images/torpsetup_redlight_background.png X%%DATADIR%%/images/torpsetup_daylight_primaryrunlength.png X%%DATADIR%%/images/torpsetup_daylight_turnangle.png X%%DATADIR%%/images/torpsetup_redlight_primaryrunlength.png X%%DATADIR%%/images/torpsetup_redlight_turnangle.png X%%DATADIR%%/images/torpsetup_daylight_tempscale.png X%%DATADIR%%/images/torpsetup_daylight_torpspeed.png X%%DATADIR%%/images/torpsetup_redlight_tempscale.png X%%DATADIR%%/images/torpsetup_redlight_torpspeed.png X%%DATADIR%%/maps/default.png X%%DATADIR%%/maps/default.xml X%%DATADIR%%/missions/testconvoy2.mis X%%DATADIR%%/missions/testship.mis X%%DATADIR%%/missions/largeconvoy.mis X%%DATADIR%%/missions/testconvoy.mis X%%DATADIR%%/missions/twoconvoys.mis X%%DATADIR%%/missions/attackbogue.mis X%%DATADIR%%/missions/battleships.mis X%%DATADIR%%/missions/airplanetest.mis X%%DATADIR%%/missions/attackbogue.xml X%%DATADIR%%/missions/duell.xml X%%DATADIR%%/missions/aegeanconvoy.xml X%%DATADIR%%/missions/battleships.xml X%%DATADIR%%/models/battleship_malaya.cs X%%DATADIR%%/models/carrier_bogue.cs X%%DATADIR%%/models/corvette.cs X%%DATADIR%%/models/destroyer_tribal.cs X%%DATADIR%%/models/large_freighter.cs X%%DATADIR%%/models/large_merchant.cs X%%DATADIR%%/models/medium_freighter.cs X%%DATADIR%%/models/medium_merchant.cs X%%DATADIR%%/models/medium_troopship.cs X%%DATADIR%%/models/small_merchant.cs X%%DATADIR%%/models/small_tanker.cs X%%DATADIR%%/models/submarine_IXc40.cs X%%DATADIR%%/models/submarine_VIIc.cs X%%DATADIR%%/models/submarine_XXI.cs X%%DATADIR%%/models/battleship_malaya.3ds X%%DATADIR%%/models/carrier_bogue.3ds X%%DATADIR%%/models/corvette.3ds X%%DATADIR%%/models/depth_charge.3ds X%%DATADIR%%/models/flugzeug3.3ds X%%DATADIR%%/models/gun_shell.3ds X%%DATADIR%%/models/large_freighter.3ds X%%DATADIR%%/models/large_merchant.3ds X%%DATADIR%%/models/medium_merchant.3ds X%%DATADIR%%/models/medium_troopship.3ds X%%DATADIR%%/models/skyhemisphere.3ds X%%DATADIR%%/models/small_merchant.3ds X%%DATADIR%%/models/submarine_IXc40.3ds X%%DATADIR%%/models/submarine_XXI.3ds X%%DATADIR%%/models/torpedo_g7.3ds X%%DATADIR%%/models/destroyer_oclass.cs X%%DATADIR%%/models/destroyer_oclass.3ds X%%DATADIR%%/models/conning_tower_typeVIIc.xml X%%DATADIR%%/models/uboat_VIIc.xml X%%DATADIR%%/models/medium_freighter.xml X%%DATADIR%%/models/small_tanker.3ds X%%DATADIR%%/sounds/liquidblast.ogg X%%DATADIR%%/sounds/machine1.ogg X%%DATADIR%%/sounds/deck gun firing.ogg X%%DATADIR%%/sounds/depth charge exploding.ogg X%%DATADIR%%/sounds/depth charge launching.ogg X%%DATADIR%%/sounds/ping.ogg X%%DATADIR%%/sounds/shell explosion.ogg X%%DATADIR%%/sounds/shell splash.ogg X%%DATADIR%%/sounds/big gun firing.ogg X%%DATADIR%%/sounds/medium gun firing.ogg X%%DATADIR%%/sounds/screws_fast.ogg X%%DATADIR%%/sounds/screws_normal.ogg X%%DATADIR%%/sounds/screws_slow.ogg X%%DATADIR%%/sounds/screws_veryfast.ogg X%%DATADIR%%/texts/languages.csv X%%DATADIR%%/texts/common.csv X%%DATADIR%%/textures/addleadangle.png X%%DATADIR%%/textures/atlanticmap.jpg X%%DATADIR%%/textures/background.png X%%DATADIR%%/textures/bogue.png X%%DATADIR%%/textures/cloudsbackgr.jpg X%%DATADIR%%/textures/corvette.png X%%DATADIR%%/textures/flugzeug.png X%%DATADIR%%/textures/lgfreigh.png X%%DATADIR%%/textures/lgmercha.png X%%DATADIR%%/textures/malaya.png X%%DATADIR%%/textures/mdfreigh.png X%%DATADIR%%/textures/mdmercha.png X%%DATADIR%%/textures/mdtroops.png X%%DATADIR%%/textures/menuframe.png X%%DATADIR%%/textures/metalbackgr.png X%%DATADIR%%/textures/notepadsheet.png X%%DATADIR%%/textures/panelbackgr.png X%%DATADIR%%/textures/psbackgr.png X%%DATADIR%%/textures/repaircritical.png X%%DATADIR%%/textures/repairheavy.png X%%DATADIR%%/textures/repairlight.png X%%DATADIR%%/textures/repairmedium.png X%%DATADIR%%/textures/repairwrecked.png X%%DATADIR%%/textures/smmercha.png X%%DATADIR%%/textures/smtanker.png X%%DATADIR%%/textures/sub21.png X%%DATADIR%%/textures/sub9c40.png X%%DATADIR%%/textures/themoon.png X%%DATADIR%%/textures/thesun.png X%%DATADIR%%/textures/torpedo_expl_water_splash.png X%%DATADIR%%/textures/torpedo_expl_water_splash_1.png X%%DATADIR%%/textures/torpedo_expl_water_splash_2.png X%%DATADIR%%/textures/uzo.png X%%DATADIR%%/textures/widgetelements_game.png X%%DATADIR%%/textures/widgetelements_grey.png X%%DATADIR%%/textures/widgetelements_menu.png X%%DATADIR%%/textures/widgeticons_game.png X%%DATADIR%%/textures/widgeticons_grey.png X%%DATADIR%%/textures/widgeticons_menu.png X%%DATADIR%%/textures/wooden_desk.png X%%DATADIR%%/textures/logbook_spiral.png X%%DATADIR%%/textures/glasses.png X%%DATADIR%%/textures/foamamounttrail.png X%%DATADIR%%/textures/terrain.jpg X%%DATADIR%%/textures/bridge_b.jpg X%%DATADIR%%/textures/bridge_c.jpg X%%DATADIR%%/textures/bridge_s.jpg X%%DATADIR%%/textures/cam1940b.jpg X%%DATADIR%%/textures/cam1940c.jpg X%%DATADIR%%/textures/cam1940s.jpg X%%DATADIR%%/textures/medrei_b.jpg X%%DATADIR%%/textures/medrei_f.jpg X%%DATADIR%%/textures/medrei_r.jpg X%%DATADIR%%/textures/tribal_color.jpg X%%DATADIR%%/textures/tribal_specular.jpg X%%DATADIR%%/textures/explosion01/exbg0001.png X%%DATADIR%%/textures/explosion01/exbg0002.png X%%DATADIR%%/textures/explosion01/exbg0003.png X%%DATADIR%%/textures/explosion01/exbg0004.png X%%DATADIR%%/textures/explosion01/exbg0005.png X%%DATADIR%%/textures/explosion01/exbg0006.png X%%DATADIR%%/textures/explosion01/exbg0007.png X%%DATADIR%%/textures/explosion01/exbg0008.png X%%DATADIR%%/textures/explosion01/exbg0009.png X%%DATADIR%%/textures/explosion01/exbg0010.png X%%DATADIR%%/textures/explosion01/exbg0011.png X%%DATADIR%%/textures/explosion01/exbg0012.png X%%DATADIR%%/textures/explosion01/exbg0013.png X%%DATADIR%%/textures/explosion01/exbg0014.png X%%DATADIR%%/textures/explosion01/exbg0015.png X%%DATADIR%%/textures/explosion02/exsm0001.png X%%DATADIR%%/textures/explosion02/exsm0002.png X%%DATADIR%%/textures/explosion02/exsm0003.png X%%DATADIR%%/textures/explosion02/exsm0004.png X%%DATADIR%%/textures/explosion02/exsm0005.png X%%DATADIR%%/textures/explosion02/exsm0006.png X%%DATADIR%%/textures/explosion02/exsm0007.png X%%DATADIR%%/textures/explosion02/exsm0008.png X%%DATADIR%%/textures/explosion02/exsm0009.png X%%DATADIR%%/textures/explosion02/exsm0010.png X%%DATADIR%%/textures/explosion02/exsm0011.png X%%DATADIR%%/textures/explosion02/exsm0012.png X%%DATADIR%%/textures/explosion02/exsm0013.png X%%DATADIR%%/textures/explosion02/exsm0014.png X%%DATADIR%%/textures/explosion02/exsm0015.png X%%DATADIR%%/airplanes/noname.xml X%%DATADIR%%/ships/freighter_large.xml X%%DATADIR%%/ships/merchant_large.xml X%%DATADIR%%/ships/merchant_medium.xml X%%DATADIR%%/ships/merchant_small.xml X%%DATADIR%%/ships/tanker_small.xml X%%DATADIR%%/ships/troopship_medium.xml X%%DATADIR%%/ships/carrier_bogue.xml X%%DATADIR%%/ships/battleship_malaya.xml X%%DATADIR%%/ships/corvette.xml X%%DATADIR%%/ships/destroyer_oclass.xml X%%DATADIR%%/ships/freighter_medium.xml X%%DATADIR%%/ships/destroyer_tribal.xml X%%DATADIR%%/submarines/submarine_IXc40.xml X%%DATADIR%%/submarines/submarine_XXI.xml X%%DATADIR%%/submarines/submarine_VIIc.xml X%%DATADIR%%/torpedoes/fido.xml X%%DATADIR%%/torpedoes/t1.xml X%%DATADIR%%/torpedoes/t11.xml X%%DATADIR%%/torpedoes/t1fat.xml X%%DATADIR%%/torpedoes/t1lut.xml X%%DATADIR%%/torpedoes/t2.xml X%%DATADIR%%/torpedoes/t3.xml X%%DATADIR%%/torpedoes/t3a.xml X%%DATADIR%%/torpedoes/t3afat.xml X%%DATADIR%%/torpedoes/t3alut.xml X%%DATADIR%%/torpedoes/t3fat.xml X%%DATADIR%%/torpedoes/t4.xml X%%DATADIR%%/torpedoes/t5.xml X%%DATADIR%%/torpedoes/t6lut.xml X%%DATADIR%%/shaders/modelrender_fp.shader X%%DATADIR%%/shaders/modelrender_vp.shader X%%DATADIR%%/shaders/water_fp.shader X%%DATADIR%%/shaders/water_vp.shader X@dirrm %%DATADIR%%/fonts X@dirrm %%DATADIR%%/images X@dirrm %%DATADIR%%/maps X@dirrm %%DATADIR%%/missions X@dirrm %%DATADIR%%/models X@dirrm %%DATADIR%%/sounds X@dirrm %%DATADIR%%/texts X@dirrm %%DATADIR%%/textures/explosion01 X@dirrm %%DATADIR%%/textures/explosion02 X@dirrm %%DATADIR%%/textures X@dirrm %%DATADIR%%/airplanes X@dirrm %%DATADIR%%/ships X@dirrm %%DATADIR%%/submarines X@dirrm %%DATADIR%%/torpedoes X@dirrm %%DATADIR%%/shaders X@dirrm %%DATADIR%% END-of-dangerdeep/pkg-plist echo x - dangerdeep/distinfo sed 's/^X//' >dangerdeep/distinfo << 'END-of-dangerdeep/distinfo' XMD5 (dangerdeep-0.1.0.tar.gz) = 7e95d871b929a5e322d0a6bde37e7151 XSIZE (dangerdeep-0.1.0.tar.gz) = 12429406 END-of-dangerdeep/distinfo exit