New Ticket     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 38834

Show
Ignore:
Timestamp:
08/01/2008 01:45:33 (4 years ago)
Author:
ryandesign@…
Message:

ltris: whitespace changes only

Files:
1 modified

Legend:

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

    r38833 r38834  
    11# $Id$ 
    22 
    3 PortSystem 1.0 
     3PortSystem              1.0 
    44 
    5 name                    ltris 
    6 version                 1.0.12 
    7 categories              games 
    8 platforms               darwin 
    9 maintainers             nomaintainer 
    10 use_parallel_build      yes 
    11 description             Tetris clone with multiplayer and AI support. 
    12 long_description        LTris as a tetris clone which means you have a bowl \ 
    13                                 with blocks falling down. By rotating and moving the \ 
    14                                 blocks you try to assemble whole lines which then \ 
    15                                 disappear. LTris has three modes for this: Classic is \ 
    16                                 the classical one where you play until the bowl \ 
    17                                 becomes filled, Figures resets the bowl contents to a \ 
    18                                 new figure for each level and adds suddenly appearing \ 
    19                                 tiles and lines later on and Multiplayer where up to \ 
    20                                 three players either controlled by human or CPU(!) \ 
    21                                 compete and send completed lines to each other. 
     5name                    ltris 
     6version                 1.0.12 
     7categories              games 
     8platforms               darwin 
     9maintainers             nomaintainer 
     10use_parallel_build      yes 
    2211 
    23 homepage                http://lgames.sourceforge.net/index.php?project=LTris 
    24 master_sites    sourceforge:lgames 
    25 checksums               md5     53b00c17a05c438602a52009e65ebde2 \ 
    26                                 sha1    bc0b389b520053f97c6415b4d430f55784073c1b \ 
    27                                 rmd160  017791be9d4e2dfc5a6b497e816b3482d22141c3 
     12description             Tetris clone with multiplayer and AI support. 
     13long_description        LTris as a tetris clone which means you have a bowl \ 
     14                        with blocks falling down. By rotating and moving the \ 
     15                        blocks you try to assemble whole lines which then \ 
     16                        disappear. LTris has three modes for this: Classic is \ 
     17                        the classical one where you play until the bowl \ 
     18                        becomes filled, Figures resets the bowl contents to a \ 
     19                        new figure for each level and adds suddenly appearing \ 
     20                        tiles and lines later on and Multiplayer where up to \ 
     21                        three players either controlled by human or CPU(!) \ 
     22                        compete and send completed lines to each other. 
    2823 
    29 depends_lib             port:libsdl port:libsdl_mixer \ 
    30                                 port:gettext \ 
    31                                 port:libiconv 
     24homepage                http://lgames.sourceforge.net/index.php?project=LTris 
     25master_sites            sourceforge:lgames 
     26 
     27checksums               md5     53b00c17a05c438602a52009e65ebde2 \ 
     28                        sha1    bc0b389b520053f97c6415b4d430f55784073c1b \ 
     29                        rmd160  017791be9d4e2dfc5a6b497e816b3482d22141c3 
     30 
     31depends_lib             port:libsdl \ 
     32                        port:libsdl_mixer \ 
     33                        port:gettext \ 
     34                        port:libiconv 
    3235 
    3336post-extract { 
    34         move ${worksrcpath}/src/sdl.h ${worksrcpath}/src/sdl_.h 
     37    move ${worksrcpath}/src/sdl.h ${worksrcpath}/src/sdl_.h 
    3538} 
    3639 
    37 patchfiles              patch-sdl_.h.diff \ 
    38                                 patch-libintl.diff \ 
    39                                 patch-install-mode.diff 
     40patchfiles              patch-sdl_.h.diff \ 
     41                        patch-libintl.diff \ 
     42                        patch-install-mode.diff 
    4043 
    41 configure.args  --with-highscore-path=${prefix}/var/lib/games/ \ 
    42                                 --disable-sdltest 
     44configure.args          --with-highscore-path=${prefix}/var/lib/games/ \ 
     45                        --disable-sdltest 
    4346 
    4447# Can be removed once MacPorts 1.7.0 is released 
     
    4851 
    4952platform darwin { 
    50         post-destroot { 
    51                 xinstall -d ${destroot}${applications_dir}/LTris.app/Contents/MacOS 
    52                 ln -s ${prefix}/bin/ltris \ 
    53                         ${destroot}${applications_dir}/LTris.app/Contents/MacOS/LTris 
    54         } 
     53    post-destroot { 
     54        xinstall -d ${destroot}${applications_dir}/LTris.app/Contents/MacOS 
     55        ln -s ${prefix}/bin/ltris \ 
     56            ${destroot}${applications_dir}/LTris.app/Contents/MacOS/LTris 
     57    } 
    5558}