Changeset 83161
- Timestamp:
- 08/26/11 11:55:45 (4 years ago)
- Location:
- trunk/dports
- Files:
-
- 12 edited
-
aqua/vineserver/Portfile (modified) (1 diff)
-
games/mystonline-cider/Portfile (modified) (1 diff)
-
games/mystonline-wine/Portfile (modified) (1 diff)
-
graphics/graphviz-oldgui/Portfile (modified) (2 diffs)
-
lang/php4/Portfile (modified) (2 diffs)
-
lang/php5-devel/Portfile (modified) (1 diff)
-
lang/php5/Portfile (modified) (1 diff)
-
lang/php52/Portfile (modified) (1 diff)
-
multimedia/quickascii/Portfile (modified) (1 diff)
-
sysutils/bbcolors/Portfile (modified) (1 diff)
-
sysutils/isightcapture/Portfile (modified) (1 diff)
-
www/tidy/Portfile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/aqua/vineserver/Portfile
r78672 r83161 46 46 } 47 47 foreach {language encoding} ${language_encodings} { 48 system "cd ${worksrcpath}/${language}.lproj &&cp -p Localizable.strings Localizable.strings.orig && ${prefix}/bin/iconv -f ${encoding} -t utf-16 Localizable.strings.orig > Localizable.strings"48 system -W ${worksrcpath}/${language}.lproj "cp -p Localizable.strings Localizable.strings.orig && ${prefix}/bin/iconv -f ${encoding} -t utf-16 Localizable.strings.orig > Localizable.strings" 49 49 } 50 50 } -
trunk/dports/games/mystonline-cider/Portfile
r71090 r83161 91 91 92 92 # Build the chown wrapper program 93 system "cd ${worksrcpath} &&${configure.cc} ${configure.cc_archflags} chown-data.c -o chown-data"93 system -W ${worksrcpath} "${configure.cc} ${configure.cc_archflags} chown-data.c -o chown-data" 94 94 } 95 95 -
trunk/dports/games/mystonline-wine/Portfile
r71090 r83161 78 78 79 79 # Build the chown wrapper program 80 system "cd ${worksrcpath} &&${configure.cc} ${configure.cc_archflags} chown-data.c -o chown-data"80 system -W ${worksrcpath} "${configure.cc} ${configure.cc_archflags} chown-data.c -o chown-data" 81 81 } 82 82 -
trunk/dports/graphics/graphviz-oldgui/Portfile
r71090 r83161 55 55 } 56 56 # Convert the strings from UTF-16 to UTF-8 so that we can patch them. 57 system "cd ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj &&${prefix}/bin/iconv -f utf-16 -t utf-8 InfoPlist.strings > InfoPlist.strings.utf8"57 system -W ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj "${prefix}/bin/iconv -f utf-16 -t utf-8 InfoPlist.strings > InfoPlist.strings.utf8" 58 58 } 59 59 … … 63 63 post-patch { 64 64 # Convert the strings back to UTF-16 which is what Mac OS X expects. 65 system "cd ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj &&${prefix}/bin/iconv -f utf-8 -t utf-16 InfoPlist.strings.utf8 > InfoPlist.strings"65 system -W ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj "${prefix}/bin/iconv -f utf-8 -t utf-16 InfoPlist.strings.utf8 > InfoPlist.strings" 66 66 delete ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj/InfoPlist.strings.utf8 67 67 } -
trunk/dports/lang/php4/Portfile
r75724 r83161 291 291 post-extract { 292 292 delete ${worksrcpath}/ext/pdf 293 system "cd ${workpath} &&/usr/bin/gnutar --no-same-owner -xzf ${distpath}/${pdflib_distfile}"293 system -W ${workpath} "/usr/bin/gnutar --no-same-owner -xzf ${distpath}/${pdflib_distfile}" 294 294 move ${workpath}/${pdflib_distname} ${worksrcpath}/ext/pdf 295 295 } … … 400 400 401 401 #nuke pear-stuff in ${destroot} 402 system "cd ${destroot} &&rm -rf .channels .depdb .depdblock .filemap .lock"402 system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock" 403 403 404 404 system "if \[ -f ${prefix}/lib/php4/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php4/.depdblock; fi" -
trunk/dports/lang/php5-devel/Portfile
r83025 r83161 168 168 post-destroot { 169 169 #nuke pear-stuff in ${destroot} 170 system "cd ${destroot} &&rm -rf .channels .depdb .depdblock .filemap .lock"170 system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock" 171 171 172 172 system "if \[ -f ${prefix}/lib/php/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php/.depdblock; fi" -
trunk/dports/lang/php5/Portfile
r83025 r83161 169 169 post-destroot { 170 170 #nuke pear-stuff in ${destroot} 171 system "cd ${destroot} &&rm -rf .channels .depdb .depdblock .filemap .lock"171 system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock" 172 172 173 173 system "if \[ -f ${prefix}/lib/php/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php/.depdblock; fi" -
trunk/dports/lang/php52/Portfile
r80042 r83161 334 334 post-destroot { 335 335 #nuke pear-stuff in ${destroot} 336 system "cd ${destroot} &&rm -rf .channels .depdb .depdblock .filemap .lock"336 system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock" 337 337 338 338 system "if \[ -f ${prefix}/lib/php/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php/.depdblock; fi" -
trunk/dports/multimedia/quickascii/Portfile
r80038 r83161 26 26 post-extract { 27 27 copy ${filespath}/Makefile ${worksrcpath} 28 system "cd ${worksrcpath} &&make clean"28 system -W ${worksrcpath} "make clean" 29 29 } 30 30 -
trunk/dports/sysutils/bbcolors/Portfile
r71090 r83161 72 72 73 73 build { 74 system "cd ${worksrcpath} &&${prefix}/bin/pod2man bbcolors > bbcolors.1"74 system -W ${worksrcpath} "${prefix}/bin/pod2man bbcolors > bbcolors.1" 75 75 } 76 76 -
trunk/dports/sysutils/isightcapture/Portfile
r71090 r83161 39 39 build { 40 40 if {![variant_isset universal]} { 41 system "cd ${worksrcpath} &&lipo -extract ${configure.build_arch} ${name} -output ${name}"41 system -W ${worksrcpath} "lipo -extract ${configure.build_arch} ${name} -output ${name}" 42 42 } 43 43 } -
trunk/dports/www/tidy/Portfile
r71101 r83161 28 28 29 29 pre-configure { 30 system "cd ${worksrcpath} &&/bin/sh ${worksrcpath}/build/gnuauto/setup.sh"30 system -W ${worksrcpath} "/bin/sh ${worksrcpath}/build/gnuauto/setup.sh" 31 31 } 32 32
Note: See TracChangeset
for help on using the changeset viewer.

