[31032] trunk/dports/devel
source_changes at macosforge.org
source_changes at macosforge.org
Wed Nov 14 06:29:02 PST 2007
Revision: 31032
http://trac.macosforge.org/projects/macports/changeset/31032
Author: nox at macports.org
Date: 2007-11-14 06:29:00 -0800 (Wed, 14 Nov 2007)
Log Message:
-----------
distract, hs-chunks, hs-hinstaller, hs-parsedate: Removed {{{cd}}} calls (closes #13288).
Modified Paths:
--------------
trunk/dports/devel/distract/Portfile
trunk/dports/devel/hs-chunks/Portfile
trunk/dports/devel/hs-hinstaller/Portfile
trunk/dports/devel/hs-parsedate/Portfile
Modified: trunk/dports/devel/distract/Portfile
===================================================================
--- trunk/dports/devel/distract/Portfile 2007-11-14 12:55:06 UTC (rev 31031)
+++ trunk/dports/devel/distract/Portfile 2007-11-14 14:29:00 UTC (rev 31032)
@@ -22,17 +22,14 @@
depends_run port:monotone
configure {
- cd ${worksrcpath}/haskell
- system "runghc Setup.hs configure"
+ system "cd ${worksrcpath}/haskell && runghc Setup.hs configure"
}
build {
- cd ${worksrcpath}/haskell
- system "runghc Setup.hs build -v"
+ system "cd ${worksrcpath}/haskell && runghc Setup.hs build"
}
destroot {
- cd ${worksrcpath}/haskell
- system "runghc Setup copy --copy-prefix=${destroot}${prefix}"
+ system "cd ${worksrcpath}/haskell && runghc Setup copy --copy-prefix=${destroot}${prefix}"
}
Modified: trunk/dports/devel/hs-chunks/Portfile
===================================================================
--- trunk/dports/devel/hs-chunks/Portfile 2007-11-14 12:55:06 UTC (rev 31031)
+++ trunk/dports/devel/hs-chunks/Portfile 2007-11-14 14:29:00 UTC (rev 31032)
@@ -22,20 +22,17 @@
depends_build port:ghc
configure {
- cd ${worksrcpath}
- system "runghc Setup.hs configure --prefix=${prefix}"
+ system "cd ${worksrcpath} && runghc Setup.hs configure --prefix=${prefix}"
}
build {
- cd ${worksrcpath}
- system "runghc Setup.hs build"
+ system "cd ${worksrcpath} && runghc Setup.hs build"
}
destroot {
- cd ${worksrcpath}
- system "runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
- system "runghc Setup.hs register --gen-script"
- system "runghc Setup.hs unregister --gen-script"
+ system "cd ${worksrcpath} && runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
+ system "cd ${worksrcpath} && runghc Setup.hs register --gen-script"
+ system "cd ${worksrcpath} && runghc Setup.hs unregister --gen-script"
file mkdir ${destroot}${prefix}/libexec/${name}
file copy ${worksrcpath}/register.sh \
Modified: trunk/dports/devel/hs-hinstaller/Portfile
===================================================================
--- trunk/dports/devel/hs-hinstaller/Portfile 2007-11-14 12:55:06 UTC (rev 31031)
+++ trunk/dports/devel/hs-hinstaller/Portfile 2007-11-14 14:29:00 UTC (rev 31032)
@@ -23,20 +23,17 @@
depends_build port:ghc
configure {
- cd ${worksrcpath}
- system "runghc Setup.hs configure --prefix=${prefix}"
+ system "cd ${worksrcpath} && runghc Setup.hs configure --prefix=${prefix}"
}
build {
- cd ${worksrcpath}
- system "runghc Setup.hs build"
+ system "cd ${worksrcpath} && runghc Setup.hs build"
}
destroot {
- cd ${worksrcpath}
- system "runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
- system "runghc Setup.hs register --gen-script"
- system "runghc Setup.hs unregister --gen-script"
+ system "cd ${worksrcpath} && runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
+ system "cd ${worksrcpath} && runghc Setup.hs register --gen-script"
+ system "cd ${worksrcpath} && runghc Setup.hs unregister --gen-script"
file mkdir ${destroot}${prefix}/libexec/${name}
file copy ${worksrcpath}/register.sh \
Modified: trunk/dports/devel/hs-parsedate/Portfile
===================================================================
--- trunk/dports/devel/hs-parsedate/Portfile 2007-11-14 12:55:06 UTC (rev 31031)
+++ trunk/dports/devel/hs-parsedate/Portfile 2007-11-14 14:29:00 UTC (rev 31032)
@@ -18,20 +18,17 @@
depends_build port:ghc
configure {
- cd ${worksrcpath}
- system "runghc Setup.hs configure --prefix=${prefix}"
+ system "cd ${worksrcpath} && runghc Setup.hs configure --prefix=${prefix}"
}
build {
- cd ${worksrcpath}
- system "runghc Setup.hs build"
+ system "cd ${worksrcpath} && runghc Setup.hs build"
}
destroot {
- cd ${worksrcpath}
- system "runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
- system "runghc Setup.hs register --gen-script"
- system "runghc Setup.hs unregister --gen-script"
+ system "cd ${worksrcpath} && runghc Setup.hs copy --copy-prefix=${destroot}${prefix}"
+ system "cd ${worksrcpath} && runghc Setup.hs register --gen-script"
+ system "cd ${worksrcpath} && runghc Setup.hs unregister --gen-script"
file mkdir ${destroot}${prefix}/libexec/${name}
file copy ${worksrcpath}/register.sh \
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20071114/2f18daac/attachment.html
More information about the macports-changes
mailing list