New Ticket     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 33954

Show
Ignore:
Timestamp:
02/08/2008 08:22:20 (4 years ago)
Author:
waqar@…
Message:

Fixed to appease the lint.

Location:
trunk/dports/lang/sbcl
Files:
1 modified
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/dports/lang/sbcl/Portfile

    r33927 r33954  
    22 
    33PortSystem 1.0 
     4 
    45name            sbcl 
    56version         1.0.14 
    67set bootversion 0.9.16 
     8revision        1 
    79categories      lang 
    810maintainers     gwright@macports.org waqar@macports.org 
     
    2123use_bzip2       yes 
    2224 
    23 platform powerpc {  
     25platform powerpc { 
    2426                   set bootversion 0.9.15 
    2527                   distfiles-append ${name}-${bootversion}-powerpc-darwin-binary${extract.suffix} 
     
    4042} 
    4143 
    42 patchfiles      use-mach-exception-handler.patch 
     44patchfiles      patch-use-mach-exception-handler.diff 
     45 
    4346                 
    4447distfiles       ${name}-${version}-source${extract.suffix} 
     
    4851 
    4952checksums       ${name}-${version}-source${extract.suffix}              \ 
    50                         md5 07fd7e865fb6052a82e1efc3f4b9899e \ 
    51                         sha1 e3fc5431fc65637857d23ef539ac8729530aaec7 \ 
     53                        md5 07fd7e865fb6052a82e1efc3f4b9899e            \ 
     54                        sha1 e3fc5431fc65637857d23ef539ac8729530aaec7   \ 
    5255                        rmd160 546663988c3dc01edd8afe276baf8b2db693e125 
    5356 
    54 post-patch      { reinplace "s|/usr/local/lib/${name}|${prefix}/lib/${name}|g" \ 
     57post-patch      { 
     58        reinplace "s|/usr/local/lib/${name}|${prefix}/lib/${name}|g" \ 
    5559                            ${worksrcpath}/src/runtime/runtime.c 
    56                   reinplace "s|/usr/local/lib/${name}|${prefix}/lib/${name}|g" \ 
     60        reinplace "s|/usr/local/lib/${name}|${prefix}/lib/${name}|g" \ 
    5761                            ${worksrcpath}/doc/sbcl.1 
    58                 } 
     62} 
    5963 
    6064use_configure   no 
    6165 
    6266 
    63 build           { system "ulimit -s 8192" 
    64                   system "unset LD_PREBIND && unset LD_PREBIND_ALLOW_OVERLAP && sh make.sh ${host_lisp}" 
    65                 } 
     67build           { 
     68        system "ulimit -s 8192" 
     69        system "unset LD_PREBIND && unset LD_PREBIND_ALLOW_OVERLAP && sh make.sh ${host_lisp}" 
     70} 
    6671 
    6772default_variants        +test 
    6873 
    69 variant test    { test.run      yes 
    70                   test.dir      ${worksrcpath}/tests 
    71                   test.cmd      sh 
    72                   test.target   run-tests.sh 
    73                 } 
     74variant test    { 
     75        test.run        yes 
     76        test.dir        ${worksrcpath}/tests 
     77        test.cmd        sh 
     78        test.target     run-tests.sh 
     79} 
    7480 
    7581destroot        { system "cd ${worksrcpath}; INSTALL_ROOT=${destroot}/${prefix} sh ${worksrcpath}/install.sh" 
    76                 } 
     82} 
    7783 
    7884variant threads { 
    79                 patchfiles-append base-target-features.patch 
     85        patchfiles-append patch-base-target-features.diff 
    8086} 
    8187