Ticket #13288: ports.patch

File ports.patch, 4.6 KB (added by me@…, 16 years ago)
  • dports/sources/devel/distract/Portfile

    #
    #
    # patch "dports/sources/devel/distract/Portfile"
    #  from [8d52714926831727e7161fbd963b990f070645cb]
    #    to [81488509490542a25ba4f208e06f3b5f4d0cd95b]
    # 
    # patch "dports/sources/devel/hs-chunks/Portfile"
    #  from [dc8cab44f4b234fe7549075b75045da2bab5a997]
    #    to [e5c128461c2a334d9a10f54a7b7b1ee1c23c28f3]
    # 
    # patch "dports/sources/devel/hs-hinstaller/Portfile"
    #  from [9d67e49556918bd8f6fdfdca54eb6e81ed3160fc]
    #    to [e9e833bc880b4954e29a712785bf7c745472d508]
    # 
    # patch "dports/sources/devel/hs-parsedate/Portfile"
    #  from [c36d5edc97a57d03e58a5d92433388722b846e23]
    #    to [cbee1371d479a7bbfc8c4627724c5b16d2c55fae]
    #
    ============================================================
    configure { 
    2222depends_run     port:monotone
    2323
    2424configure {
    25         cd ${worksrcpath}/haskell
    26         system "runghc Setup.hs configure"
     25        system "cd ${worksrcpath}/haskell && runghc Setup.hs configure"
    2726}
    2827
    2928build {
    30         cd ${worksrcpath}/haskell
    31         system "runghc Setup.hs build"
     29        system "cd ${worksrcpath}/haskell && runghc Setup.hs build"
    3230}
    3331
    3432destroot {
    35         cd ${worksrcpath}/haskell
    36         system "runghc Setup copy --copy-prefix=${destroot}${prefix}"
     33        system "cd ${worksrcpath}/haskell && runghc Setup copy --copy-prefix=${destroot}${prefix}"
    3734}
    3835
  • dports/sources/devel/hs-chunks/Portfile

    ============================================================
    configure { 
    2222depends_build   port:ghc
    2323
    2424configure {
    25         cd ${worksrcpath}
    26         system "runghc Setup.hs configure --prefix=${prefix}"
     25        system "cd ${worksrcpath} && runghc Setup.hs configure --prefix=${prefix}"
    2726}
    2827
    2928build {
    30         cd ${worksrcpath}
    31         system "runghc Setup.hs build"
     29        system "cd ${worksrcpath} && runghc Setup.hs build"
    3230}
    3331
    3432destroot {
    35         cd ${worksrcpath}
    36         system "runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
    37         system "runghc Setup.hs register   --gen-script"
    38         system "runghc Setup.hs unregister --gen-script"
     33        system "cd ${worksrcpath} && runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
     34        system "cd ${worksrcpath} && runghc Setup.hs register   --gen-script"
     35        system "cd ${worksrcpath} && runghc Setup.hs unregister --gen-script"
    3936
    4037        file mkdir ${destroot}${prefix}/libexec/${name}
    4138        file copy ${worksrcpath}/register.sh \
  • dports/sources/devel/hs-hinstaller/Portfile

    ============================================================
    configure { 
    2323depends_build   port:ghc
    2424
    2525configure {
    26         cd ${worksrcpath}
    27         system "runghc Setup.hs configure --prefix=${prefix}"
     26        system "cd ${worksrcpath} && runghc Setup.hs configure --prefix=${prefix}"
    2827}
    2928
    3029build {
    31         cd ${worksrcpath}
    32         system "runghc Setup.hs build"
     30        system "cd ${worksrcpath} && runghc Setup.hs build"
    3331}
    3432
    3533destroot {
    36         cd ${worksrcpath}
    37         system "runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
    38         system "runghc Setup.hs register   --gen-script"
    39         system "runghc Setup.hs unregister --gen-script"
     34        system "cd ${worksrcpath} && runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
     35        system "cd ${worksrcpath} && runghc Setup.hs register   --gen-script"
     36        system "cd ${worksrcpath} && runghc Setup.hs unregister --gen-script"
    4037
    4138        file mkdir ${destroot}${prefix}/libexec/${name}
    4239        file copy ${worksrcpath}/register.sh \
  • dports/sources/devel/hs-parsedate/Portfile

    ============================================================
    configure { 
    1818depends_build   port:ghc
    1919
    2020configure {
    21         cd ${worksrcpath}
    22         system "runghc Setup.hs configure --prefix=${prefix}"
     21        system "cd ${worksrcpath} && runghc Setup.hs configure --prefix=${prefix}"
    2322}
    2423
    2524build {
    26         cd ${worksrcpath}
    27         system "runghc Setup.hs build"
     25        system "cd ${worksrcpath} && runghc Setup.hs build"
    2826}
    2927
    3028destroot {
    31         cd ${worksrcpath}
    32         system "runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
    33         system "runghc Setup.hs register   --gen-script"
    34         system "runghc Setup.hs unregister --gen-script"
     29        system "cd ${worksrcpath} && runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
     30        system "cd ${worksrcpath} && runghc Setup.hs register   --gen-script"
     31        system "cd ${worksrcpath} && runghc Setup.hs unregister --gen-script"
    3532
    3633        file mkdir ${destroot}${prefix}/libexec/${name}
    3734        file copy ${worksrcpath}/register.sh \