New Ticket     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 38840

Show
Ignore:
Timestamp:
08/01/2008 02:22:58 (4 years ago)
Author:
ryandesign@…
Message:

SDLInvaders: whitespace changes only

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/dports/games/SDLInvaders/Portfile

    r38836 r38840  
    11# $Id$ 
    22 
    3 PortSystem 1.0 
     3PortSystem              1.0 
    44 
    5 name            SDLInvaders 
    6 version         0.8.0 
    7 categories      games 
    8 platforms       darwin 
    9 maintainers     nomaintainer 
    10 description     simple clone of the famous Space Invaders game. 
    11 long_description        ${description} 
     5name                    SDLInvaders 
     6version                 0.8.0 
     7categories              games 
     8platforms               darwin 
     9maintainers             nomaintainer 
     10 
     11description             simple clone of the famous Space Invaders game. 
     12long_description        ${description} 
    1213 
    1314# no better homepage available, sf.net only has outdated versions 
    14 homepage        http://sourceforge.net/projects/sdlinvaders 
    15 master_sites    http://csnlinux.genesee.edu/opsys/downloads/software-lesson/ 
    16 checksums       md5 f3fbca07eb05acfae23d2d554a0f1375 
     15homepage                http://sourceforge.net/projects/sdlinvaders 
     16master_sites            http://csnlinux.genesee.edu/opsys/downloads/software-lesson/ 
    1717 
    18 depends_lib     port:libsdl \ 
    19                 port:libsdl_image \ 
    20                 port:libsdl_mixer 
     18checksums               md5 f3fbca07eb05acfae23d2d554a0f1375 
    2119 
    22 configure.args  --disable-sdltest 
     20depends_lib             port:libsdl \ 
     21                        port:libsdl_image \ 
     22                        port:libsdl_mixer 
     23 
     24configure.args          --disable-sdltest 
    2325 
    2426# Can be removed once MacPorts 1.7.0 is released 
     
    2729} 
    2830 
    29 platform darwin { 
    30         post-destroot   { 
    31                 file attributes \ 
    32                         ${destroot}${prefix}/share/SDLInvaders/highscores \ 
    33                         -permissions +w 
    34                 xinstall -d ${destroot}${applications_dir}/${name}.app/Contents/MacOS 
    35                 ln -s ${prefix}/bin/${name} \ 
    36                         ${destroot}${applications_dir}/${name}.app/Contents/MacOS 
    37         } 
     31platform darwin { 
     32    post-destroot { 
     33        file attributes \ 
     34            ${destroot}${prefix}/share/SDLInvaders/highscores \ 
     35            -permissions +w 
     36        xinstall -d ${destroot}${applications_dir}/${name}.app/Contents/MacOS 
     37        ln -s ${prefix}/bin/${name} \ 
     38            ${destroot}${applications_dir}/${name}.app/Contents/MacOS 
     39    } 
    3840}